@aws-cdk_aws-msk-alpha.EbsStorageInfo

interface EbsStorageInfo ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.MSK.Alpha.EbsStorageInfo
Gogithub.com/aws/aws-cdk-go/awscdkmskalpha/v2#EbsStorageInfo
Javasoftware.amazon.awscdk.services.msk.alpha.EbsStorageInfo
Pythonaws_cdk.aws_msk_alpha.EbsStorageInfo
TypeScript (source)@aws-cdk/aws-msk-alpha ยป EbsStorageInfo

EBS volume information.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as msk_alpha from '@aws-cdk/aws-msk-alpha';
import { aws_kms as kms } from 'aws-cdk-lib';

declare const key: kms.Key;
const ebsStorageInfo: msk_alpha.EbsStorageInfo = {
  encryptionKey: key,
  volumeSize: 123,
};

Properties

NameTypeDescription
encryptionKey?๐Ÿ”นIKeyThe AWS KMS key for encrypting data at rest.
volumeSize?๐Ÿ”นnumberThe size in GiB of the EBS volume for the data drive on each broker node.

encryptionKey?๐Ÿ”น

Type: IKey (optional, default: Uses AWS managed CMK (aws/kafka))

The AWS KMS key for encrypting data at rest.


volumeSize?๐Ÿ”น

Type: number (optional, default: 1000)

The size in GiB of the EBS volume for the data drive on each broker node.