List Clusters
ecs_list_clusters | R Documentation |
Returns a list of existing clusters¶
Description¶
Returns a list of existing clusters.
Usage¶
ecs_list_clusters(nextToken, maxResults)
Arguments¶
nextToken |
The This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes. |
maxResults |
The maximum number of cluster results that
|
Value¶
A list with the following syntax:
list(
clusterArns = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_clusters(
nextToken = "string",
maxResults = 123
)
Examples¶
## Not run:
# This example lists all of your available clusters in your default
# region.
svc$list_clusters()
## End(Not run)