public static interface CfnCluster.EBSStorageInfoProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnCluster.EBSStorageInfoProperty.Builder
A builder for
CfnCluster.EBSStorageInfoProperty |
static class |
CfnCluster.EBSStorageInfoProperty.Jsii$Proxy
An implementation for
CfnCluster.EBSStorageInfoProperty |
Modifier and Type | Method and Description |
---|---|
static CfnCluster.EBSStorageInfoProperty.Builder |
builder() |
default java.lang.Object |
getProvisionedThroughput()
Specifies whether provisioned throughput is turned on and the volume throughput target.
|
default java.lang.Number |
getVolumeSize()
The size in GiB of the EBS volume for the data drive on each broker node.
|
default java.lang.Object getProvisionedThroughput()
default java.lang.Number getVolumeSize()
static CfnCluster.EBSStorageInfoProperty.Builder builder()