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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.EBSStorageInfoProperty
static final class
An implementation forCfnCluster.EBSStorageInfoProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProvisionedThroughput
EBS volume provisioned throughput information. -
getVolumeSize
The size in GiB of the EBS volume for the data drive on each broker node. -
builder
-