Interface CfnOAuth2CredentialProvider.CustomOauth2ProviderConfigInputProperty

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

@Stability(Stable) public static interface CfnOAuth2CredentialProvider.CustomOauth2ProviderConfigInputProperty extends software.amazon.jsii.JsiiSerializable
Input configuration for a 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.*;
 CustomOauth2ProviderConfigInputProperty customOauth2ProviderConfigInputProperty = CustomOauth2ProviderConfigInputProperty.builder()
         .clientId("clientId")
         .clientSecret("clientSecret")
         .oauthDiscovery(Oauth2DiscoveryProperty.builder()
                 .authorizationServerMetadata(Oauth2AuthorizationServerMetadataProperty.builder()
                         .authorizationEndpoint("authorizationEndpoint")
                         .issuer("issuer")
                         .tokenEndpoint("tokenEndpoint")
                         // the properties below are optional
                         .responseTypes(List.of("responseTypes"))
                         .build())
                 .discoveryUrl("discoveryUrl")
                 .build())
         .build();
 

See Also: