Module Values_0.GlobalResiliencyMetadataSource

Information about the global resiliency configuration for the contact, including traffic distribution details.

Sourcetype nonrec t = {
  1. activeRegion : ActiveRegion.t option;
    (*

    The current AWS region in which the contact is active. This indicates where the contact is being processed in real-time.

    *)
  2. originRegion : OriginRegion.t option;
    (*

    The AWS region where the contact was originally created and initiated. This may differ from the ActiveRegion if the contact has been transferred across regions.

    *)
  3. trafficDistributionGroupId : TrafficDistributionGroupId.t option;
    (*

    The identifier of the traffic distribution group.

    *)
}
Sourceval make : ?activeRegion:??? -> ?originRegion:??? -> ?trafficDistributionGroupId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ActiveRegion.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