interface ServerSideEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kendra.CfnIndexPropsMixin.ServerSideEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskendra#CfnIndexPropsMixin_ServerSideEncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kendra.CfnIndexPropsMixin.ServerSideEncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kendra.CfnIndexPropsMixin.ServerSideEncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kendra » CfnIndexPropsMixin » ServerSideEncryptionConfigurationProperty |
Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt data indexed by Amazon Kendra.
We suggest that you use a CMK from your account to help secure your index. Amazon Kendra doesn't support asymmetric CMKs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from '@aws-cdk/cfn-property-mixins';
const serverSideEncryptionConfigurationProperty: kendra.CfnIndexPropsMixin.ServerSideEncryptionConfigurationProperty = {
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | IKey | The identifier of the AWS KMS key . |
kmsKeyId?
Type:
string | IKey
(optional)
The identifier of the AWS KMS key .
Amazon Kendra doesn't support asymmetric keys.

.NET
Go
Java
Python
TypeScript