interface KubeSchedulerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKSv2.CfnCluster.KubeSchedulerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseksv2#CfnCluster_KubeSchedulerConfigProperty |
Java | software.amazon.awscdk.services.eks_v2.CfnCluster.KubeSchedulerConfigProperty |
Python | aws_cdk.aws_eks_v2.CfnCluster.KubeSchedulerConfigProperty |
TypeScript | aws-cdk-lib » aws_eks_v2 » CfnCluster » KubeSchedulerConfigProperty |
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 { aws_eks_v2 as eks_v2 } from 'aws-cdk-lib';
const kubeSchedulerConfigProperty: eks_v2.CfnCluster.KubeSchedulerConfigProperty = {
nodeResourcesFit: {
scoringStrategy: {
resources: [{
name: 'name',
weight: 123,
}],
type: 'type',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| node | IResolvable | Node | The NodeResourcesFit plugin configuration for the Kubernetes scheduler. |
nodeResourcesFit?
Type:
IResolvable | Node
(optional)
The NodeResourcesFit plugin configuration for the Kubernetes scheduler.

.NET
Go
Java
Python
TypeScript