Interface CfnCluster.KubeControllerManagerConfigProperty

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

@Stability(Stable) public static interface CfnCluster.KubeControllerManagerConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the Kubernetes controller manager on an Amazon EKS cluster.

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_v2.*;
 KubeControllerManagerConfigProperty kubeControllerManagerConfigProperty = KubeControllerManagerConfigProperty.builder()
         .horizontalPodAutoscalerControllerConfig(HorizontalPodAutoscalerControllerConfigProperty.builder()
                 .horizontalPodAutoscalerSyncPeriod("horizontalPodAutoscalerSyncPeriod")
                 .build())
         .podGcControllerConfig(PodGcControllerConfigProperty.builder()
                 .terminatedPodGcThreshold(123)
                 .build())
         .build();
 

See Also: