@Stability(value=Stable)
public static interface CfnGlobalTable.TimeToLiveSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
All replicas will have the same time to live configuration.
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.*;
TimeToLiveSpecificationProperty timeToLiveSpecificationProperty = TimeToLiveSpecificationProperty.builder()
.enabled(false)
// the properties below are optional
.attributeName("attributeName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGlobalTable.TimeToLiveSpecificationProperty.Builder
A builder for
CfnGlobalTable.TimeToLiveSpecificationProperty |
static class |
CfnGlobalTable.TimeToLiveSpecificationProperty.Jsii$Proxy
An implementation for
CfnGlobalTable.TimeToLiveSpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGlobalTable.TimeToLiveSpecificationProperty.Builder |
builder() |
default String |
getAttributeName()
The name of the attribute used to store the expiration time for items in the table.
|
Object |
getEnabled()
Indicates whether TTL is to be enabled (true) or disabled (false) on the table.
|
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) @Nullable default String getAttributeName()
Currently, you cannot directly change the attribute name used to evaluate time to live. In order to do so, you must first disable time to live, and then re-enable it with the new attribute name. It can take up to one hour for changes to time to live to take effect. If you attempt to modify time to live within that time window, your stack operation might be delayed.
@Stability(value=Stable) static CfnGlobalTable.TimeToLiveSpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.