Values.CreateKeyspaceRequestSourceThe CreateKeyspace operation adds a new keyspace to your account. In an Amazon Web Services account, keyspace names must be unique within each Region. CreateKeyspace is an asynchronous operation. You can monitor the creation status of the new keyspace by using the GetKeyspace operation. For more information, see Create a keyspace in the Amazon Keyspaces Developer Guide.
type nonrec t = {keyspaceName : KeyspaceName.t;The name of the keyspace to be created.
*)replicationSpecification : ReplicationSpecification.t option;The replication specification of the keyspace includes: replicationStrategy - the required value is SINGLE_REGION or MULTI_REGION. regionList - if the replicationStrategy is MULTI_REGION, the regionList requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in.
*)}val make :
?tags:??? ->
?replicationSpecification:??? ->
keyspaceName:KeyspaceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of KeyspaceName.t
| `Structure of
(string
* [> `Enum of string | `List of [> `String of Region.t ] list ])
list ])
list ]