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: