【发布时间】:2022-11-22 04:43:39
【问题描述】:
import boto3
client = boto3.client('cognito-idp')
def lambda_handler():
response = client.list_users(UserPoolId='ap-south-1_w9By25vrR',AttributesToGet=['email','name'])
return response
我正在获取所有元数据字典的输出,但我只想要名称,仅邮件
【问题讨论】:
标签: amazon-web-services aws-lambda amazon-cognito