AWS - Lambda
Given this Python Lambda function code snippet using a layer for shared utilities:
What will happen if the Lambda function is invoked but the layer is not attached?
import shared_utils
def lambda_handler(event, context):
return shared_utils.process(event)What will happen if the Lambda function is invoked but the layer is not attached?
