使用 Boto3 描述侦听器规则计数

Describe listener rule count using Boto3

我需要列出侦听器规则计数,但我仍然得到 null 的输出,没有任何 error.my 完整的项目从在 elastic 上创建侦听器规则时收到电子邮件通知负载均衡器。

import json
import boto3

def lambda_handler(event, context):
    client = boto3.client('elbv2')
    response = client.describe_listeners(
    ListenerArns=[
        'arn:aws:elasticloadbalancing:ap-south-1:my_alb_listener',
    ],
)

print('response')

这是我的代码的输出

回应 空

响应为空,因为您的缩进不正确并且您没有从处理程序返回任何内容。应该是:

import json
import boto3

def lambda_handler(event, context):
    client = boto3.client('elbv2')
    response = client.describe_listeners(
    ListenerArns=[
        'arn:aws:elasticloadbalancing:ap-south-1:my_alb_listener',
      ],
    )

    return response