interface EncryptionInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.EncryptionInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_EncryptionInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.EncryptionInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.EncryptionInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » 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 { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const encryptionInfoProperty: msk.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