Returns a list of daemons. You can filter the results by cluster or capacity provider.
See https://www.paws-r-sdk.com/docs/ecs_list_daemons/ for full documentation.
Usage
ecs_list_daemons(
clusterArn = NULL,
capacityProviderArns = NULL,
maxResults = NULL,
nextToken = NULL
)Arguments
- clusterArn
The Amazon Resource Name (ARN) of the cluster to filter daemons by. If not specified, daemons from all clusters are returned.
- capacityProviderArns
The Amazon Resource Names (ARNs) of the capacity providers to filter daemons by. Only daemons associated with the specified capacity providers are returned.
- maxResults
The maximum number of daemon results that
list_daemonsreturned in paginated output. When this parameter is used,list_daemonsonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_daemonsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenlist_daemonsreturns up to 100 results and anextTokenvalue if applicable.- nextToken
The
nextTokenvalue returned from alist_daemonsrequest indicating that more results are available to fulfill the request and further calls will be needed. IfmaxResultswas provided, it's possible for the number of results to be fewer thanmaxResults.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.