Interface PointInTimeRecoverySpecification
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PointInTimeRecoverySpecification.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:02.490Z")
@Stability(Stable)
public interface PointInTimeRecoverySpecification
extends software.amazon.jsii.JsiiSerializable
Reference to PointInTimeRecovey Specification for continuous backups.
Example:
TableV2 table = TableV2.Builder.create(this, "Table")
.partitionKey(Attribute.builder().name("pk").type(AttributeType.STRING).build())
.contributorInsightsSpecification(ContributorInsightsSpecification.builder()
.enabled(true)
.build())
.tableClass(TableClass.STANDARD_INFREQUENT_ACCESS)
.pointInTimeRecoverySpecification(PointInTimeRecoverySpecification.builder()
.pointInTimeRecoveryEnabled(true)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPointInTimeRecoverySpecificationstatic final classAn implementation forPointInTimeRecoverySpecification -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPointInTimeRecoveryEnabled
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.Default: false
-
getRecoveryPeriodInDays
The number of preceding days for which continuous backups are taken and maintained.Your table data is only recoverable to any point-in-time from within the configured recovery period. If no value is provided, the value will default to 35.
Default: 35
-
builder
-