Interface CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty

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

@Stability(Stable) public static interface CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty extends software.amazon.jsii.JsiiSerializable
Input configuration for a supported non-custom OAuth2 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.bedrockagentcore.*;
 IncludedOauth2ProviderConfigInputProperty includedOauth2ProviderConfigInputProperty = IncludedOauth2ProviderConfigInputProperty.builder()
         .clientId("clientId")
         // the properties below are optional
         .authorizationEndpoint("authorizationEndpoint")
         .clientSecret("clientSecret")
         .clientSecretConfig(SecretReferenceProperty.builder()
                 .jsonKey("jsonKey")
                 .secretId("secretId")
                 .build())
         .clientSecretSource("clientSecretSource")
         .issuer("issuer")
         .tokenEndpoint("tokenEndpoint")
         .build();
 

See Also: