
create-tags
***********


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

Adds or overwrites tags for the specified resources. Each resource can
have a maximum of 10 tags. Each tag consists of a key-value pair. Tag
keys must be unique per resource.


SYNOPSIS
========

   aws ec2 create-tags
     --resources <value>
     --tags <value>


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

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

   *Parameter Syntax*

      ["string", ...]

"--tags"  (list)
   The tags to add or overwrite for the specified resources. Each tag
   item consists of a key-value pair.

      (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"
        }
        ...
      ]


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

None
