Skip to content

Get Keyspace

keyspaces_get_keyspace R Documentation

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

Description

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 update_keyspace operation.

Usage

keyspaces_get_keyspace(keyspaceName)

Arguments

keyspaceName

[required] The name of the keyspace.

Value

A list with the following syntax:

list(
  keyspaceName = "string",
  resourceArn = "string",
  replicationStrategy = "SINGLE_REGION"|"MULTI_REGION",
  replicationRegions = list(
    "string"
  ),
  replicationGroupStatuses = list(
    list(
      region = "string",
      keyspaceStatus = "ACTIVE"|"CREATING"|"UPDATING"|"DELETING",
      tablesReplicationProgress = "string"
    )
  )
)

Request syntax

svc$get_keyspace(
  keyspaceName = "string"
)