List Attributes
| ecs_list_attributes | R Documentation |
Lists the attributes for Amazon ECS resources within a specified target type and cluster¶
Description¶
Lists the attributes for Amazon ECS resources within a specified target
type and cluster. When you specify a target type and cluster,
list_attributes returns a list of attribute objects, one for each
attribute on each resource. You can filter the list of results to a
single attribute name to only return results that have that name. You
can also filter the results by attribute name and value. You can do
this, for example, to see which container instances in a cluster are
running a Linux AMI (ecs.os-type=linux).
Usage¶
Arguments¶
clusterThe short name or full Amazon Resource Name (ARN) of the cluster to list attributes. If you do not specify a cluster, the default cluster is assumed.
targetType[required] The type of the target to list attributes with.
attributeNameThe name of the attribute to filter the results with.
attributeValueThe value of the attribute to filter results with. You must also specify an attribute name to use this parameter.
nextTokenThe
nextTokenvalue returned from alist_attributesrequest indicating that more results are available to fulfill the request and further calls are needed. IfmaxResultswas provided, it's 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 cluster results that
list_attributesreturned in paginated output. When this parameter is used,list_attributesonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_attributesrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenlist_attributesreturns up to 100 results and anextTokenvalue if applicable.
Value¶
A list with the following syntax:
list(
attributes = list(
list(
name = "string",
value = "string",
targetType = "container-instance",
targetId = "string"
)
),
nextToken = "string"
)