Interface IncludedOauth2TenantCredentialProviderProps

All Superinterfaces:
IncludedOauth2TenantEndpoints, software.amazon.jsii.JsiiSerializable, OAuth2ClientCredentials, OAuth2CredentialProviderBaseProps, OAuth2CredentialProviderFactoryBaseProps
All Known Implementing Classes:
IncludedOauth2TenantCredentialProviderProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-19T08:18:44.449Z") @Stability(Stable) public interface IncludedOauth2TenantCredentialProviderProps extends software.amazon.jsii.JsiiSerializable, OAuth2CredentialProviderFactoryBaseProps, IncludedOauth2TenantEndpoints
Props for IncludedOauth2ProviderConfig IdPs whose outbound documentation requires issuer, authorizationEndpoint, and/or tokenEndpoint (for example Okta, Auth0, Amazon Cognito, OneLogin, PingOne, CyberArk, FusionAuth).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.bedrockagentcore.*;
 SecretValue secretValue;
 IncludedOauth2TenantCredentialProviderProps includedOauth2TenantCredentialProviderProps = IncludedOauth2TenantCredentialProviderProps.builder()
         .clientId("clientId")
         .clientSecret(secretValue)
         // the properties below are optional
         .authorizationEndpoint("authorizationEndpoint")
         .issuer("issuer")
         .oAuth2CredentialProviderName("oAuth2CredentialProviderName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .tokenEndpoint("tokenEndpoint")
         .build();