interface EbsStorageInfo
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.Alpha.EbsStorageInfo |
![]() | github.com/aws/aws-cdk-go/awscdkmskalpha/v2#EbsStorageInfo |
![]() | software.amazon.awscdk.services.msk.alpha.EbsStorageInfo |
![]() | aws_cdk.aws_msk_alpha.EbsStorageInfo |
![]() | @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
Name | Type | Description |
---|---|---|
encryption | IKey | The AWS KMS key for encrypting data at rest. |
volume | number | The 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.