class
Amazonite::DynamoDB::IncrementalExportSpecification
- Amazonite::DynamoDB::IncrementalExportSpecification
- Reference
- Object
Overview
Optional object containing the parameters specific to an incremental export.
Included Modules
- JSON::Serializable
Defined in:
dynamodb/incremental_export_specification.crConstructors
- .new(pull : JSON::PullParser)
- .new(export_from_time : Time | Nil = nil, export_to_time : Time | Nil = nil, export_view_type : ExportViewType | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#export_from_time : Time | Nil
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_from_time=(export_from_time : Time | Nil)
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 | Nil
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_to_time=(export_to_time : Time | Nil)
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 : ExportViewType | Nil
The view type that was chosen for the export.
-
#export_view_type=(export_view_type : ExportViewType | Nil)
The view type that was chosen for the export.
-
#hash(hasher)
See
Object#hash(hasher) - #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
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.
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.
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.
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.
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.
NEW_AND_OLD_IMAGES exports both the new and old images of each changed item, while
NEW_IMAGES exports only the new (latest) image. The view type you choose determines the
structure of each item in the output for insert, update, and delete operations. For
details and examples of how each view type shapes the export output, see DynamoDB table export
output
format
in the Amazon DynamoDB Developer Guide.
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.
NEW_AND_OLD_IMAGES exports both the new and old images of each changed item, while
NEW_IMAGES exports only the new (latest) image. The view type you choose determines the
structure of each item in the output for insert, update, and delete operations. For
details and examples of how each view type shapes the export output, see DynamoDB table export
output
format
in the Amazon DynamoDB Developer Guide.