interface EncryptionAtRestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.EncryptionAtRestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_EncryptionAtRestProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.EncryptionAtRestProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.EncryptionAtRestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const encryptionAtRestProperty: msk_mixins.CfnClusterPropsMixin.EncryptionAtRestProperty = {
dataVolumeKmsKeyId: 'dataVolumeKmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The ARN of the Amazon KMS key for encrypting data at rest. |
dataVolumeKmsKeyId?
Type:
string
(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