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


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

Removes the specified tags or a set of tags from a set of resources.


SYNOPSIS
========

   aws autoscaling delete-tags
     --tags <value>


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

"--tags"  (list)
   Each tag should be defined by its resource type, resource ID, key,
   value, and a propagate flag. Valid values are: Resource type =
   *auto-scaling-group* , Resource ID = *AutoScalingGroupName* ,
   key=*value* , value=*value* , propagate=*true* or *false* .

      (structure)
         The tag applied to an Auto Scaling group.

         "resource_type"  (string)
            The kind of resource to which the tag is applied.
            Currently, Auto Scaling supports the "auto-scaling-group"
            resource type.

         "resource_id"  (string)
            The name of the Auto Scaling group.

         "propagate_at_launch"  (boolean)
            Specifies whether the new tag will be applied to instances
            launched after the tag is created. The same behavior
            applies to updates: If you change a tag, the changed tag
            will be applied to all instances launched after you made
            the change.

         "value"  (string)
            The value of the tag.

         "key"  (string)
            The key of the tag.

   *Parameter Syntax*

      [
        {
          "resource_type": "string",
          "resource_id": "string",
          "propagate_at_launch": true|false,
          "value": "string",
          "key": "string"
        }
        ...
      ]


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

None
