@Stability(value=Stable)
public static interface CfnGlobalTable.WriteProvisionedThroughputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
This policy will be applied to all replicas. This setting must be specified if BillingMode is set to PROVISIONED .
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.*;
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()
Specifies auto scaling settings for the replica table or global secondary index.
|
@Stability(value=Stable) @Nullable default Object getWriteCapacityAutoScalingSettings()
@Stability(value=Stable) static CfnGlobalTable.WriteProvisionedThroughputSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.