DatabaseMigrationService / Client / remove_tags_from_resource
remove_tags_from_resource#
- DatabaseMigrationService.Client.remove_tags_from_resource(**kwargs)#
Removes metadata tags from an DMS resource, including replication instance, endpoint, subnet group, and migration task. For more information, see Tag data type description.
See also: AWS API Documentation
Request Syntax
response = client.remove_tags_from_resource( ResourceArn='string', TagKeys=[ 'string', ] )
- Parameters:
ResourceArn (string) –
[REQUIRED]
An DMS resource from which you want to remove tag(s). The value for this parameter is an Amazon Resource Name (ARN).
TagKeys (list) –
[REQUIRED]
The tag key (name) of the tag to be removed.
(string) –
- Return type:
dict
- Returns:
Response Syntax
{}
Response Structure
(dict) –
Exceptions
DatabaseMigrationService.Client.exceptions.ResourceNotFoundFault
DatabaseMigrationService.Client.exceptions.InvalidResourceStateFault
Examples
Removes metadata tags from an AWS DMS resource.
response = client.remove_tags_from_resource( ResourceArn='arn:aws:dms:us-east-1:123456789012:endpoint:ASXWXJZLNWNT5HTWCGV2BUJQ7E', TagKeys=[ ], ) print(response)
Expected Output:
{ 'ResponseMetadata': { '...': '...', }, }