Module Values.DestinationBackupSource

Contains information about the backup that will be copied and created by the CopyBackupToRegion operation.

Sourcetype nonrec t = {
  1. createTimestamp : Timestamp.t option;
    (*

    The date and time when both the source backup was created.

    *)
  2. sourceRegion : Region.t option;
    (*

    The AWS region that contains the source backup from which the new backup was copied.

    *)
  3. sourceBackup : BackupId.t option;
    (*

    The identifier (ID) of the source backup from which the new backup was copied.

    *)
  4. sourceCluster : ClusterId.t option;
    (*

    The identifier (ID) of the cluster containing the source backup from which the new backup was copied.

    *)
}
Sourceval make : ?createTimestamp:??? -> ?sourceRegion:??? -> ?sourceBackup:??? -> ?sourceCluster:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Region.t | `Timestamp of Timestamp.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