Class: Aws::DynamoDB::Types::IncrementalExportSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::IncrementalExportSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Optional object containing the parameters specific to an incremental export.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#export_from_time ⇒ Time
Time in the past which provides the inclusive start range for the export table’s data, counted in seconds from the start of the Unix epoch.
-
#export_to_time ⇒ Time
Time in the past which provides the exclusive end range for the export table’s data, counted in seconds from the start of the Unix epoch.
-
#export_view_type ⇒ String
The view type that was chosen for the export.
Instance Attribute Details
#export_from_time ⇒ Time
Time in the past which provides the inclusive start range for the export table’s data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table’s state including and after this point in time.
4959 4960 4961 4962 4963 4964 4965 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4959 class IncrementalExportSpecification < Struct.new( :export_from_time, :export_to_time, :export_view_type) SENSITIVE = [] include Aws::Structure end |
#export_to_time ⇒ Time
Time in the past which provides the exclusive end range for the export table’s data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table’s state just prior to this point in time. If this is not provided, the latest time with data available will be used.
4959 4960 4961 4962 4963 4964 4965 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4959 class IncrementalExportSpecification < Struct.new( :export_from_time, :export_to_time, :export_view_type) SENSITIVE = [] include Aws::Structure end |
#export_view_type ⇒ String
The view type that was chosen for the export. Valid values are ‘NEW_AND_OLD_IMAGES` and `NEW_IMAGES`. The default value is `NEW_AND_OLD_IMAGES`.
4959 4960 4961 4962 4963 4964 4965 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4959 class IncrementalExportSpecification < Struct.new( :export_from_time, :export_to_time, :export_view_type) SENSITIVE = [] include Aws::Structure end |