@Stability(value=Stable)
public static interface CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty
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.dynamodb.*;
TargetTrackingScalingPolicyConfigurationProperty targetTrackingScalingPolicyConfigurationProperty = TargetTrackingScalingPolicyConfigurationProperty.builder()
.targetValue(123)
// the properties below are optional
.disableScaleIn(false)
.scaleInCooldown(123)
.scaleOutCooldown(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty.Builder
|
static class |
CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty.Jsii$Proxy
An implementation for
CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty.Builder |
builder() |
default Object |
getDisableScaleIn()
Indicates whether scale in by the target tracking scaling policy is disabled.
|
default Number |
getScaleInCooldown()
The amount of time, in seconds, after a scale-in activity completes before another scale-in activity can start.
|
default Number |
getScaleOutCooldown()
The amount of time, in seconds, after a scale-out activity completes before another scale-out activity can start.
|
Number |
getTargetValue()
Defines a target value for the scaling policy.
|
@Stability(value=Stable) @NotNull Number getTargetValue()
@Stability(value=Stable) @Nullable default Object getDisableScaleIn()
The default value is false .
@Stability(value=Stable) @Nullable default Number getScaleInCooldown()
@Stability(value=Stable) @Nullable default Number getScaleOutCooldown()
@Stability(value=Stable) static CfnGlobalTable.TargetTrackingScalingPolicyConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.