Show / Hide Table of Contents

Class CfnCluster.StorageConfigProperty

Request to update the configuration of the storage capability of your EKS Auto Mode cluster.

Inheritance
object
CfnCluster.StorageConfigProperty
Implements
CfnCluster.IStorageConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-storageconfig.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-storageconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-storageconfig.html#cfn-eks-cluster-storageconfig-blockstorage

Implements

CfnCluster.IStorageConfigProperty
Back to top Generated by DocFX