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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOAuth2 authorization endpoint for your isolated OAuth2 application tenant.default Stringdefault Stringdefault StringToken issuer of your isolated OAuth2 application tenant.default StringOAuth2 token endpoint for your isolated OAuth2 application tenant.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationEndpoint
OAuth2 authorization endpoint for your isolated OAuth2 application tenant.- See Also:
-
getClientId
- See Also:
-
getClientSecret
- See Also:
-
getIssuer
Token issuer of your isolated OAuth2 application tenant.- See Also:
-
getTokenEndpoint
OAuth2 token endpoint for your isolated OAuth2 application tenant.- See Also:
-
builder
@Stability(Stable) static CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty.Builder builder()
-