Home
last modified time | relevance | path

Searched refs:authorizer_type (Results 1 – 4 of 4) sorted by relevance

/dports/devel/py-aws-sam-translator/aws-sam-translator-1.39.0/samtranslator/model/
H A Dapigatewayv2.py93 authorizer_type = self._get_auth_type()
96 if authorizer_type == "JWT":
99 if authorizer_type == "REQUEST":
108 authorizer_type = self._get_auth_type()
118 if self.jwt_configuration is not None and not authorizer_type == "JWT":
123 if self.id_source is not None and not authorizer_type == "JWT":
128 if self.function_arn is not None and not authorizer_type == "REQUEST":
138 if self.identity is not None and not authorizer_type == "REQUEST":
175 authorizer_type = self._get_auth_type()
177 if authorizer_type == "JWT":
[all …]
H A Dapigateway.py288 authorizer_type = self._get_type()
297 if authorizer_type == "COGNITO_USER_POOLS":
303 elif authorizer_type == "LAMBDA":
332 if authorizer_type == "COGNITO_USER_POOLS" or is_lambda_token_authorizer:
379 authorizer_type = self._get_type()
382 if authorizer_type == "LAMBDA" and payload_type == "REQUEST":
415 authorizer_type = self._get_type()
416 if authorizer_type == "AWS_IAM":
419 if authorizer_type == "COGNITO_USER_POOLS":
428 authorizer_type = self._get_type()
[all …]
/dports/devel/py-moto/moto-2.2.16/moto/apigateway/
H A Dresponses.py265 authorizer_type = self._get_param("type")
280 if authorizer_type and authorizer_type not in AUTHORIZER_TYPES:
288 ).format(authorizer_type=authorizer_type),
294 authorizer_type,
H A Dmodels.py384 def __init__(self, id, name, authorizer_type, **kwargs): argument
388 self["type"] = authorizer_type
928 authorizer_type, argument
940 authorizer_type=authorizer_type,
1241 def create_authorizer(self, restapi_id, name, authorizer_type, **kwargs): argument
1247 authorizer_type,