Class CfnCluster.StorageConfigProperty
Request to update the configuration of the storage capability of your EKS Auto Mode cluster.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.StorageConfigProperty : CfnCluster.IStorageConfigProperty
Syntax (vb)
Public Class CfnCluster.StorageConfigProperty Implements CfnCluster.IStorageConfigProperty
Remarks
For example, enable the capability. For more information, see EKS Auto Mode block storage capability in the Amazon EKS User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var storageConfigProperty = new StorageConfigProperty {
BlockStorage = new BlockStorageProperty {
Enabled = false
}
};
Synopsis
Constructors
StorageConfigProperty() | Request to update the configuration of the storage capability of your EKS Auto Mode cluster. |
Properties
BlockStorage | Request to configure EBS Block Storage settings for your EKS Auto Mode cluster. |
Constructors
StorageConfigProperty()
Request to update the configuration of the storage capability of your EKS Auto Mode cluster.
public StorageConfigProperty()
Remarks
For example, enable the capability. For more information, see EKS Auto Mode block storage capability in the Amazon EKS User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var storageConfigProperty = new StorageConfigProperty {
BlockStorage = new BlockStorageProperty {
Enabled = false
}
};
Properties
BlockStorage
Request to configure EBS Block Storage settings for your EKS Auto Mode cluster.
public object? BlockStorage { get; set; }