Module Values.AwsDynamoDbTableRestoreSummarySource

Information about the restore for the table.

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

    The ARN of the source backup from which the table was restored.

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

    The ARN of the source table for the backup.

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

    Indicates the point in time that the table was restored to. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

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

    Whether a restore is currently in progress.

    *)
}
Sourceval make : ?sourceBackupArn:??? -> ?sourceTableArn:??? -> ?restoreDateTime:??? -> ?restoreInProgress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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