List Daemon Task Definitions
| ecs_list_daemon_task_definitions | R Documentation |
Returns a list of daemon task definitions that are registered to your account¶
Description¶
Returns a list of daemon task definitions that are registered to your account. You can filter the results by family name, status, or both to find daemon task definitions that match your criteria.
Usage¶
ecs_list_daemon_task_definitions(familyPrefix, family, revision, status,
sort, nextToken, maxResults)
Arguments¶
familyPrefix |
The full family name to filter the
|
family |
The exact name of the daemon task definition family to filter results with. |
revision |
The revision filter to apply. Specify
|
status |
The daemon task definition status to filter the
|
sort |
The order to sort the results. Valid values are |
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 daemon task definition results that
|
Value¶
A list with the following syntax:
list(
daemonTaskDefinitions = list(
list(
arn = "string",
registeredAt = as.POSIXct(
"2015-01-01"
),
registeredBy = "string",
deleteRequestedAt = as.POSIXct(
"2015-01-01"
),
status = "ACTIVE"|"DELETE_IN_PROGRESS"|"DELETED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_daemon_task_definitions(
familyPrefix = "string",
family = "string",
revision = "LAST_REGISTERED",
status = "ACTIVE"|"DELETE_IN_PROGRESS"|"ALL",
sort = "ASC"|"DESC",
nextToken = "string",
maxResults = 123
)