Returns a list of daemon deployments for a specified daemon
Source:R/ecs_operations.R
ecs_list_daemon_deployments.RdReturns a list of daemon deployments for a specified daemon. You can filter the results by status or creation time.
See https://www.paws-r-sdk.com/docs/ecs_list_daemon_deployments/ for full documentation.
Usage
ecs_list_daemon_deployments(
daemonArn,
status = NULL,
createdAt = NULL,
maxResults = NULL,
nextToken = NULL
)Arguments
- daemonArn
[required] The Amazon Resource Name (ARN) of the daemon to list deployments for.
- status
An optional filter to narrow the
list_daemon_deploymentsresults by deployment status. If you don't specify a status, all deployments are returned.- createdAt
An optional filter to narrow the
list_daemon_deploymentsresults by creation time. If you don't specify a time range, all deployments are returned.- maxResults
The maximum number of daemon deployment results that
list_daemon_deploymentsreturned in paginated output. When this parameter is used,list_daemon_deploymentsonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_daemon_deploymentsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenlist_daemon_deploymentsreturns up to 20 results and anextTokenvalue if applicable.- nextToken
The
nextTokenvalue returned from alist_daemon_deploymentsrequest 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.