:doc:`ConfigService <../../config>` / Client / list_tags_for_resource

**********************
list_tags_for_resource
**********************



.. py:method:: ConfigService.Client.list_tags_for_resource(**kwargs)

  

  List the tags for Config resource.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListTagsForResource>`_  


  **Request Syntax**
  ::

    response = client.list_tags_for_resource(
        ResourceArn='string',
        Limit=123,
        NextToken='string'
    )
    
  :type ResourceArn: string
  :param ResourceArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. The following resources are supported:

     

    
    * ``ConfigurationRecorder``
     
    * ``ConfigRule``
     
    * ``OrganizationConfigRule``
     
    * ``ConformancePack``
     
    * ``OrganizationConformancePack``
     
    * ``ConfigurationAggregator``
     
    * ``AggregationAuthorization``
     
    * ``StoredQuery``
    

    

  
  :type Limit: integer
  :param Limit: 

    The maximum number of tags returned on each page. The limit maximum is 50. You cannot specify a number greater than 50. If you specify 0, Config uses the default.

    

  
  :type NextToken: string
  :param NextToken: 

    The ``nextToken`` string returned on a previous page that you use to get the next page of results in a paginated response.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Tags': [
              {
                  'Key': 'string',
                  'Value': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Tags** *(list) --* 

        The tags for the resource.

        
        

        - *(dict) --* 

          The tags for the resource. The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

          
          

          - **Key** *(string) --* 

            One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

            
          

          - **Value** *(string) --* 

            The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

            
      
    
      

      - **NextToken** *(string) --* 

        The ``nextToken`` string returned on a previous page that you use to get the next page of results in a paginated response.

        
  
  **Exceptions**
  
  *   :py:class:`ConfigService.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`ConfigService.Client.exceptions.ValidationException`

  
  *   :py:class:`ConfigService.Client.exceptions.InvalidLimitException`

  
  *   :py:class:`ConfigService.Client.exceptions.InvalidNextTokenException`

  