Module Values.ReplicationStatusSource

Represents the status of the replication of an application to a location. An application cannot be streamed from a location until it has finished replicating there.

Sourcetype nonrec t = {
  1. location : LocationName.t option;
    (*

    A location's name. For example, us-east-1. For a complete list of locations that Amazon GameLift Streams supports, refer to Regions, quotas, and limitations in the Amazon GameLift Streams Developer Guide.

    *)
  2. status : ReplicationStatusType.t option;
    (*

    The current status of the replication process.

    *)
}
Sourceval make : ?location:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LocationName.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