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