interface Oauth2DiscoveryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.Oauth2DiscoveryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_Oauth2DiscoveryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2DiscoveryProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2DiscoveryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » Oauth2DiscoveryProperty |
Discovery information 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const oauth2DiscoveryProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2DiscoveryProperty = {
authorizationServerMetadata: {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
responseTypes: ['responseTypes'],
tokenEndpoint: 'tokenEndpoint',
},
discoveryUrl: 'discoveryUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | Oauth2 | Authorization server metadata for the OAuth2 provider. |
| discovery | string | The discovery URL for the OAuth2 provider. |
authorizationServerMetadata?
Type:
IResolvable | Oauth2
(optional)
Authorization server metadata for the OAuth2 provider.
discoveryUrl?
Type:
string
(optional)
The discovery URL for the OAuth2 provider.

.NET
Go
Java
Python
TypeScript