:doc:`Keyspaces <../../keyspaces>` / Client / list_tags_for_resource

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



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

  

  Returns a list of all tags associated with the specified Amazon Keyspaces resource.

   

  To read keyspace metadata using ``ListTagsForResource``, the IAM principal needs ``Select`` action permissions for the specified resource and the system keyspace.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/keyspaces-2022-02-10/ListTagsForResource>`_  


  **Request Syntax**
  ::

    response = client.list_tags_for_resource(
        resourceArn='string',
        nextToken='string',
        maxResults=123
    )
    
  :type resourceArn: string
  :param resourceArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the Amazon Keyspaces resource.

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token. To resume pagination, provide the ``NextToken`` value as argument of a subsequent API invocation.

    

  
  :type maxResults: integer
  :param maxResults: 

    The total number of tags to return in the output. If the total number of tags available is more than the value specified, a ``NextToken`` is provided in the output. To resume pagination, provide the ``NextToken`` value as an argument of a subsequent API invocation.

    

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

    
    ::

      {
          'nextToken': 'string',
          'tags': [
              {
                  'key': 'string',
                  'value': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previously truncated response.

        
      

      - **tags** *(list) --* 

        A list of tags.

        
        

        - *(dict) --* 

          Describes a tag. A tag is a key-value pair. You can add up to 50 tags to a single Amazon Keyspaces resource.

           

          Amazon Web Services-assigned tag names and values are automatically assigned the ``aws:`` prefix, which the user cannot assign. Amazon Web Services-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix ``user:`` in the Cost Allocation Report. You cannot backdate the application of a tag.

           

          For more information, see `Adding tags and labels to Amazon Keyspaces resources <https://docs.aws.amazon.com/keyspaces/latest/devguide/tagging-keyspaces.html>`__ in the *Amazon Keyspaces Developer Guide*.

          
          

          - **key** *(string) --* 

            The key of the tag. Tag keys are case sensitive. Each Amazon Keyspaces resource can only have up to one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.

            
          

          - **value** *(string) --* 

            The value of the tag. Tag values are case-sensitive and can be null.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`Keyspaces.Client.exceptions.ValidationException`

  
  *   :py:class:`Keyspaces.Client.exceptions.ServiceQuotaExceededException`

  
  *   :py:class:`Keyspaces.Client.exceptions.InternalServerException`

  
  *   :py:class:`Keyspaces.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Keyspaces.Client.exceptions.ResourceNotFoundException`

  