如何使用 Boto3 获取 AWS 账户中所有触发器的列表


在本文中,我们将了解用户如何获取 AWS 账户中所有现有触发器的列表。

示例

获取 AWS Glue 数据目录中所有可用触发器的列表。

问题陈述:使用 Python 中的 boto3 库获取所有触发器的列表。

解决此问题的方法/算法

  • 步骤 1:导入 boto3botocore 异常以处理异常。

  • 步骤 2:此函数没有参数。

  • 步骤 3:使用 boto3 库创建 AWS 会话。确保在默认配置文件中提到了 region_name。如果未提及,则在创建会话时显式传递 region_name

  • 步骤 4:glue 创建 AWS 客户端。

  • 步骤 5:现在使用 list_triggers 函数。

  • 步骤 6:它返回 AWS Glue 数据目录中所有现有触发器的列表。如果没有触发器,则返回一个空字典。但是,此函数采用可选参数 Tags,以便用户可以筛选触发器并仅返回与标签关联的触发器。

  • 步骤 7:如果检查触发器时出现错误,则处理通用异常。

示例代码

以下代码获取所有触发器的列表:

import boto3
from botocore.exceptions import ClientError

def list_of_triggers()
   session = boto3.session.Session()
   glue_client = session.client('glue')
   try:
      triggers = glue_client.list_triggers()
      return triggers
   except ClientError as e:
      raise Exception("boto3 client error in list_of_triggers: " + e.__str__())
   except Exception as e:
      raise Exception("Unexpected error in list_of_triggers: " + e.__str__())
print(list_of_triggers())

输出

{'TriggerNames':
['data-etl-file-passed-to-splitter',
'file-passed-to-worker',
'file-trigger',
'test-daily-jobs',
'test-daily-jobs-copy'
],
'ResponseMetadata': {'RequestId': '8e95115b****************90', 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Sat, 27 Mar 2021 09:14:03 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '304', 'connection': 'keep-alive', 'x-amzn-requestid': '8e95115b*********************90'}, 'RetryAttempts': 0}}

更新于:2021年4月15日

386 次浏览

启动您的 职业生涯

通过完成课程获得认证

开始学习
广告