Values.GetKeyspaceResponseSourceReturns the name of the specified keyspace, the Amazon Resource Name (ARN), the replication strategy, the Amazon Web Services Regions of a multi-Region keyspace, and the status of newly added Regions after an UpdateKeyspace operation.
type nonrec t = {keyspaceName : KeyspaceName.t option;The name of the keyspace.
*)resourceArn : ARN.t option;Returns the ARN of the keyspace.
*)replicationStrategy : Rs.t option;Returns the replication strategy of the keyspace. The options 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.
*)replicationGroupStatuses : ReplicationGroupStatusList.t option;A list of all Regions the keyspace is replicated in after the update keyspace operation and their status.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `String of Region.t
| `Structure of
(string * [> `Enum of string | `String of Region.t ]) list ]
list
| `String of KeyspaceName.t ])
list ]