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.

Container for the parameters to the UntagResource operation. Deletes tags from an Application Auto Scaling scalable target. To delete a tag, specify the tag key and the Application Auto Scaling scalable target.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.ApplicationAutoScaling.AmazonApplicationAutoScalingRequest
      Amazon.ApplicationAutoScaling.Model.UntagResourceRequest

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

Syntax

C#
public class UntagResourceRequest : AmazonApplicationAutoScalingRequest
         IAmazonWebServiceRequest

The UntagResourceRequest type exposes the following members

Constructors

NameDescription
Public Method UntagResourceRequest()

Properties

NameTypeDescription
Public Property ResourceARN System.String

Gets and sets the property ResourceARN.

Identifies the Application Auto Scaling scalable target from which to remove tags.

For example: arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123

To get the ARN for a scalable target, use DescribeScalableTargets.

Public Property TagKeys System.Collections.Generic.List<System.String>

Gets and sets the property TagKeys.

One or more tag keys. Specify only the tag keys, not the tag values.

Examples

This example removes the tag pair with the key name "environment" from the scalable target specified by its ARN.

To remove a tag from a scalable target


var client = new AmazonApplicationAutoScalingClient();
var response = client.UntagResource(new UntagResourceRequest 
{
    ResourceARN = "arn:aws:application-autoscaling:us-west-2:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123",
    TagKeys = new List<string> {
        "environment"
    }
});


            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

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