![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.applicationautoscaling.StepScalingAction.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.applicationautoscaling
import io.cloudshiftdev.awscdk.Duration
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.Number
import kotlin.String
import kotlin.Unit
import kotlin.jvm.JvmName
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* Define a step scaling action.
*
* This kind of scaling policy adjusts the target capacity in configurable
* steps. The size of the step is configurable based on the metric's distance
* to its alarm threshold.
*
* This Action must be used as the target of a CloudWatch alarm to take effect.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.*;
* import io.cloudshiftdev.awscdk.services.applicationautoscaling.*;
* ScalableTarget scalableTarget;
* StepScalingAction stepScalingAction = StepScalingAction.Builder.create(this,
* "MyStepScalingAction")
* .scalingTarget(scalableTarget)
* // the properties below are optional
* .adjustmentType(AdjustmentType.CHANGE_IN_CAPACITY)
* .cooldown(Duration.minutes(30))
* .metricAggregationType(MetricAggregationType.AVERAGE)
* .minAdjustmentMagnitude(123)
* .policyName("policyName")
* .build();
* ```
*/
public open class StepScalingAction(
cdkObject: software.amazon.awscdk.services.applicationautoscaling.StepScalingAction,
) : CloudshiftdevConstructsConstruct(cdkObject) {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: StepScalingActionProps,
) :
this(software.amazon.awscdk.services.applicationautoscaling.StepScalingAction(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(StepScalingActionProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: StepScalingActionProps.Builder.() -> Unit,
) : this(scope, id, StepScalingActionProps(props)
)
/**
* Add an adjusment interval to the ScalingAction.
*
* @param adjustment
*/
public open fun addAdjustment(adjustment: AdjustmentTier) {
unwrap(this).addAdjustment(adjustment.let(AdjustmentTier.Companion::unwrap))
}
/**
* Add an adjusment interval to the ScalingAction.
*
* @param adjustment
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("625f4be44fadba0d8875e450d0be9f4ba2684ac6527d0045bf440ed6d3312ef9")
public open fun addAdjustment(adjustment: AdjustmentTier.Builder.() -> Unit): Unit =
addAdjustment(AdjustmentTier(adjustment))
/**
* ARN of the scaling policy.
*/
public open fun scalingPolicyArn(): String = unwrap(this).getScalingPolicyArn()
/**
* A fluent builder for
* [io.cloudshiftdev.awscdk.services.applicationautoscaling.StepScalingAction].
*/
@CdkDslMarker
public interface Builder {
/**
* How the adjustment numbers are interpreted.
*
* Default: ChangeInCapacity
*
* @param adjustmentType How the adjustment numbers are interpreted.
*/
public fun adjustmentType(adjustmentType: AdjustmentType)
/**
* Grace period after scaling activity.
*
* For scale out policies, multiple scale outs during the cooldown period are
* squashed so that only the biggest scale out happens.
*
* For scale in policies, subsequent scale ins during the cooldown period are
* ignored.
*
* Default: No cooldown period
*
* [Documentation](https://docs.aws.amazon.com/autoscaling/application/APIReference/API_StepScalingPolicyConfiguration.html)
* @param cooldown Grace period after scaling activity.
*/
public fun cooldown(cooldown: Duration)
/**
* The aggregation type for the CloudWatch metrics.
*
* Default: Average
*
* @param metricAggregationType The aggregation type for the CloudWatch metrics.
*/
public fun metricAggregationType(metricAggregationType: MetricAggregationType)
/**
* Minimum absolute number to adjust capacity with as result of percentage scaling.
*
* Only when using AdjustmentType = PercentChangeInCapacity, this number controls
* the minimum absolute effect size.
*
* Default: No minimum scaling effect
*
* @param minAdjustmentMagnitude Minimum absolute number to adjust capacity with as result of
* percentage scaling.
*/
public fun minAdjustmentMagnitude(minAdjustmentMagnitude: Number)
/**
* A name for the scaling policy.
*
* Default: Automatically generated name
*
* @param policyName A name for the scaling policy.
*/
public fun policyName(policyName: String)
/**
* The scalable target.
*
* @param scalingTarget The scalable target.
*/
public fun scalingTarget(scalingTarget: IScalableTarget)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder:
software.amazon.awscdk.services.applicationautoscaling.StepScalingAction.Builder =
software.amazon.awscdk.services.applicationautoscaling.StepScalingAction.Builder.create(scope,
id)
/**
* How the adjustment numbers are interpreted.
*
* Default: ChangeInCapacity
*
* @param adjustmentType How the adjustment numbers are interpreted.
*/
override fun adjustmentType(adjustmentType: AdjustmentType) {
cdkBuilder.adjustmentType(adjustmentType.let(AdjustmentType.Companion::unwrap))
}
/**
* Grace period after scaling activity.
*
* For scale out policies, multiple scale outs during the cooldown period are
* squashed so that only the biggest scale out happens.
*
* For scale in policies, subsequent scale ins during the cooldown period are
* ignored.
*
* Default: No cooldown period
*
* [Documentation](https://docs.aws.amazon.com/autoscaling/application/APIReference/API_StepScalingPolicyConfiguration.html)
* @param cooldown Grace period after scaling activity.
*/
override fun cooldown(cooldown: Duration) {
cdkBuilder.cooldown(cooldown.let(Duration.Companion::unwrap))
}
/**
* The aggregation type for the CloudWatch metrics.
*
* Default: Average
*
* @param metricAggregationType The aggregation type for the CloudWatch metrics.
*/
override fun metricAggregationType(metricAggregationType: MetricAggregationType) {
cdkBuilder.metricAggregationType(metricAggregationType.let(MetricAggregationType.Companion::unwrap))
}
/**
* Minimum absolute number to adjust capacity with as result of percentage scaling.
*
* Only when using AdjustmentType = PercentChangeInCapacity, this number controls
* the minimum absolute effect size.
*
* Default: No minimum scaling effect
*
* @param minAdjustmentMagnitude Minimum absolute number to adjust capacity with as result of
* percentage scaling.
*/
override fun minAdjustmentMagnitude(minAdjustmentMagnitude: Number) {
cdkBuilder.minAdjustmentMagnitude(minAdjustmentMagnitude)
}
/**
* A name for the scaling policy.
*
* Default: Automatically generated name
*
* @param policyName A name for the scaling policy.
*/
override fun policyName(policyName: String) {
cdkBuilder.policyName(policyName)
}
/**
* The scalable target.
*
* @param scalingTarget The scalable target.
*/
override fun scalingTarget(scalingTarget: IScalableTarget) {
cdkBuilder.scalingTarget(scalingTarget.let(IScalableTarget.Companion::unwrap))
}
public fun build(): software.amazon.awscdk.services.applicationautoscaling.StepScalingAction =
cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): StepScalingAction {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return StepScalingAction(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.applicationautoscaling.StepScalingAction):
StepScalingAction = StepScalingAction(cdkObject)
internal fun unwrap(wrapped: StepScalingAction):
software.amazon.awscdk.services.applicationautoscaling.StepScalingAction = wrapped.cdkObject
as software.amazon.awscdk.services.applicationautoscaling.StepScalingAction
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy