Interface CfnOAuth2CredentialProviderMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOAuth2CredentialProviderMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:32:09.516Z") @Stability(Stable) public interface CfnOAuth2CredentialProviderMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnOAuth2CredentialProviderPropsMixin.

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.*;
 CfnOAuth2CredentialProviderMixinProps cfnOAuth2CredentialProviderMixinProps = CfnOAuth2CredentialProviderMixinProps.builder()
         .credentialProviderVendor("credentialProviderVendor")
         .name("name")
         .oauth2ProviderConfigInput(Oauth2ProviderConfigInputProperty.builder()
                 .atlassianOauth2ProviderConfig(AtlassianOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .customOauth2ProviderConfig(CustomOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .oauthDiscovery(Oauth2DiscoveryProperty.builder()
                                 .authorizationServerMetadata(Oauth2AuthorizationServerMetadataProperty.builder()
                                         .authorizationEndpoint("authorizationEndpoint")
                                         .issuer("issuer")
                                         .responseTypes(List.of("responseTypes"))
                                         .tokenEndpoint("tokenEndpoint")
                                         .build())
                                 .discoveryUrl("discoveryUrl")
                                 .build())
                         .build())
                 .githubOauth2ProviderConfig(GithubOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .googleOauth2ProviderConfig(GoogleOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .includedOauth2ProviderConfig(IncludedOauth2ProviderConfigInputProperty.builder()
                         .authorizationEndpoint("authorizationEndpoint")
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .issuer("issuer")
                         .tokenEndpoint("tokenEndpoint")
                         .build())
                 .linkedinOauth2ProviderConfig(LinkedinOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .microsoftOauth2ProviderConfig(MicrosoftOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .tenantId("tenantId")
                         .build())
                 .salesforceOauth2ProviderConfig(SalesforceOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .slackOauth2ProviderConfig(SlackOauth2ProviderConfigInputProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: