Interface CfnGraphQLApiPropsMixin.LambdaAuthorizerConfigProperty

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

@Stability(Stable) public static interface CfnGraphQLApiPropsMixin.LambdaAuthorizerConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for AWS Lambda function authorization.

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: