Class CfnNodegroupPropsMixin.TaintProperty
A property that allows a node to repel a Pod .
Implements
Inherited Members
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 .
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 |
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 .
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
Remarks
Key
The key of the taint.
public string? Key { get; set; }
Property Value
Remarks
Value
The value of the taint.
public string? Value { get; set; }