List Keyspaces
keyspaces_list_keyspaces | R Documentation |
Returns a list of keyspaces¶
Description¶
Returns a list of keyspaces.
Usage¶
Arguments¶
nextToken
The pagination token. To resume pagination, provide the
NextToken
value as argument of a subsequent API invocation.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
NextToken
is provided in the output. To resume pagination, provide theNextToken
value as an argument of a subsequent API invocation.
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"
)
)
)
)