Interface CfnWorkforce.OidcConfigProperty

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

@Stability(Stable) public static interface CfnWorkforce.OidcConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration of an OIDC Identity Provider (IdP) private workforce.

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.sagemaker.*;
 OidcConfigProperty oidcConfigProperty = OidcConfigProperty.builder()
         .authorizationEndpoint("authorizationEndpoint")
         .clientId("clientId")
         .issuer("issuer")
         .jwksUri("jwksUri")
         .logoutEndpoint("logoutEndpoint")
         .tokenEndpoint("tokenEndpoint")
         .userInfoEndpoint("userInfoEndpoint")
         // the properties below are optional
         .authenticationRequestExtraParams(Map.of(
                 "authenticationRequestExtraParamsKey", "authenticationRequestExtraParams"))
         .clientSecret("clientSecret")
         .scope("scope")
         .build();
 

See Also: