Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
awscli / awscli / examples / codestar / tag-project.rst
Size: Mime:
**To attach a tag to a project**

The following ``tag-project`` example adds a tag named ``Department`` and a value of ``Marketing`` to the specified project. ::

    aws codestar tag-project \
        --id my-project \
        --tags Department=Marketing

Output::

    {
        "tags": {
            "Department": "Marketing"
        }
    }