Interface CfnGraphQLApi.OpenIDConnectConfigProperty

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

@Stability(Stable) public static interface CfnGraphQLApi.OpenIDConnectConfigProperty extends software.amazon.jsii.JsiiSerializable
The OpenIDConnectConfig property type specifies the optional authorization configuration for using an OpenID Connect compliant service with your GraphQL endpoint for an AWS AppSync GraphQL API.

OpenIDConnectConfig is a property of the AWS::AppSync::GraphQLApi property type.

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.*;
 OpenIDConnectConfigProperty openIDConnectConfigProperty = OpenIDConnectConfigProperty.builder()
         .authTtl(123)
         .clientId("clientId")
         .iatTtl(123)
         .issuer("issuer")
         .build();
 

See Also: