AWSDynamoDBIncrementalExportSpecification

Objective-C

@interface AWSDynamoDBIncrementalExportSpecification

Swift

class AWSDynamoDBIncrementalExportSpecification

Optional object containing the parameters specific to an incremental export.

  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable exportFromTime;

    Swift

    var exportFromTime: Date? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable exportToTime;

    Swift

    var exportToTime: Date? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic) AWSDynamoDBExportViewType exportViewType;

    Swift

    var exportViewType: AWSDynamoDBExportViewType { get set }