@Stability(value=Stable)
public static interface CfnCluster.EBSStorageInfoProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getProvisionedThroughput()
Specifies whether provisioned throughput is turned on and the volume throughput target.
|
default Number |
getVolumeSize()
The size in GiB of the EBS volume for the data drive on each broker node.
|
@Stability(value=Stable) @Nullable default Object getProvisionedThroughput()
@Stability(value=Stable) @Nullable default Number getVolumeSize()
@Stability(value=Stable) static CfnCluster.EBSStorageInfoProperty.Builder builder()
Copyright © 2022. All rights reserved.