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.

Returns all the tags on the specified Application Auto Scaling scalable target.

For general information about tags, including the format and syntax, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference.

Note:

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

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

Syntax

C#
public abstract ListTagsForResourceResponse ListTagsForResource(
         ListTagsForResourceRequest request
)

Parameters

request
Type: Amazon.ApplicationAutoScaling.Model.ListTagsForResourceRequest

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

Return Value


The response from the ListTagsForResource service method, as returned by ApplicationAutoScaling.

Exceptions

ExceptionCondition
ResourceNotFoundException The specified resource doesn't exist.

Examples

This example lists the tag key names and values that are attached to the scalable target specified by its ARN.

To list tags for a scalable target


var client = new AmazonApplicationAutoScalingClient();
var response = client.ListTagsForResource(new ListTagsForResourceRequest 
{
    ResourceARN = "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123"
});

Dictionary<string, string> tags = response.Tags;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also