Module Values_1.ReplicationStatusSummarySource

Status information about the replication process, where you use the ReplicateInstance API to create a replica of your Amazon Connect instance in another Amazon Web Services Region. For more information, see Set up Amazon Connect Global Resiliency in the Amazon Connect Administrator Guide.

Sourcetype nonrec t = {
  1. region : Values_0.AwsRegion.t option;
    (*

    The Amazon Web Services Region. This can be either the source or the replica Region, depending where it appears in the summary list.

    *)
  2. replicationStatus : InstanceReplicationStatus.t option;
    (*

    The state of the replication.

    *)
  3. replicationStatusReason : ReplicationStatusReason.t option;
    (*

    A description of the replication status. Use this information to resolve any issues that are preventing the successful replication of your Amazon Connect instance to another Region.

    *)
}
Sourceval make : ?region:??? -> ?replicationStatus:??? -> ?replicationStatusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.AwsRegion.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