interface EncryptionInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.EncryptionInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_EncryptionInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.EncryptionInfoProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.EncryptionInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » EncryptionInfoProperty |
Includes encryption-related information, such as the Amazon KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.
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 encryptionInfoProperty: msk_mixins.CfnClusterPropsMixin.EncryptionInfoProperty = {
encryptionAtRest: {
dataVolumeKmsKeyId: 'dataVolumeKmsKeyId',
},
encryptionInTransit: {
clientBroker: 'clientBroker',
inCluster: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | The data-volume encryption details. |
| encryption | IResolvable | Encryption | The details for encryption in transit. |
encryptionAtRest?
Type:
IResolvable | Encryption
(optional)
The data-volume encryption details.
encryptionInTransit?
Type:
IResolvable | Encryption
(optional)
The details for encryption in transit.

.NET
Go
Java
Python
TypeScript