如何使用Boto3通过AWS Glue中存在的安全配置进行分页

在本文中,我们将了解如何通过AWS Glue中存在的安全配置进行分页。

示例

问题陈述:使用Python中的boto3库在您的账户中创建的AWS Glue数据目录中通过安全配置进行分页

解决这个问题的方法/算法

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

  • 步骤2:max_itemspage_sizestarting_token是此函数的可选参数。

    • max_items表示要返回的记录总数。如果可用记录数> max_items,则将在响应中提供NextToken以恢复分页。

    • page_size表示每个页面的大小。

    • starting_token帮助进行分页,并使用上一个响应中的NextToken

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

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

  • 步骤5:使用get_security_configurations创建一个分页程序对象,其中包含所有搜寻器的详细信息

  • 第6步:调用分页函数,并将max_itemspage_sizestarting_token传递为PaginationConfig

  • 步骤7:返回基于max_sizepage_size的记录数。

  • 步骤8:如果在分页时出了点问题,则处理通用异常。

示例代码

使用以下代码对用户帐户中创建的所有安全配置进行分页-

import boto3
frombotocore.exceptionsimport ClientError

def paginate_through_security_configuration(max_items=None:int,page_size=None:int, starting_token=None:string):
   session = boto3.session.Session()
   glue_client = session.client('glue')
   try:
   paginator = glue_client.get_paginator('get_security_configuration')
      response = paginator.paginate(PaginationConfig={
         'MaxItems':max_items,
         'PageSize':page_size,
         'StartingToken':starting_token}
      )
   return response
   except ClientError as e:
      raise Exception("boto3 client error in paginate_through_security_configuration: " + e.__str__())
   except Exception as e:
      raise Exception("Unexpected error in paginate_through_security_configuration: " + e.__str__())
a = paginate_through_security_configuration(2,5)
print(*a)

输出结果

{'SecurityConfigurations': [
{'Name': 'test-sc', 'CreatedTimeStamp': datetime.datetime(2020, 9, 24, 1, 53, 21, 265000, tzinfo=tzlocal()), 'EncryptionConfiguration': {'S3Encryption': [{'S3EncryptionMode': 'SSE-KMS', 'KmsKeyArn': 'arn:aws:kms:us-east-1:*************:key/***************'}]}},
{'Name': 'port-sc', 'CreatedTimeStamp': datetime.datetime(2020, 11, 6, 0, 38, 3, 753000, tzinfo=tzlocal()), 'EncryptionConfiguration': {'S3Encryption': [{'S3EncryptionMode': 'SSE-KMS', 'KmsKeyArn': 'arn:aws:kms:us-east-1:********:key/***************'}]}}],
'NextToken': '',
'ResponseMetadata': {'RequestId': **********, 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Fri, 02 Apr 2021 13:19:57 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '826', 'connection': 'keep-alive', 'x-amzn-requestid': *********}, 'RetryAttempts': 0}}