interface KubeSchedulerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.KubeSchedulerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_KubeSchedulerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.KubeSchedulerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.KubeSchedulerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » 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 as eks } from '@aws-cdk/cfn-property-mixins';
const kubeSchedulerConfigProperty: eks.CfnClusterPropsMixin.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