Class CfnClusterPropsMixin.ScalingConstraintsProperty
ScalingConstraints is a subproperty of the AutoScalingPolicy property type.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnClusterPropsMixin.ScalingConstraintsProperty : CfnClusterPropsMixin.IScalingConstraintsProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.ScalingConstraintsProperty Implements CfnClusterPropsMixin.IScalingConstraintsProperty
Remarks
ScalingConstraints defines the upper and lower EC2 instance limits for an automatic scaling policy. Automatic scaling activities triggered by automatic scaling rules will not cause an instance group to grow above or shrink below these limits.
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.Mixins.Preview.AWS.EMR.Mixins;
var scalingConstraintsProperty = new ScalingConstraintsProperty {
MaxCapacity = 123,
MinCapacity = 123
};
Synopsis
Constructors
| ScalingConstraintsProperty() |
|
Properties
| MaxCapacity | The upper boundary of Amazon EC2 instances in an instance group beyond which scaling activities are not allowed to grow. |
| MinCapacity | The lower boundary of Amazon EC2 instances in an instance group below which scaling activities are not allowed to shrink. |
Constructors
ScalingConstraintsProperty()
ScalingConstraints is a subproperty of the AutoScalingPolicy property type.
public ScalingConstraintsProperty()
Remarks
ScalingConstraints defines the upper and lower EC2 instance limits for an automatic scaling policy. Automatic scaling activities triggered by automatic scaling rules will not cause an instance group to grow above or shrink below these limits.
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.Mixins.Preview.AWS.EMR.Mixins;
var scalingConstraintsProperty = new ScalingConstraintsProperty {
MaxCapacity = 123,
MinCapacity = 123
};
Properties
MaxCapacity
The upper boundary of Amazon EC2 instances in an instance group beyond which scaling activities are not allowed to grow.
public double? MaxCapacity { get; set; }
Property Value
Remarks
Scale-out activities will not add instances beyond this boundary.
MinCapacity
The lower boundary of Amazon EC2 instances in an instance group below which scaling activities are not allowed to shrink.
public double? MinCapacity { get; set; }
Property Value
Remarks
Scale-in activities will not terminate instances below this boundary.