Interface CfnNodegroup.TaintProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNodegroup.TaintProperty.Jsii$Proxy
Enclosing class:
CfnNodegroup

@Stability(Stable) public static interface CfnNodegroup.TaintProperty extends software.amazon.jsii.JsiiSerializable
A property that allows a node to repel a set of pods.

For more information, see Node taints on managed node groups .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.legacy.*;
 TaintProperty taintProperty = TaintProperty.builder()
         .effect("effect")
         .key("key")
         .value("value")
         .build();