interface EbsStorageInfo
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.Alpha.EbsStorageInfo |
Go | github.com/aws/aws-cdk-go/awscdkmskalpha/v2#EbsStorageInfo |
Java | software.amazon.awscdk.services.msk.alpha.EbsStorageInfo |
Python | aws_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 interfaces_kms } from 'aws-cdk-lib/interfaces';
declare const keyRef: interfaces_kms.IKeyRef;
const ebsStorageInfo: msk_alpha.EbsStorageInfo = {
encryptionKey: keyRef,
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.

.NET
Go
Java
Python
TypeScript (