Interface CfnOAuth2CredentialProvider.Oauth2AuthorizationServerMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOAuth2CredentialProvider.Oauth2AuthorizationServerMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnOAuth2CredentialProvider
@Stability(Stable)
public static interface CfnOAuth2CredentialProvider.Oauth2AuthorizationServerMetadataProperty
extends software.amazon.jsii.JsiiSerializable
Authorization server metadata for the 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.*;
Oauth2AuthorizationServerMetadataProperty oauth2AuthorizationServerMetadataProperty = Oauth2AuthorizationServerMetadataProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.issuer("issuer")
.tokenEndpoint("tokenEndpoint")
// the properties below are optional
.responseTypes(List.of("responseTypes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnOAuth2CredentialProvider.Oauth2AuthorizationServerMetadataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The authorization endpoint URL.The issuer URL for the OAuth2 authorization server.The supported response types.The token endpoint URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationEndpoint
The authorization endpoint URL.- See Also:
-
getIssuer
The issuer URL for the OAuth2 authorization server.- See Also:
-
getTokenEndpoint
The token endpoint URL.- See Also:
-
getResponseTypes
The supported response types.- See Also:
-
builder
@Stability(Stable) static CfnOAuth2CredentialProvider.Oauth2AuthorizationServerMetadataProperty.Builder builder()
-