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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.DeltaSyncConfigProperty
static final class
An 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.- See Also:
-
getDeltaSyncTableName
The Delta Sync table name.- See Also:
-
getDeltaSyncTableTtl
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.- See Also:
-
builder
-