Module Values.KeyspaceSummarySource

Represents the properties of a keyspace.

Sourcetype nonrec t = {
  1. keyspaceName : KeyspaceName.t option;
    (*

    The name of the keyspace.

    *)
  2. resourceArn : ARN.t option;
    (*

    The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).

    *)
  3. replicationStrategy : Rs.t option;
    (*

    This property specifies if a keyspace is a single Region keyspace or a multi-Region keyspace. The available values are SINGLE_REGION or MULTI_REGION.

    *)
  4. replicationRegions : RegionList.t option;
    (*

    If the replicationStrategy of the keyspace is MULTI_REGION, a list of replication Regions is returned.

    *)
}
Sourceval make : ?keyspaceName:??? -> ?resourceArn:??? -> ?replicationStrategy:??? -> ?replicationRegions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Region.t ] list | `String of KeyspaceName.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