Interface CfnApi.LambdaAuthorizerConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApi.LambdaAuthorizerConfigProperty.Jsii$Proxy
Enclosing class:
CfnApi

@Stability(Stable) public static interface CfnApi.LambdaAuthorizerConfigProperty extends software.amazon.jsii.JsiiSerializable
A LambdaAuthorizerConfig specifies how to authorize AWS AppSync API access when using the AWS_LAMBDA authorizer mode.

Be aware that an AWS AppSync API can have only one AWS Lambda authorizer configured at a time.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appsync.*;
 LambdaAuthorizerConfigProperty lambdaAuthorizerConfigProperty = LambdaAuthorizerConfigProperty.builder()
         .authorizerUri("authorizerUri")
         // the properties below are optional
         .authorizerResultTtlInSeconds(123)
         .identityValidationExpression("identityValidationExpression")
         .build();
 

See Also: