@Stability(value=Stable)
public static interface CfnGlobalTable.WriteProvisionedThroughputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
WriteProvisionedThroughputSettingsProperty writeProvisionedThroughputSettingsProperty = WriteProvisionedThroughputSettingsProperty.builder()
.writeCapacityAutoScalingSettings(CapacityAutoScalingSettingsProperty.builder()
.maxCapacity(123)
.minCapacity(123)
.targetTrackingScalingPolicyConfiguration(TargetTrackingScalingPolicyConfigurationProperty.builder()
.targetValue(123)
// the properties below are optional
.disableScaleIn(false)
.scaleInCooldown(123)
.scaleOutCooldown(123)
.build())
// the properties below are optional
.seedCapacity(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.Builder
|
static class |
CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.Jsii$Proxy
An implementation for
CfnGlobalTable.WriteProvisionedThroughputSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.Builder |
builder() |
default Object |
getWriteCapacityAutoScalingSettings()
`CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.WriteCapacityAutoScalingSettings`.
|
@Stability(value=Stable) @Nullable default Object getWriteCapacityAutoScalingSettings()
@Stability(value=Stable) static CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.Builder builder()
Copyright © 2021. All rights reserved.