interface EncryptionInfoProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MSK.CfnCluster.EncryptionInfoProperty |
Java | software.amazon.awscdk.services.msk.CfnCluster.EncryptionInfoProperty |
Python | aws_cdk.aws_msk.CfnCluster.EncryptionInfoProperty |
TypeScript | @aws-cdk/aws-msk » CfnCluster » 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 * as msk from '@aws-cdk/aws-msk';
const encryptionInfoProperty: msk.CfnCluster.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.