Interface CfnCluster.KubeSchedulerConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.KubeSchedulerConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.KubeSchedulerConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for the Kubernetes scheduler 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.*;
KubeSchedulerConfigProperty kubeSchedulerConfigProperty = KubeSchedulerConfigProperty.builder()
.nodeResourcesFit(NodeResourcesFitConfigProperty.builder()
.scoringStrategy(ScoringStrategyProperty.builder()
.resources(List.of(ResourceWeightProperty.builder()
.name("name")
.weight(123)
.build()))
.type("type")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.KubeSchedulerConfigPropertystatic final classAn implementation forCfnCluster.KubeSchedulerConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNodeResourcesFit
The NodeResourcesFit plugin configuration for the Kubernetes scheduler.Returns union: either
IResolvableorCfnCluster.NodeResourcesFitConfigProperty- See Also:
-
builder
-