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