List Collections
opensearchserviceserverless_list_collections | R Documentation |
Lists all OpenSearch Serverless collections¶
Description¶
Lists all OpenSearch Serverless collections. For more information, see Creating and managing Amazon OpenSearch Serverless collections.
Make sure to include an empty request body {} if you don't include any collection filters in the request.
Usage¶
opensearchserviceserverless_list_collections(collectionFilters,
nextToken, maxResults)
Arguments¶
collectionFilters |
A list of filter names and values that you can use for requests. |
nextToken |
If your initial |
maxResults |
The maximum number of results to return. Default is 20. You can
use |
Value¶
A list with the following syntax:
list(
collectionSummaries = list(
list(
id = "string",
name = "string",
status = "CREATING"|"DELETING"|"ACTIVE"|"FAILED",
arn = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_collections(
collectionFilters = list(
name = "string",
status = "CREATING"|"DELETING"|"ACTIVE"|"FAILED"
),
nextToken = "string",
maxResults = 123
)