List Task Definition Families
ecs_list_task_definition_families | R Documentation |
Returns a list of task definition families that are registered to your account¶
Description¶
Returns a list of task definition families that are registered to your
account. This list includes task definition families that no longer have
any ACTIVE
task definition revisions.
You can filter out task definition families that don't contain any
ACTIVE
task definition revisions by setting the status
parameter to
ACTIVE
. You can also filter the results with the familyPrefix
parameter.
Usage¶
ecs_list_task_definition_families(familyPrefix, status, nextToken,
maxResults)
Arguments¶
familyPrefix |
The |
status |
The task definition family status to filter the
|
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 task definition family results that
|
Value¶
A list with the following syntax:
list(
families = list(
"string"
),
nextToken = "string"
)
Request syntax¶
svc$list_task_definition_families(
familyPrefix = "string",
status = "ACTIVE"|"INACTIVE"|"ALL",
nextToken = "string",
maxResults = 123
)
Examples¶
## Not run:
# This example lists all of your registered task definition families.
svc$list_task_definition_families()
# This example lists the task definition revisions that start with "hpcc".
svc$list_task_definition_families(
familyPrefix = "hpcc"
)
## End(Not run)