interface PrivateKeySourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.PrivateKeySourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_PrivateKeySourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeySourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeySourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » PrivateKeySourceProperty |
Contains the private key source configuration for a JWT client assertion.
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 privateKeySourceProperty: bedrockagentcore.CfnOAuth2CredentialProvider.PrivateKeySourceProperty = {
kmsKeySource: {
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | IResolvable | Kms | Contains the KMS key configuration for a JWT client assertion. |
kmsKeySource?
Type:
IResolvable | Kms
(optional)
Contains the KMS key configuration for a JWT client assertion.

.NET
Go
Java
Python
TypeScript