interface IncludedOauth2ProviderConfigInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_IncludedOauth2ProviderConfigInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » IncludedOauth2ProviderConfigInputProperty |
Input configuration for a supported non-custom 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 includedOauth2ProviderConfigInputProperty: bedrockagentcore.CfnOAuth2CredentialProvider.IncludedOauth2ProviderConfigInputProperty = {
clientId: 'clientId',
clientSecret: 'clientSecret',
// the properties below are optional
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
tokenEndpoint: 'tokenEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | |
| client | string | |
| authorization | string | OAuth2 authorization endpoint for your isolated OAuth2 application tenant. |
| issuer? | string | Token issuer of your isolated OAuth2 application tenant. |
| token | string | OAuth2 token endpoint for your isolated OAuth2 application tenant. |
clientId
Type:
string
clientSecret
Type:
string
authorizationEndpoint?
Type:
string
(optional)
OAuth2 authorization endpoint for your isolated OAuth2 application tenant.
issuer?
Type:
string
(optional)
Token issuer of your isolated OAuth2 application tenant.
tokenEndpoint?
Type:
string
(optional)
OAuth2 token endpoint for your isolated OAuth2 application tenant.

.NET
Go
Java
Python
TypeScript