Interface CfnVerifiedAccessTrustProvider.OidcOptionsProperty

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

@Stability(Stable) public static interface CfnVerifiedAccessTrustProvider.OidcOptionsProperty extends software.amazon.jsii.JsiiSerializable
Describes the options for an OpenID Connect-compatible user-identity trust provider.

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.ec2.*;
 OidcOptionsProperty oidcOptionsProperty = OidcOptionsProperty.builder()
         .authorizationEndpoint("authorizationEndpoint")
         .clientId("clientId")
         .clientSecret("clientSecret")
         .issuer("issuer")
         .scope("scope")
         .tokenEndpoint("tokenEndpoint")
         .userInfoEndpoint("userInfoEndpoint")
         .build();
 

See Also: