interface PrivateKeyJwtConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.PrivateKeyJwtConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_PrivateKeyJwtConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeyJwtConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeyJwtConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » PrivateKeyJwtConfigProperty |
Configuration for private_key_jwt client authentication (RFC 7523).
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 privateKeyJwtConfigProperty: bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeyJwtConfigProperty = {
additionalHeaderClaims: {
additionalHeaderClaimsKey: 'additionalHeaderClaims',
},
additionalPayloadClaims: {
additionalPayloadClaimsKey: 'additionalPayloadClaims',
},
privateKeySource: {
kmsKeySource: {
kmsKeyArn: 'kmsKeyArn',
},
},
signingAlgorithm: 'signingAlgorithm',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | { [string]: string } | A map of additional claims to include in the JWT client assertion. |
| additional | IResolvable | { [string]: string } | A map of additional claims to include in the JWT client assertion. |
| private | IResolvable | Private | Contains the private key source configuration for a JWT client assertion. |
| signing | string | The algorithm used to sign the JWT client assertion. |
additionalHeaderClaims?
Type:
IResolvable | { [string]: string }
(optional)
A map of additional claims to include in the JWT client assertion.
additionalPayloadClaims?
Type:
IResolvable | { [string]: string }
(optional)
A map of additional claims to include in the JWT client assertion.
privateKeySource?
Type:
IResolvable | Private
(optional)
Contains the private key source configuration for a JWT client assertion.
signingAlgorithm?
Type:
string
(optional)
The algorithm used to sign the JWT client assertion.

.NET
Go
Java
Python
TypeScript