interface Oauth2AuthorizationServerMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.Oauth2AuthorizationServerMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_Oauth2AuthorizationServerMetadataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2AuthorizationServerMetadataProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2AuthorizationServerMetadataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » Oauth2AuthorizationServerMetadataProperty |
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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const oauth2AuthorizationServerMetadataProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2AuthorizationServerMetadataProperty = {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
responseTypes: ['responseTypes'],
tokenEndpoint: 'tokenEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The authorization endpoint URL. |
| issuer? | string | The issuer URL for the OAuth2 authorization server. |
| response | string[] | The supported response types. |
| token | string | The token endpoint URL. |
authorizationEndpoint?
Type:
string
(optional)
The authorization endpoint URL.
issuer?
Type:
string
(optional)
The issuer URL for the OAuth2 authorization server.
responseTypes?
Type:
string[]
(optional)
The supported response types.
tokenEndpoint?
Type:
string
(optional)
The token endpoint URL.

.NET
Go
Java
Python
TypeScript