Interface CfnClusterPropsMixin.KubeSchedulerConfigProperty

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

@Stability(Stable) public static interface CfnClusterPropsMixin.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.cfnpropertymixins.services.eks.*;
 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: