Show / Hide Table of Contents

Class CfnCluster.EtcdPlacementProperty

The placement configuration for the etcd instances of your local Amazon EKS cluster on an AWS Outpost.

Inheritance
object
CfnCluster.EtcdPlacementProperty
Implements
CfnCluster.IEtcdPlacementProperty
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.EKSv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.EtcdPlacementProperty : CfnCluster.IEtcdPlacementProperty
Syntax (vb)
Public Class CfnCluster.EtcdPlacementProperty Implements CfnCluster.IEtcdPlacementProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-etcdplacement.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.EKSv2;

             var etcdPlacementProperty = new EtcdPlacementProperty {
                 SpreadLevel = "spreadLevel"
             };

Synopsis

Constructors

EtcdPlacementProperty()

The placement configuration for the etcd instances of your local Amazon EKS cluster on an AWS Outpost.

Properties

SpreadLevel

Optional parameter to specify the placement group spread level for etcd instances.

Constructors

EtcdPlacementProperty()

The placement configuration for the etcd instances of your local Amazon EKS cluster on an AWS Outpost.

public EtcdPlacementProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-etcdplacement.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.EKSv2;

             var etcdPlacementProperty = new EtcdPlacementProperty {
                 SpreadLevel = "spreadLevel"
             };

Properties

SpreadLevel

Optional parameter to specify the placement group spread level for etcd instances.

public string? SpreadLevel { get; set; }
Property Value

string

Remarks

If not provided, EKS will deploy etcd instances without a placement group.

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

Implements

CfnCluster.IEtcdPlacementProperty
Back to top Generated by DocFX