Interface CfnNodegroup.NodeRepairConfigOverridesProperty

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

@Stability(Stable) public static interface CfnNodegroup.NodeRepairConfigOverridesProperty extends software.amazon.jsii.JsiiSerializable
Specify granular overrides for specific repair actions.

These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.

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.*;
 NodeRepairConfigOverridesProperty nodeRepairConfigOverridesProperty = NodeRepairConfigOverridesProperty.builder()
         .minRepairWaitTimeMins(123)
         .nodeMonitoringCondition("nodeMonitoringCondition")
         .nodeUnhealthyReason("nodeUnhealthyReason")
         .repairAction("repairAction")
         .build();
 

See Also: