Module Values.ReplicationDestinationStatusModelSource

Contains status information for a replication destination, including the current replication state, last successful update, and any error messages.

Sourcetype nonrec t = {
  1. replicationStatus : ReplicationStatus.t option;
    (*

    The current status of replication to this destination.

    *)
  2. destinationTableBucketArn : TableBucketARN.t option;
    (*

    The Amazon Resource Name (ARN) of the destination table bucket.

    *)
  3. destinationTableArn : TableARN.t option;
    (*

    The Amazon Resource Name (ARN) of the destination table.

    *)
  4. lastSuccessfulReplicatedUpdate : LastSuccessfulReplicatedUpdate.t option;
    (*

    Information about the most recent successful replication update to this destination.

    *)
  5. failureMessage : String_.t option;
    (*

    If replication has failed, this field contains an error message describing the failure reason.

    *)
}
Sourceval make : ?replicationStatus:??? -> ?destinationTableBucketArn:??? -> ?destinationTableArn:??? -> ?lastSuccessfulReplicatedUpdate:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TableBucketARN.t | `Structure of (string * [> `String of MetadataLocation.t | `Timestamp of SyntheticTimestamp_date_time.t ]) list ]) 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