Interface CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty

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

@Stability(Stable) public static interface CfnOAuth2CredentialProviderPropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
 IncludedOauth2ProviderConfigInputProperty includedOauth2ProviderConfigInputProperty = IncludedOauth2ProviderConfigInputProperty.builder()
         .authorizationEndpoint("authorizationEndpoint")
         .clientId("clientId")
         .clientSecret("clientSecret")
         .issuer("issuer")
         .tokenEndpoint("tokenEndpoint")
         .build();
 

See Also: