bsmsapp/terraform/resources/lambda/lambdaTopicSNS/lambda_handler.py

17 lines
358 B
Python

import json
import boto3
def main(event, context):
client = boto3.client("sns")
client.create_topic(
Name=event['userName']
)
client.subscribe(
TopicArn='arn:aws:sns:us-east-1:025685231147:' + event['userName'],
Protocol='email',
Endpoint=event['request']['userAttributes']['email'],
)
return event