Interface CfnGraphQLApi.LambdaAuthorizerConfigProperty

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

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

See Also: