interface Oauth2ProviderConfigOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_Oauth2ProviderConfigOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » 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/cfn-property-mixins';
const oauth2ProviderConfigOutputProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.Oauth2ProviderConfigOutputProperty = {
clientAuthenticationMethod: 'clientAuthenticationMethod',
clientId: 'clientId',
oauthDiscovery: {
authorizationServerMetadata: {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
responseTypes: ['responseTypes'],
tokenEndpoint: 'tokenEndpoint',
},
discoveryUrl: 'discoveryUrl',
},
onBehalfOfTokenExchangeConfig: {
grantType: 'grantType',
tokenExchangeGrantTypeConfig: {
actorTokenContent: 'actorTokenContent',
actorTokenScopes: ['actorTokenScopes'],
},
},
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
vpcIdentifier: 'vpcIdentifier',
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
},
privateEndpointOverrides: [{
domain: 'domain',
privateEndpoint: {
managedVpcResource: {
endpointIpAddressType: 'endpointIpAddressType',
routingDomain: 'routingDomain',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
vpcIdentifier: 'vpcIdentifier',
},
selfManagedLatticeResource: {
resourceConfigurationIdentifier: 'resourceConfigurationIdentifier',
},
},
}],
privateKeyJwtConfig: {
additionalHeaderClaims: {
additionalHeaderClaimsKey: 'additionalHeaderClaims',
},
additionalPayloadClaims: {
additionalPayloadClaimsKey: 'additionalPayloadClaims',
},
privateKeySource: {
kmsKeySource: {
kmsKeyArn: 'kmsKeyArn',
},
},
signingAlgorithm: 'signingAlgorithm',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The client authentication method used when authenticating with the token endpoint. |
| client | string | |
| oauth | IResolvable | Oauth2 | Discovery information for an OAuth2 provider. |
| on | IResolvable | On | Configuration for on-behalf-of token exchange. |
| private | IResolvable | Private | The private endpoint configuration for connecting to private resources in your VPC. |
| private | IResolvable | (IResolvable | Private)[] | The list of private endpoint overrides for the OAuth2 provider. |
| private | IResolvable | Private | Configuration for private_key_jwt client authentication (RFC 7523). |
clientAuthenticationMethod?
Type:
string
(optional)
The client authentication method used when authenticating with the token endpoint.
clientId?
Type:
string
(optional)
oauthDiscovery?
Type:
IResolvable | Oauth2
(optional)
Discovery information for an OAuth2 provider.
onBehalfOfTokenExchangeConfig?
Type:
IResolvable | On
(optional)
Configuration for on-behalf-of token exchange.
privateEndpoint?
Type:
IResolvable | Private
(optional)
The private endpoint configuration for connecting to private resources in your VPC.
privateEndpointOverrides?
Type:
IResolvable | (IResolvable | Private)[]
(optional)
The list of private endpoint overrides for the OAuth2 provider.
Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations.
privateKeyJwtConfig?
Type:
IResolvable | Private
(optional)
Configuration for private_key_jwt client authentication (RFC 7523).

.NET
Go
Java
Python
TypeScript