List Keyspaces
| keyspaces_list_keyspaces | R Documentation |
Returns a list of keyspaces¶
Description¶
Returns a list of keyspaces.
Usage¶
Arguments¶
nextTokenThe pagination token. To resume pagination, provide the
NextTokenvalue as argument of a subsequent API invocation.maxResultsThe total number of keyspaces to return in the output. If the total number of keyspaces available is more than the value specified, a
NextTokenis provided in the output. To resume pagination, provide theNextTokenvalue 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"
)
)
)
)