Interface CfnApiPropsMixin.LambdaAuthorizerConfigProperty

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

@Stability(Stable) public static interface CfnApiPropsMixin.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.cfnpropertymixins.services.appsync.*;
 LambdaAuthorizerConfigProperty lambdaAuthorizerConfigProperty = LambdaAuthorizerConfigProperty.builder()
         .authorizerResultTtlInSeconds(123)
         .authorizerUri("authorizerUri")
         .identityValidationExpression("identityValidationExpression")
         .build();
 

See Also: