interface EncryptionAtRestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.EncryptionAtRestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_EncryptionAtRestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.EncryptionAtRestProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.EncryptionAtRestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » EncryptionAtRestProperty |
The data-volume encryption details.
You can't update encryption at rest settings for existing clusters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const encryptionAtRestProperty: msk.CfnClusterPropsMixin.EncryptionAtRestProperty = {
dataVolumeKmsKeyId: 'dataVolumeKmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | IKey | The ARN of the Amazon KMS key for encrypting data at rest. |
dataVolumeKmsKeyId?
Type:
string | IKey
(optional)
The ARN of the Amazon KMS key for encrypting data at rest.
If you don't specify a KMS key, MSK creates one for you and uses it.

.NET
Go
Java
Python
TypeScript