Amazon web services – Access AWS SES from a lambda function that is inside a VPC
I have already set up the necessary VPC endpoints as stated here. However, when inside of my Lambda function (using Node.js) I do: const sesClient = new SESClient({ }); ... await sesClient.send(sendEmailCommand); it times out after 5 minutes. Should a…