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¶
Arguments¶
collectionFilters
A list of filter names and values that you can use for requests.
maxResults
The maximum number of results to return. Default is 20. You can use
nextToken
to get the next page of results.nextToken
If your initial
list_collections
operation returns anextToken
, you can include the returnednextToken
in subsequentlist_collections
operations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
collectionSummaries = list(
list(
arn = "string",
id = "string",
name = "string",
status = "CREATING"|"DELETING"|"ACTIVE"|"FAILED"
)
),
nextToken = "string"
)