Values.KeyspaceSummarySourceRepresents the properties of a keyspace.
type nonrec t = {keyspaceName : KeyspaceName.t option;The name of the keyspace.
*)resourceArn : ARN.t option;The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).
*)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.
*)replicationRegions : RegionList.t option;If the replicationStrategy of the keyspace is MULTI_REGION, a list of replication Regions is returned.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of Region.t ] list
| `String of KeyspaceName.t ])
list ]