Interface CfnNodegroup.NodeRepairConfigProperty

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

@Stability(Stable) public static interface CfnNodegroup.NodeRepairConfigProperty extends software.amazon.jsii.JsiiSerializable
The node auto repair configuration for the node group.

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.*;
 NodeRepairConfigProperty nodeRepairConfigProperty = NodeRepairConfigProperty.builder()
         .enabled(false)
         .maxParallelNodesRepairedCount(123)
         .maxParallelNodesRepairedPercentage(123)
         .maxUnhealthyNodeThresholdCount(123)
         .maxUnhealthyNodeThresholdPercentage(123)
         .nodeRepairConfigOverrides(List.of(NodeRepairConfigOverridesProperty.builder()
                 .minRepairWaitTimeMins(123)
                 .nodeMonitoringCondition("nodeMonitoringCondition")
                 .nodeUnhealthyReason("nodeUnhealthyReason")
                 .repairAction("repairAction")
                 .build()))
         .build();
 

See Also: