Interface CfnDataSource.DeltaSyncConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.DeltaSyncConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.DeltaSyncConfigProperty
extends software.amazon.jsii.JsiiSerializable
Describes a Delta Sync 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.appsync.*;
DeltaSyncConfigProperty deltaSyncConfigProperty = DeltaSyncConfigProperty.builder()
.baseTableTtl("baseTableTtl")
.deltaSyncTableName("deltaSyncTableName")
.deltaSyncTableTtl("deltaSyncTableTtl")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.DeltaSyncConfigPropertystatic final classAn implementation forCfnDataSource.DeltaSyncConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The number of minutes that an Item is stored in the data source.The Delta Sync table name.The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaseTableTtl
The number of minutes that an Item is stored in the data source. -
getDeltaSyncTableName
The Delta Sync table name. -
getDeltaSyncTableTtl
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table. -
builder
-