interface EBSStorageInfoProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MSK.CfnCluster.EBSStorageInfoProperty | 
|  Java | software.amazon.awscdk.services.msk.CfnCluster.EBSStorageInfoProperty | 
|  Python | aws_cdk.aws_msk.CfnCluster.EBSStorageInfoProperty | 
|  TypeScript | @aws-cdk/aws-msk»CfnCluster»EBSStorageInfoProperty | 
Contains information about the EBS storage volumes attached to the broker nodes.
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 eBSStorageInfoProperty: msk.CfnCluster.EBSStorageInfoProperty = {
  provisionedThroughput: {
    enabled: false,
    volumeThroughput: 123,
  },
  volumeSize: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| provisioned | IResolvable | Provisioned | EBS volume provisioned throughput information. | 
| volume | number | The size in GiB of the EBS volume for the data drive on each broker node. | 
provisionedThroughput?
Type:
IResolvable | Provisioned
(optional)
EBS volume provisioned throughput information.
volumeSize?
Type:
number
(optional)
The size in GiB of the EBS volume for the data drive on each broker node.
