Interface CfnApi.OpenIDConnectConfigProperty

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

@Stability(Stable) public static interface CfnApi.OpenIDConnectConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes an OpenID Connect (OIDC) configuration.

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()
         .issuer("issuer")
         // the properties below are optional
         .authTtl(123)
         .clientId("clientId")
         .iatTtl(123)
         .build();
 

See Also: