Module Values.ReplicationGroupStatusSource

This shows the summary status of the keyspace after a new Amazon Web Services Region was added.

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

    The name of the Region that was added to the keyspace.

    *)
  2. keyspaceStatus : KeyspaceStatus.t option;
    (*

    The status of the keyspace.

    *)
  3. tablesReplicationProgress : TablesReplicationProgress.t option;
    (*

    This shows the replication progress of tables in the keyspace. The value is expressed as a percentage of the newly replicated tables with status Active compared to the total number of tables in the keyspace.

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