Module Values.ReplicationSpecificationSource

The replication specification of the keyspace includes: regionList - the Amazon Web Services Regions where the keyspace is replicated in. replicationStrategy - the required value is SINGLE_REGION or MULTI_REGION.

Sourcetype nonrec t = {
  1. replicationStrategy : Rs.t;
    (*

    The replicationStrategy of a keyspace, the required value is SINGLE_REGION or MULTI_REGION.

    *)
  2. regionList : RegionList.t option;
    (*

    The regionList contains the Amazon Web Services Regions where the keyspace is replicated in.

    *)
}
Sourceval context_ : string
Sourceval make : ?regionList:??? -> replicationStrategy:Rs.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.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