Authorizer
Provides an API Gateway Authorizer.
Import
AWS API Gateway Authorizer can be imported using the REST-API-ID/AUTHORIZER-ID
, e.g.,
$ pulumi import aws:apigateway/authorizer:Authorizer authorizer 12345abcde/example
Properties
Authorizer's Uniform Resource Identifier (URI). This must be a well-formed Lambda function URI in the form of arn:aws:apigateway:{region}:lambda:path/{service_api}
, e.g., arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:012345678912:function:my-function/invocations
Source of the identity in an incoming request. Defaults to method.request.header.Authorization
. For REQUEST
type, this may be a comma-separated list of values, including headers, query string parameters and stage variables - e.g., "method.request.header.SomeHeaderName,method.request.querystring.SomeQueryStringName,stageVariables.SomeStageVariableName"