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

.NET
Go
Java
Python
TypeScript