List Daemon Deployments
| ecs_list_daemon_deployments | R Documentation |
Returns a list of daemon deployments for a specified daemon¶
Description¶
Returns a list of daemon deployments for a specified daemon. You can filter the results by status or creation time.
Usage¶
ecs_list_daemon_deployments(daemonArn, status, createdAt, maxResults,
nextToken)
Arguments¶
daemonArn |
[required] The Amazon Resource Name (ARN) of the daemon to list deployments for. |
status |
An optional filter to narrow the
|
createdAt |
An optional filter to narrow the
|
maxResults |
The maximum number of daemon deployment results that
|
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. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
daemonDeployments = list(
list(
daemonDeploymentArn = "string",
daemonArn = "string",
clusterArn = "string",
status = "PENDING"|"SUCCESSFUL"|"STOPPED"|"STOP_REQUESTED"|"IN_PROGRESS"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_SUCCESSFUL"|"ROLLBACK_FAILED",
statusReason = "string",
targetDaemonRevisionArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
startedAt = as.POSIXct(
"2015-01-01"
),
stoppedAt = as.POSIXct(
"2015-01-01"
),
finishedAt = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_daemon_deployments(
daemonArn = "string",
status = list(
"PENDING"|"SUCCESSFUL"|"STOPPED"|"STOP_REQUESTED"|"IN_PROGRESS"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_SUCCESSFUL"|"ROLLBACK_FAILED"
),
createdAt = list(
before = as.POSIXct(
"2015-01-01"
),
after = as.POSIXct(
"2015-01-01"
)
),
maxResults = 123,
nextToken = "string"
)