interface KmsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnTokenVault.KmsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnTokenVault_KmsConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnTokenVault.KmsConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnTokenVault.KmsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnTokenVault » KmsConfigurationProperty |
Contains the KMS configuration for a resource.
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 kmsConfigurationProperty: bedrockagentcore.CfnTokenVault.KmsConfigurationProperty = {
keyType: 'keyType',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The type of KMS key (CustomerManagedKey or ServiceManagedKey). |
| kms | string | The Amazon Resource Name (ARN) of the KMS key. |
keyType
Type:
string
The type of KMS key (CustomerManagedKey or ServiceManagedKey).
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the KMS key.

.NET
Go
Java
Python
TypeScript