@Stability(value=Stable)
public static interface EmrCreateCluster.SimpleScalingPolicyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.stepfunctions.tasks.*;
SimpleScalingPolicyConfigurationProperty simpleScalingPolicyConfigurationProperty = SimpleScalingPolicyConfigurationProperty.builder()
.scalingAdjustment(123)
// the properties below are optional
.adjustmentType(EmrCreateCluster.getScalingAdjustmentType().CHANGE_IN_CAPACITY)
.coolDown(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Builder
|
static class |
EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Jsii$Proxy
An implementation for
EmrCreateCluster.SimpleScalingPolicyConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Builder |
builder() |
default EmrCreateCluster.ScalingAdjustmentType |
getAdjustmentType()
The way in which EC2 instances are added (if ScalingAdjustment is a positive number) or terminated (if ScalingAdjustment is a negative number) each time the scaling activity is triggered.
|
default Number |
getCoolDown()
The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.
|
Number |
getScalingAdjustment()
The amount by which to scale in or scale out, based on the specified AdjustmentType.
|
@Stability(value=Stable) @NotNull Number getScalingAdjustment()
A positive value adds to the instance group's EC2 instance count while a negative number removes instances. If AdjustmentType is set to EXACT_CAPACITY, the number should only be a positive integer.
@Stability(value=Stable) @Nullable default EmrCreateCluster.ScalingAdjustmentType getAdjustmentType()
Default: - None
@Stability(value=Stable) @Nullable default Number getCoolDown()
Default: 0
@Stability(value=Stable) static EmrCreateCluster.SimpleScalingPolicyConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.