interface IncludedOauth2ProviderConfigInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_IncludedOauth2ProviderConfigInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » 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/cfn-property-mixins';
const includedOauth2ProviderConfigInputProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.IncludedOauth2ProviderConfigInputProperty = {
authorizationEndpoint: 'authorizationEndpoint',
clientId: 'clientId',
clientSecret: 'clientSecret',
issuer: 'issuer',
tokenEndpoint: 'tokenEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | OAuth2 authorization endpoint for your isolated OAuth2 application tenant. |
| client | string | |
| client | string | |
| issuer? | string | Token issuer of your isolated OAuth2 application tenant. |
| token | string | OAuth2 token endpoint for your isolated OAuth2 application tenant. |
authorizationEndpoint?
Type:
string
(optional)
OAuth2 authorization endpoint for your isolated OAuth2 application tenant.
clientId?
Type:
string
(optional)
clientSecret?
Type:
string
(optional)
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