:doc:`RDS <../../rds>` / Client / remove_tags_from_resource

*************************
remove_tags_from_resource
*************************



.. py:method:: RDS.Client.remove_tags_from_resource(**kwargs)

  

  Removes metadata tags from an Amazon RDS resource.

   

  For an overview on tagging an Amazon RDS resource, see `Tagging Amazon RDS Resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`__ in the *Amazon RDS User Guide* or `Tagging Amazon Aurora and Amazon RDS Resources <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html>`__ in the *Amazon Aurora User Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveTagsFromResource>`_  


  **Request Syntax**
  ::

    response = client.remove_tags_from_resource(
        ResourceName='string',
        TagKeys=[
            'string',
        ]
    )
    
  :type ResourceName: string
  :param ResourceName: **[REQUIRED]** 

    The Amazon RDS resource that the tags are removed from. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see `Constructing an ARN for Amazon RDS <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing>`__ in the *Amazon RDS User Guide.*

    

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

    The tag key (name) of the tag to be removed.

    

  
    - *(string) --* 

    

  
  :returns: None
  **Exceptions**
  
  *   :py:class:`RDS.Client.exceptions.DBProxyNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBSnapshotTenantDatabaseNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.IntegrationNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.TenantDatabaseNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.BlueGreenDeploymentNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBSnapshotNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBProxyEndpointNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.InvalidDBClusterEndpointStateFault`

  
  *   :py:class:`RDS.Client.exceptions.InvalidDBInstanceStateFault`

  
  *   :py:class:`RDS.Client.exceptions.DBShardGroupNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBClusterNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBInstanceNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.DBProxyTargetGroupNotFoundFault`

  
  *   :py:class:`RDS.Client.exceptions.InvalidDBClusterStateFault`

  

  **Examples**

  This example removes the specified tag associated with the specified DB option group.
  ::

    response = client.remove_tags_from_resource(
        ResourceName='arn:aws:rds:us-east-1:992648334831:og:mydboptiongroup',
        TagKeys=[
            'MyKey',
        ],
    )
    
    print(response)

  
  Expected Output:
  ::

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

  