Class: Aws::AppSync::Types::DeltaSyncConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::DeltaSyncConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass DeltaSyncConfig data as a hash:
{
base_table_ttl: 1,
delta_sync_table_name: "String",
delta_sync_table_ttl: 1,
}
Describes a Delta Sync configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_table_ttl ⇒ Integer
The number of minutes that an Item is stored in the data source.
-
#delta_sync_table_name ⇒ String
The Delta Sync table name.
-
#delta_sync_table_ttl ⇒ Integer
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
Instance Attribute Details
#base_table_ttl ⇒ Integer
The number of minutes that an Item is stored in the data source.
1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1576 class DeltaSyncConfig < Struct.new( :base_table_ttl, :delta_sync_table_name, :delta_sync_table_ttl) SENSITIVE = [] include Aws::Structure end |
#delta_sync_table_name ⇒ String
The Delta Sync table name.
1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1576 class DeltaSyncConfig < Struct.new( :base_table_ttl, :delta_sync_table_name, :delta_sync_table_ttl) SENSITIVE = [] include Aws::Structure end |
#delta_sync_table_ttl ⇒ Integer
The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1576 class DeltaSyncConfig < Struct.new( :base_table_ttl, :delta_sync_table_name, :delta_sync_table_ttl) SENSITIVE = [] include Aws::Structure end |