AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Lists the attributes for Amazon ECS resources within a specified target type and cluster. When you specify a target type and cluster, ListAttributes 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).

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ListAttributesAsync.

Namespace: Amazon.ECS
Assembly: AWSSDK.ECS.dll
Version: 3.x.y.z

Syntax

C#
public abstract ListAttributesResponse ListAttributes(
         ListAttributesRequest request
)

Parameters

request
Type: Amazon.ECS.Model.ListAttributesRequest

Container for the necessary parameters to execute the ListAttributes service method.

Return Value


The response from the ListAttributes service method, as returned by ECS.

Exceptions

ExceptionCondition
ClusterNotFoundException The specified cluster wasn't found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region specific.
InvalidParameterException The specified parameter isn't valid. Review the available parameters for the API request.

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also