List Keyspaces
keyspaces_list_keyspaces | R Documentation |
The ListKeyspaces operation returns a list of keyspaces¶
Description¶
The list_keyspaces
operation returns a list of keyspaces.
Usage¶
keyspaces_list_keyspaces(nextToken, maxResults)
Arguments¶
nextToken |
The pagination token. To resume pagination, provide the
|
maxResults |
The total number of keyspaces to return in the output. If the
total number of keyspaces available is more than the value specified, a
|
Value¶
A list with the following syntax:
list(
nextToken = "string",
keyspaces = list(
list(
keyspaceName = "string",
resourceArn = "string",
replicationStrategy = "SINGLE_REGION"|"MULTI_REGION",
replicationRegions = list(
"string"
)
)
)
)
Request syntax¶
svc$list_keyspaces(
nextToken = "string",
maxResults = 123
)