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¶
Arguments¶
familyPrefix
The
familyPrefix
is a string that's used to filter the results oflist_task_definition_families
. If you specify afamilyPrefix
, only task definition family names that begin with thefamilyPrefix
string are returned.status
The task definition family status to filter the
list_task_definition_families
results with. By default, bothACTIVE
andINACTIVE
task definition families are listed. If this parameter is set toACTIVE
, only task definition families that have anACTIVE
task definition revision are returned. If this parameter is set toINACTIVE
, only task definition families that do not have anyACTIVE
task definition revisions are returned. If you paginate the resulting output, be sure to keep thestatus
value constant in each subsequent request.nextToken
The
nextToken
value returned from alist_task_definition_families
request indicating that more results are available to fulfill the request and further calls will be needed. IfmaxResults
was provided, it is possible 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.
maxResults
The maximum number of task definition family results that
list_task_definition_families
returned in paginated output. When this parameter is used,list_task_definitions
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherlist_task_definition_families
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter isn't used, thenlist_task_definition_families
returns up to 100 results and anextToken
value if applicable.
Value¶
A list with the following syntax:
Request syntax¶
svc$list_task_definition_families(
familyPrefix = "string",
status = "ACTIVE"|"INACTIVE"|"ALL",
nextToken = "string",
maxResults = 123
)