Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 859 Bytes

README_Cognito_UserPools_PostConfirmation.md

File metadata and controls

25 lines (18 loc) · 859 Bytes

Sample Function

The following is a sample Lambda function that receives Amazon Cognito User Pools post-confirmation event as an input and writes some of the record data to CloudWatch Logs. (Note that by default anything written to Console will be logged as CloudWatch Logs events.)

Please see instructions for setting up the Cognito triggers at https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html .

package main

import (
    "fmt"

    "github.com/aws/aws-lambda-go/lambda"
    "github.com/aws/aws-lambda-go/events"
)

func handler(event events.CognitoEventUserPoolsPostConfirmation) (events.CognitoEventUserPoolsPostConfirmation, error) {
    fmt.Printf("PostConfirmation for user: %s\n", event.UserName)
    return event, nil
}

func main() {
  lambda.Start(handler)
}