Show / Hide Table of Contents

Class CfnCluster.NodeResourcesFitConfigProperty

The NodeResourcesFit plugin configuration for the Kubernetes scheduler.

Inheritance
object
CfnCluster.NodeResourcesFitConfigProperty
Implements
CfnCluster.INodeResourcesFitConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-noderesourcesfitconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-noderesourcesfitconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-noderesourcesfitconfig.html#cfn-eks-cluster-noderesourcesfitconfig-scoringstrategy

Type union: either IResolvable or CfnCluster.IScoringStrategyProperty

Implements

CfnCluster.INodeResourcesFitConfigProperty
Back to top Generated by DocFX