AWS - SNS and SQS
Given this AWS SNS subscription code snippet:
What happens when a message is published to this SNS topic?
sns.subscribe({
Protocol: 'lambda',
Endpoint: 'arn:aws:lambda:us-east-1:123456789012:function:ProcessMessage'
});What happens when a message is published to this SNS topic?
