| Copyright | (c) 2013-2016 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.APIGateway.GetAuthorizer
Description
Describe an existing Authorizer resource.
- getAuthorizer :: Text -> Text -> GetAuthorizer
- data GetAuthorizer
- gaaRestAPIId :: Lens' GetAuthorizer Text
- gaaAuthorizerId :: Lens' GetAuthorizer Text
- authorizer :: Authorizer
- data Authorizer
- aAuthorizerURI :: Lens' Authorizer (Maybe Text)
- aIdentityValidationExpression :: Lens' Authorizer (Maybe Text)
- aProviderARNs :: Lens' Authorizer [Text]
- aName :: Lens' Authorizer (Maybe Text)
- aId :: Lens' Authorizer (Maybe Text)
- aAuthorizerResultTtlInSeconds :: Lens' Authorizer (Maybe Int)
- aAuthType :: Lens' Authorizer (Maybe Text)
- aType :: Lens' Authorizer (Maybe AuthorizerType)
- aIdentitySource :: Lens' Authorizer (Maybe Text)
- aAuthorizerCredentials :: Lens' Authorizer (Maybe Text)
Creating a Request
Arguments
| :: Text | |
| -> Text | |
| -> GetAuthorizer |
Creates a value of GetAuthorizer with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
gaaRestAPIId- TheRestApiidentifier for theAuthorizerresource.gaaAuthorizerId- The identifier of theAuthorizerresource.
data GetAuthorizer #
Request to describe an existing Authorizer resource.
See: getAuthorizer smart constructor.
Instances
Request Lenses
gaaRestAPIId :: Lens' GetAuthorizer Text #
The RestApi identifier for the Authorizer resource.
gaaAuthorizerId :: Lens' GetAuthorizer Text #
The identifier of the Authorizer resource.
Destructuring the Response
Creates a value of Authorizer with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
aAuthorizerURI- [Required] Specifies the authorizer's Uniform Resource Identifier (URI). ForTOKENauthorizers, this must be a well-formed Lambda function URI, for example,arn:aws:apigateway:us-west-2:lambda:path2015-03-31functionsarn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}invocations. In general, the URI has this formarn:aws:apigateway:{region}:lambda:path/{service_api}, where{region}is the same as the region hosting the Lambda function,pathindicates that the remaining substring in the URI should be treated as the path to the resource, including the initial/. For Lambda functions, this is usually of the form 2015-03-31functions[FunctionARN]invocations.aIdentityValidationExpression- A validation expression for the incoming identity. ForTOKENauthorizers, this value should be a regular expression. The incoming token from the client is matched against this expression, and will proceed if the token matches. If the token doesn't match, the client receives a 401 Unauthorized response.aProviderARNs- A list of the provider ARNs of the authorizer. For anTOKENauthorizer, this is not defined. For authorizers of theCOGNITO_USER_POOLStype, each element corresponds to a user pool ARN of this format:arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}.aName- [Required] The name of the authorizer.aId- The identifier for the authorizer resource.aAuthorizerResultTtlInSeconds- The TTL in seconds of cached authorizer results. If greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.aAuthType- Optional customer-defined field, used in Swagger imports/exports. Has no functional impact.aType- [Required] The type of the authorizer. Currently, the valid type isTOKENfor a Lambda function orCOGNITO_USER_POOLSfor an Amazon Cognito user pool.aIdentitySource- [Required] The source of the identity in an incoming request. For aTOKENauthorizer, this value is a mapping expression with the same syntax as integration parameter mappings. The only valid source for tokens isheader, so the expression should match 'method.request.header.[headerName]'. The value of the header '[headerName]' will be interpreted as the incoming token. ForCOGNITO_USER_POOLSauthorizers, this property is used.aAuthorizerCredentials- Specifies the credentials required for the authorizer, if any. Two options are available. To specify an IAM role for Amazon API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.
data Authorizer #
Represents an authorization layer for methods. If enabled on a method, API Gateway will activate the authorizer when a client calls the method.
See: authorizer smart constructor.
Instances
Response Lenses
aAuthorizerURI :: Lens' Authorizer (Maybe Text) #
- Required
- Specifies the authorizer's Uniform Resource Identifier (URI). For
TOKENauthorizers, this must be a well-formed Lambda function URI, for example,arn:aws:apigateway:us-west-2:lambda:path2015-03-31functionsarn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}invocations. In general, the URI has this formarn:aws:apigateway:{region}:lambda:path/{service_api}, where{region}is the same as the region hosting the Lambda function,pathindicates that the remaining substring in the URI should be treated as the path to the resource, including the initial/. For Lambda functions, this is usually of the form 2015-03-31functions[FunctionARN]invocations.
aIdentityValidationExpression :: Lens' Authorizer (Maybe Text) #
A validation expression for the incoming identity. For TOKEN authorizers, this value should be a regular expression. The incoming token from the client is matched against this expression, and will proceed if the token matches. If the token doesn't match, the client receives a 401 Unauthorized response.
aProviderARNs :: Lens' Authorizer [Text] #
A list of the provider ARNs of the authorizer. For an TOKEN authorizer, this is not defined. For authorizers of the COGNITO_USER_POOLS type, each element corresponds to a user pool ARN of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id} .
aAuthorizerResultTtlInSeconds :: Lens' Authorizer (Maybe Int) #
The TTL in seconds of cached authorizer results. If greater than 0, API Gateway will cache authorizer responses. If this field is not set, the default value is 300. The maximum value is 3600, or 1 hour.
aAuthType :: Lens' Authorizer (Maybe Text) #
Optional customer-defined field, used in Swagger imports/exports. Has no functional impact.
aType :: Lens' Authorizer (Maybe AuthorizerType) #
- Required
- The type of the authorizer. Currently, the valid type is
TOKENfor a Lambda function orCOGNITO_USER_POOLSfor an Amazon Cognito user pool.
aIdentitySource :: Lens' Authorizer (Maybe Text) #
- Required
- The source of the identity in an incoming request. For a
TOKENauthorizer, this value is a mapping expression with the same syntax as integration parameter mappings. The only valid source for tokens isheader, so the expression should match 'method.request.header.[headerName]'. The value of the header '[headerName]' will be interpreted as the incoming token. ForCOGNITO_USER_POOLSauthorizers, this property is used.
aAuthorizerCredentials :: Lens' Authorizer (Maybe Text) #
Specifies the credentials required for the authorizer, if any. Two options are available. To specify an IAM role for Amazon API Gateway to assume, use the role's Amazon Resource Name (ARN). To use resource-based permissions on the Lambda function, specify null.