Show / Hide Table of Contents

Class CfnNodegroupPropsMixin.TaintProperty

A property that allows a node to repel a Pod .

Inheritance
object
CfnNodegroupPropsMixin.TaintProperty
Implements
CfnNodegroupPropsMixin.ITaintProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnNodegroupPropsMixin.TaintProperty : CfnNodegroupPropsMixin.ITaintProperty
Syntax (vb)
Public Class CfnNodegroupPropsMixin.TaintProperty Implements CfnNodegroupPropsMixin.ITaintProperty
Remarks

For more information, see Node taints on managed node groups in the Amazon EKS User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-taint.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.Mixins.Preview.AWS.EKS.Mixins;

             var taintProperty = new TaintProperty {
                 Effect = "effect",
                 Key = "key",
                 Value = "value"
             };

Synopsis

Constructors

TaintProperty()

A property that allows a node to repel a Pod .

Properties

Effect

The effect of the taint.

Key

The key of the taint.

Value

The value of the taint.

Constructors

TaintProperty()

A property that allows a node to repel a Pod .

public TaintProperty()
Remarks

For more information, see Node taints on managed node groups in the Amazon EKS User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-taint.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.Mixins.Preview.AWS.EKS.Mixins;

             var taintProperty = new TaintProperty {
                 Effect = "effect",
                 Key = "key",
                 Value = "value"
             };

Properties

Effect

The effect of the taint.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-taint.html#cfn-eks-nodegroup-taint-effect

Key

The key of the taint.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-taint.html#cfn-eks-nodegroup-taint-key

Value

The value of the taint.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-taint.html#cfn-eks-nodegroup-taint-value

Implements

CfnNodegroupPropsMixin.ITaintProperty
Back to top Generated by DocFX