Module Values.RestoreSummarySource

Contains details for the restore.

Sourcetype nonrec t = {
  1. sourceBackupArn : BackupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the backup from which the table was restored.

    *)
  2. sourceTableArn : TableArn.t option;
    (*

    The ARN of the source table of the backup that is being restored.

    *)
  3. restoreDateTime : Date.t option;
    (*

    Point in time or source backup time.

    *)
  4. restoreInProgress : RestoreInProgress.t option;
    (*

    Indicates if a restore is in progress or not.

    *)
}
Sourceval make : ?sourceBackupArn:??? -> ?sourceTableArn:??? -> ?restoreDateTime:??? -> ?restoreInProgress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RestoreInProgress.t | `String of BackupArn.t | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t