Interface CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnComputeNodeGroupPropsMixin
@Stability(Stable)
public static interface CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the boundaries of the compute node group auto scaling.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.pcs.*;
ScalingConfigurationProperty scalingConfigurationProperty = ScalingConfigurationProperty.builder()
.maxInstanceCount(123)
.minInstanceCount(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxInstanceCount
The upper bound of the number of instances allowed in the compute fleet.- See Also:
-
getMinInstanceCount
The lower bound of the number of instances allowed in the compute fleet.- See Also:
-
builder
@Stability(Stable) static CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty.Builder builder()
-