Module Values.CreateKeyspaceRequestSource

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

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

    The name of the keyspace to be created.

    *)
  2. tags : TagList.t option;
    (*

    A list of key-value pair tags to be attached to the keyspace. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> ?replicationSpecification:??? -> keyspaceName:KeyspaceName.t -> unit -> t
Sourceval 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 ]
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