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

.NET
Go
Java
Python
TypeScript