interface OnBehalfOfTokenExchangeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.OnBehalfOfTokenExchangeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_OnBehalfOfTokenExchangeConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.OnBehalfOfTokenExchangeConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.OnBehalfOfTokenExchangeConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » OnBehalfOfTokenExchangeConfigProperty |
Configuration for on-behalf-of token exchange.
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 onBehalfOfTokenExchangeConfigProperty: bedrockagentcore.CfnOAuth2CredentialProvider.OnBehalfOfTokenExchangeConfigProperty = {
grantType: 'grantType',
// the properties below are optional
tokenExchangeGrantTypeConfig: {
actorTokenContent: 'actorTokenContent',
// the properties below are optional
actorTokenScopes: ['actorTokenScopes'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| grant | string | The grant type for on-behalf-of token exchange. |
| token | IResolvable | Token | Configuration for RFC 8693 Token Exchange. |
grantType
Type:
string
The grant type for on-behalf-of token exchange.
tokenExchangeGrantTypeConfig?
Type:
IResolvable | Token
(optional)
Configuration for RFC 8693 Token Exchange.

.NET
Go
Java
Python
TypeScript