Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > dd7204292d310452063d09b5de9c13b7 > files > 917

aws-cli-docs-1.16.163-1.mga7.noarch.rpm

**To list the tags for a resource**

The following ``list-tags-for-resource`` example lists the tags for a specific cluster. ::

    aws ecs list-tags-for-resource \
        --resource-arn arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster

Output::

    {
        "tags": [
            {
                "key": "key1",
                "value": "value1"
            },
            {
                "key": "key2",
                "value": "value2"
            },
            {
                "key": "key3",
                "value": "value3"
            }
        ]
    }