Skip to content

Get Keyspace

keyspaces_get_keyspace R Documentation

Returns the name and the Amazon Resource Name (ARN) of the specified table

Description

Returns the name and the Amazon Resource Name (ARN) of the specified table.

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"
  )
)

Request syntax

svc$get_keyspace(
  keyspaceName = "string"
)