View source: R/ecs_operations.R
ecs_list_attributes | R Documentation |
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
).
See https://www.paws-r-sdk.com/docs/ecs_list_attributes/ for full documentation.
ecs_list_attributes(
cluster = NULL,
targetType,
attributeName = NULL,
attributeValue = NULL,
nextToken = NULL,
maxResults = NULL
)
cluster |
The 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. |
attributeName |
The name of the attribute to filter the results with. |
attributeValue |
The value of the attribute to filter results with. You must also specify an attribute name to use this parameter. |
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 cluster results that
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.