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 DeleteTags operation. Deletes the specified set of tags from the specified set of resources.

To list the current tags, use DescribeTags. For more information about tags, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.DeleteTagsRequest

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

Syntax

C#
public class DeleteTagsRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The DeleteTagsRequest type exposes the following members

Constructors

NameDescription
Public Method DeleteTagsRequest()

Empty constructor used to set properties independently even when a simple constructor is available

Public Method DeleteTagsRequest(List<String>)

Instantiates DeleteTagsRequest with the parameterized properties

Properties

NameTypeDescription
Public Property Resources System.Collections.Generic.List<System.String>

Gets and sets the property Resources.

The IDs of the resources, separated by spaces.

Constraints: Up to 1000 resource IDs. We recommend breaking up this request into smaller batches.

Public Property Tags System.Collections.Generic.List<Amazon.EC2.Model.Tag>

Gets and sets the property Tags.

The tags to delete. Specify a tag key and an optional tag value to delete specific tags. If you specify a tag key without a tag value, we delete any tag with this key regardless of its value. If you specify a tag key with an empty string as the tag value, we delete the tag only if its value is an empty string.

If you omit this parameter, we delete all user-defined tags for the specified resources. We do not delete Amazon Web Services-generated tags (tags that have the aws: prefix).

Constraints: Up to 1000 tags.

Examples

This example deletes the tag Stack=test from the specified image.

To delete a tag from a resource


var client = new AmazonEC2Client();
var response = client.DeleteTags(new DeleteTagsRequest 
{
    Resources = new List<string> {
        "ami-78a54011"
    },
    Tags = new List<Tag> {
        new Tag {
            Key = "Stack",
            Value = "test"
        }
    }
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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