Question 419:
AWS Lambda functions are widely used in your company by different teams. There is a requirement to extend the Lambda functions to integrate with other tools for monitoring, observability and security such as AppDynamics, HashiCorp, Splunk, etc. With the integration, some additional code needs to be run during function initialization, invocation or shut down. Which of the following options can achieve the requirement by extending Lambda’s execution environment?
Answer options:
A.Deploy Lambda extensions through Lambda layers by adding the extensions in the Lambda .zip archives. B.Deploy the required tools in other dedicated Lambda functions and integrate existing Lambda functions with these dedicated Lambda functions. C.Extend Lambda function with CloudWatch event rules by configuring third-party Lambda functions to process events. D.Integrate the Lambda function with Amazon SQS and process the queue messages by Lambda extensions.