interface KmsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnTokenVaultPropsMixin.KmsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnTokenVaultPropsMixin_KmsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnTokenVaultPropsMixin.KmsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnTokenVaultPropsMixin.KmsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnTokenVaultPropsMixin » 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/cfn-property-mixins';
const kmsConfigurationProperty: bedrockagentcore.CfnTokenVaultPropsMixin.KmsConfigurationProperty = {
keyType: 'keyType',
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
(optional)
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