Boto-2.38/Boto3 进行的以下 API 调用的每秒请求数和平均响应时间(往返)是 多少?
conn=EC2(aws_access_key,aws_secret_key_id)
Q1:images=conn.get_all_images(owners=['self'])
Q2:instances=conn.get_only_instances()
Q3:snapshots=conn.get_all_snapshots(owner='self')
Q4:snapshot=conn.create_snapshot(volume_id, description)
Q5:instance=conn.launch_instance(<params>)
Q6:image=conn.create_image(instance_id,name,description)
Q7:conn.deregister_image(image_id=image_id)
Q8:volumes=conn.get_all_volumes()