interface Oauth2ProviderConfigOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.Oauth2ProviderConfigOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_Oauth2ProviderConfigOutputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.Oauth2ProviderConfigOutputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.Oauth2ProviderConfigOutputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » Oauth2ProviderConfigOutputProperty |
Output configuration 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-lib';
const oauth2ProviderConfigOutputProperty: bedrockagentcore.CfnOAuth2CredentialProvider.Oauth2ProviderConfigOutputProperty = {
clientId: 'clientId',
oauthDiscovery: {
authorizationServerMetadata: {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
tokenEndpoint: 'tokenEndpoint',
// the properties below are optional
responseTypes: ['responseTypes'],
},
discoveryUrl: 'discoveryUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | |
| oauth | IResolvable | Oauth2 | Discovery information for an OAuth2 provider. |
clientId?
Type:
string
(optional)
oauthDiscovery?
Type:
IResolvable | Oauth2
(optional)
Discovery information for an OAuth2 provider.

.NET
Go
Java
Python
TypeScript