Class CfnCluster.NodeResourcesFitConfigProperty
The NodeResourcesFit plugin configuration for the Kubernetes scheduler.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EKS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.NodeResourcesFitConfigProperty : CfnCluster.INodeResourcesFitConfigProperty
Syntax (vb)
Public Class CfnCluster.NodeResourcesFitConfigProperty Implements CfnCluster.INodeResourcesFitConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var nodeResourcesFitConfigProperty = new NodeResourcesFitConfigProperty {
ScoringStrategy = new ScoringStrategyProperty {
Resources = new [] { new ResourceWeightProperty {
Name = "name",
Weight = 123
} },
Type = "type"
}
};
Synopsis
Constructors
| NodeResourcesFitConfigProperty() | The NodeResourcesFit plugin configuration for the Kubernetes scheduler. |
Properties
| ScoringStrategy | The scoring strategy configuration for the NodeResourcesFit scheduler plugin. |
Constructors
NodeResourcesFitConfigProperty()
The NodeResourcesFit plugin configuration for the Kubernetes scheduler.
public NodeResourcesFitConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EKS;
var nodeResourcesFitConfigProperty = new NodeResourcesFitConfigProperty {
ScoringStrategy = new ScoringStrategyProperty {
Resources = new [] { new ResourceWeightProperty {
Name = "name",
Weight = 123
} },
Type = "type"
}
};
Properties
ScoringStrategy
The scoring strategy configuration for the NodeResourcesFit scheduler plugin.
public object? ScoringStrategy { get; set; }