Interface CfnCluster.StorageInfoProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.StorageInfoProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.StorageInfoProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.msk.*;
 StorageInfoProperty storageInfoProperty = StorageInfoProperty.builder()
         .ebsStorageInfo(EBSStorageInfoProperty.builder()
                 .provisionedThroughput(ProvisionedThroughputProperty.builder()
                         .enabled(false)
                         .volumeThroughput(123)
                         .build())
                 .volumeSize(123)
                 .build())
         .build();
 

See Also: