:doc:`SFN <../../stepfunctions>` / Client / list_tags_for_resource

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



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

  

  List tags for a given resource.

   

  Tags may only contain Unicode letters, digits, white space, or these symbols: ``_ . : / = + - @``.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/states-2016-11-23/ListTagsForResource>`_  


  **Request Syntax**
  ::

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

    The Amazon Resource Name (ARN) for the Step Functions state machine or activity.

    

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

    
    ::

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

    

    - *(dict) --* 
      

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

        An array of tags associated with the resource.

        
        

        - *(dict) --* 

          Tags are key-value pairs that can be associated with Step Functions state machines and activities.

           

          An array of key-value pairs. For more information, see `Using Cost Allocation Tags <https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html>`__ in the *Amazon Web Services Billing and Cost Management User Guide*, and `Controlling Access Using IAM Tags <https://docs.aws.amazon.com/IAM/latest/UserGuide/access_iam-tags.html>`__.

           

          Tags may only contain Unicode letters, digits, white space, or these symbols: ``_ . : / = + - @``.

          
          

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

            The key of a tag.

            
          

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

            The value of a tag.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`SFN.Client.exceptions.InvalidArn`

  
  *   :py:class:`SFN.Client.exceptions.ResourceNotFound`

  