Interface CfnCluster.EBSStorageInfoProperty

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

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

See Also: