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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.KubeControllerManagerConfigPropertystatic final classAn implementation forCfnCluster.KubeControllerManagerConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHorizontalPodAutoscalerControllerConfig
The horizontal pod autoscaler controller configuration.Returns union: either
IResolvableorCfnCluster.HorizontalPodAutoscalerControllerConfigProperty- See Also:
-
getPodGcControllerConfig
The pod garbage collector controller configuration.Returns union: either
IResolvableorCfnCluster.PodGcControllerConfigProperty- See Also:
-
builder
-