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: