interface PrivateKeyJwtConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeyJwtConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_PrivateKeyJwtConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeyJwtConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.PrivateKeyJwtConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » 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/cfn-property-mixins';
const privateKeyJwtConfigProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.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