create_keyspace

Keyspaces.Client.create_keyspace(**kwargs)

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 Creating keyspaces in the Amazon Keyspaces Developer Guide .

See also: AWS API Documentation

Request Syntax

response = client.create_keyspace(
    keyspaceName='string',
    tags=[
        {
            'key': 'string',
            'value': 'string'
        },
    ]
)
Parameters
  • keyspaceName (string) --

    [REQUIRED]

    The name of the keyspace to be created.

  • tags (list) --

    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 .

    • (dict) --

      Describes a tag. A tag is a key-value pair. You can add up to 50 tags to a single Amazon Keyspaces resource.

      Amazon Web Services-assigned tag names and values are automatically assigned the aws: prefix, which the user cannot assign. Amazon Web Services-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix user: in the Cost Allocation Report. You cannot backdate the application of a tag.

      For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide .

      • key (string) -- [REQUIRED]

        The key of the tag. Tag keys are case sensitive. Each Amazon Keyspaces resource can only have up to one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.

      • value (string) -- [REQUIRED]

        The value of the tag. Tag values are case-sensitive and can be null.

Return type

dict

Returns

Response Syntax

{
    'resourceArn': 'string'
}

Response Structure

  • (dict) --

    • resourceArn (string) --

      The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).

Exceptions

  • Keyspaces.Client.exceptions.ValidationException
  • Keyspaces.Client.exceptions.ServiceQuotaExceededException
  • Keyspaces.Client.exceptions.InternalServerException
  • Keyspaces.Client.exceptions.ConflictException
  • Keyspaces.Client.exceptions.AccessDeniedException