Interface CfnCluster.StorageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.StorageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.StorageConfigProperty
extends software.amazon.jsii.JsiiSerializable
Request to update the configuration of the storage capability of your EKS Auto Mode cluster.
For example, enable the capability. For more information, see EKS Auto Mode block storage capability in the Amazon EKS User Guide .
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.eks.*;
StorageConfigProperty storageConfigProperty = StorageConfigProperty.builder()
.blockStorage(BlockStorageProperty.builder()
.enabled(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.StorageConfigPropertystatic final classAn implementation forCfnCluster.StorageConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlockStorage
Request to configure EBS Block Storage settings for your EKS Auto Mode cluster.Returns union: either
IResolvableorCfnCluster.BlockStorageProperty- See Also:
-
builder
-