Cloud9 / Client / list_tags_for_resource

list_tags_for_resource#

Cloud9.Client.list_tags_for_resource(**kwargs)#

Gets a list of the tags associated with an Cloud9 development environment.

See also: AWS API Documentation

Request Syntax

response = client.list_tags_for_resource(
    ResourceARN='string'
)
Parameters:

ResourceARN (string) –

[REQUIRED]

The Amazon Resource Name (ARN) of the Cloud9 development environment to get the tags for.

Return type:

dict

Returns:

Response Syntax

{
    'Tags': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • Tags (list) –

      The list of tags associated with the Cloud9 development environment.

      • (dict) –

        Metadata that is associated with Amazon Web Services resources. In particular, a name-value pair that can be associated with an Cloud9 development environment. There are two types of tags: user tags and system tags. A user tag is created by the user. A system tag is automatically created by Amazon Web Services services. A system tag is prefixed with "aws:" and cannot be modified by the user.

        • Key (string) –

          The name part of a tag.

        • Value (string) –

          The value part of a tag.

Exceptions