interface StorageInfoProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MSK.CfnCluster.StorageInfoProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_StorageInfoProperty | 
|  Java | software.amazon.awscdk.services.msk.CfnCluster.StorageInfoProperty | 
|  Python | aws_cdk.aws_msk.CfnCluster.StorageInfoProperty | 
|  TypeScript | aws-cdk-lib»aws_msk»CfnCluster»StorageInfoProperty | 
Contains information about storage volumes attached to Amazon MSK broker nodes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from 'aws-cdk-lib';
const storageInfoProperty: msk.CfnCluster.StorageInfoProperty = {
  ebsStorageInfo: {
    provisionedThroughput: {
      enabled: false,
      volumeThroughput: 123,
    },
    volumeSize: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| ebs | IResolvable | EBSStorage | EBS volume information. | 
ebsStorageInfo?
Type:
IResolvable | EBSStorage
(optional)
EBS volume information.
