Module Values.GetKeyspaceResponseSource

Returns 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.

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

    The name of the keyspace.

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

    Returns the ARN of the keyspace.

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

    Returns the replication strategy of the keyspace. The options 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.

    *)
  5. replicationGroupStatuses : ReplicationGroupStatusList.t option;
    (*

    A list of all Regions the keyspace is replicated in after the update keyspace operation and their status.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?keyspaceName:??? -> ?resourceArn:??? -> ?replicationStrategy:??? -> ?replicationRegions:??? -> ?replicationGroupStatuses:??? -> unit -> t
Sourceval 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 ]
Sourceval 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 ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval 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 ]
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