如何使用 Boto3 从 AWS Glue 资源中移除标签
在本文中,我们将学习如何从 AWS Glue 资源中移除标签。
示例
从 AWS Glue 数据库中移除标签“glue-db: tests”。
问题陈述:使用 Python 中的 boto3 库来移除 AWS Glue 资源中的标签。
解决此问题的步骤/算法
步骤 1:导入 **boto3** 和 **botocore** 异常来处理异常。
步骤 2:**resource_arn** 和 **tags_list** 是此函数所需的必备参数。
**resource_arn** 的格式应如下所示:
目录 | arn:aws:glue:region:account-id:catalog |
数据库 | arn:aws:glue:region:account-id:database/数据库名称 |
表 | arn:aws:glue:region:account-id:table/数据库名称/表名称 |
连接 | arn:aws:glue:region:account-id:connection/连接名称 |
爬虫 | arn:aws:glue:region:account-id:crawler/爬虫名称 |
作业 | arn:aws:glue:region:account-id:job/作业名称 |
触发器 | arn:aws:glue:region:account-id:trigger/触发器名称 |
开发端点 | arn:aws:glue:region:account-id:devEndpoint/开发端点名称 |
机器学习转换 | arn:aws:glue:region:account-id:mlTransform/转换ID |
**tags_list** 应为 ["key1","key2"...] 的格式。
步骤 3:使用 **boto3 库** 创建 AWS 会话。确保在默认配置文件中提到了 **region_name**。如果没有提到,则在创建会话时显式传递 **region_name**。
步骤 4:为 **glue** 创建 AWS 客户端。
步骤 5:现在使用 **untag_resource** 函数并将参数 **resource_arn** 作为 ResourceArn 和 **tags_list** 作为 TagsToRemove 传递。
步骤 6:它返回响应元数据并移除资源中的标签。
步骤 7:如果在移除标签时出现问题,则处理通用异常。
示例代码
使用以下代码移除标签:
import boto3 from botocore.exceptions import ClientError def remove_tags_in_resource(resource_arn, tags_list) session = boto3.session.Session() glue_client = session.client('glue') try: response = glue_client.untag_resource(ResourceArn= resource_arn,TagsToRemove=tags_list) return response except ClientError as e: raise Exception("boto3 client error in remove_tags_in_resource: " + e.__str__()) except Exception as e: raise Exception("Unexpected error in remove_tags_in_resource: " + e.__str__()) tags_dict = ["glue-db"] print(remove_tags_in_resource("arn:aws:glue:us-east-1:1122225*****88:database/test- db",tags_list))
输出
{'ResponseMetadata': {'RequestId': 'c9f418b0-***************-fb96', 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Fri, 02 Apr 2021 08:04:54 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '27', 'connection': 'keep-alive', 'x-amzn-requestid': 'c9f418b0-******************-fb96'}, 'RetryAttempts': 0}}
广告