
delete-tags
***********


DESCRIPTION
===========

Deletes tags from the specified Amazon EC2 resources.


SYNOPSIS
========

   aws ec2 delete-tags
     --resources <value>
     [--tags <value>]


REQUIRED PARAMETERS
===================

"--resources"  (list of string)
   A list of one or more resource IDs. This could be the ID of an AMI,
   an instance, an EBS volume, or snapshot, etc.

   *Parameter Syntax*

      ["string", ...]


OPTIONAL PARAMETERS
===================

"--tags"  (list)
   The tags to delete from the specified resources. Each tag item
   consists of a key-value pair.

   If a tag is specified without a value, the tag and all of its
   values are deleted.

      (structure)
         Represents metadata to associate with Amazon EC2 resources.
         Each tag consists of a user-defined key and value. Use tags
         to categorize EC2 resources, such as by purpose, owner, or
         environment.

         "value"  (string)
            The tag's value.

         "key"  (string)
            The tag's key.

   *Parameter Syntax*

      [
        {
          "value": "string",
          "key": "string"
        }
        ...
      ]
