Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.
// Ensure that your message contains event.request.codeParameter event.request.usernameParameter. This is the placeholder for the code and username that will be sent to your user.
event.response.smsMessage=
"Welcome to the service. Your user name is "+
event.request.usernameParameter+
" Your temporary password is "+
event.request.codeParameter;
event.response.emailSubject="Welcome to the service";