I am trying to implement an auto-confirm mechanism in AWS, I'm getting an error due to the Lambda response. I can't find the correct return type in the docs.
Lambda:
exports.handler = (event, context, callback) => {
event.response.autoConfirmUser = true;
context.succeed(event.response);
};
Exception:
Unrecognizable lambda output (Service: AWSCognitoIdentityProviderService; Status Code: 400; Error Code: InvalidLambdaResponseException; Request ID: 5c7a2436-0515-11e7-b971-41a89adf53ea)