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¶
familyPrefixThe
familyPrefixis 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 thefamilyPrefixstring are returned.statusThe task definition family status to filter the
list_task_definition_familiesresults with. By default, bothACTIVEandINACTIVEtask definition families are listed. If this parameter is set toACTIVE, only task definition families that have anACTIVEtask definition revision are returned. If this parameter is set toINACTIVE, only task definition families that do not have anyACTIVEtask definition revisions are returned. If you paginate the resulting output, be sure to keep thestatusvalue constant in each subsequent request.nextTokenThe
nextTokenvalue returned from alist_task_definition_familiesrequest indicating that more results are available to fulfill the request and further calls will be needed. IfmaxResultswas 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.
maxResultsThe maximum number of task definition family results that
list_task_definition_familiesreturned in paginated output. When this parameter is used,list_task_definitionsonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_task_definition_familiesrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenlist_task_definition_familiesreturns up to 100 results and anextTokenvalue 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
)