AWS - Lambdas
Check AWS Version using Lambda
Create a lambda to log the aws version
const aws = require('aws-sdk');
exports.handler = async (event) => {
// TODO implement
console.log(aws.VERSION);
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
};
return response;
};