Returns a list of task definition families that are registered to your account
Source:R/ecs_operations.R
ecs_list_task_definition_families.RdReturns 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.
See https://www.paws-r-sdk.com/docs/ecs_list_task_definition_families/ for full documentation.
Usage
ecs_list_task_definition_families(
familyPrefix = NULL,
status = NULL,
nextToken = NULL,
maxResults = NULL
)Arguments
- familyPrefix
The
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.- status
The 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.- nextToken
The
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.
- maxResults
The 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.