如何使用 Boto3 删除指定 AWS Secrets 中的标签
问题陈述:使用 Python 中的 boto3 库删除 AWS Secret 中的标签。
解决此问题的方法/算法
步骤 1:导入 boto3 和 botocore 异常以处理异常。
步骤 2:secret_location 和 tags_list 是此函数所需的必需参数。tags_list 应为要取消标记的键列表。
步骤 3:使用 boto3 库创建 AWS 会话。确保在默认配置文件中提到了 region_name。如果未提及,则在创建会话时显式传递 region_name。
步骤 4:为 secretmanager 创建 AWS 客户端。
步骤 5:现在使用 untag_resource 函数并将参数 secret_location 作为 SecretId 和 tags_list 作为 TagKeys 传递。
步骤 6:它返回响应元数据并删除资源中的标签。
步骤 7:如果在删除标签时出现问题,请处理通用异常。
示例代码
使用以下代码删除标签:
import boto3 from botocore.exceptions import ClientError def remove_tags_in_resource(secret_location, tags_list) session = boto3.session.Session() client = session.client('secretmanager') try: response = client.untag_resource(SecretId= secret_location,TagKeys=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 = ["secret-test"] print(remove_tags_in_resource("secrets/aws",tags_dict))
输出
{'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}}
广告