Interface CfnClusterPropsMixin.StorageInfoProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.StorageInfoProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.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.cfnpropertymixins.services.msk.*;
StorageInfoProperty storageInfoProperty = StorageInfoProperty.builder()
.ebsStorageInfo(EBSStorageInfoProperty.builder()
.provisionedThroughput(ProvisionedThroughputProperty.builder()
.enabled(false)
.volumeThroughput(123)
.build())
.volumeSize(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.StorageInfoPropertystatic final classAn implementation forCfnClusterPropsMixin.StorageInfoProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEbsStorageInfo
EBS volume information.Returns union: either
IResolvableorCfnClusterPropsMixin.EBSStorageInfoProperty- See Also:
-
builder
-