Interface CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty.Jsii$Proxy
- Enclosing class:
CfnOAuth2CredentialProviderPropsMixin
@Stability(Stable)
public static interface CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty
extends software.amazon.jsii.JsiiSerializable
Output configuration for an 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.*;
Oauth2ProviderConfigOutputProperty oauth2ProviderConfigOutputProperty = Oauth2ProviderConfigOutputProperty.builder()
.clientId("clientId")
.oauthDiscovery(Oauth2DiscoveryProperty.builder()
.authorizationServerMetadata(Oauth2AuthorizationServerMetadataProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.issuer("issuer")
.responseTypes(List.of("responseTypes"))
.tokenEndpoint("tokenEndpoint")
.build())
.discoveryUrl("discoveryUrl")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientId
- See Also:
-
getOauthDiscovery
Discovery information for an OAuth2 provider.Returns union: either
IResolvableorCfnOAuth2CredentialProviderPropsMixin.Oauth2DiscoveryProperty- See Also:
-
builder
@Stability(Stable) static CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty.Builder builder()
-