:doc:`ElasticLoadBalancing <../../elb>` / Client / remove_tags

***********
remove_tags
***********



.. py:method:: ElasticLoadBalancing.Client.remove_tags(**kwargs)

  

  Removes one or more tags from the specified load balancer.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/RemoveTags>`_  


  **Request Syntax**
  ::

    response = client.remove_tags(
        LoadBalancerNames=[
            'string',
        ],
        Tags=[
            {
                'Key': 'string'
            },
        ]
    )
    
  :type LoadBalancerNames: list
  :param LoadBalancerNames: **[REQUIRED]** 

    The name of the load balancer. You can specify a maximum of one load balancer name.

    

  
    - *(string) --* 

    

  :type Tags: list
  :param Tags: **[REQUIRED]** 

    The list of tag keys to remove.

    

  
    - *(dict) --* 

      The key of a tag.

      

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

        The name of the key.

        

      
    

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

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 

      Contains the output of RemoveTags.

      
  
  **Exceptions**
  
  *   :py:class:`ElasticLoadBalancing.Client.exceptions.AccessPointNotFoundException`

  

  **Examples**

  This example removes the specified tag from the specified load balancer.
  ::

    response = client.remove_tags(
        LoadBalancerNames=[
            'my-load-balancer',
        ],
        Tags=[
            {
                'Key': 'project',
            },
        ],
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'ResponseMetadata': {
            '...': '...',
        },
    }

  