Which combination of changes will produce multi-Region deployment that meets these requirements?
(Choose two.)
Deploy the SQS queue with the Lambda function to other Regions.
Subscribe the SNS topic in each Region to the SQS queue.
Subscribe the SQS queue in each Region to the SNS topic.
Configure the SQS queue to publish URLs to SNS topics in each Region.
Deploy the SNS topic and the Lambda function to other Regions.
Explanations:
Deploying the SQS queue and Lambda function to other Regions allows URLs to be processed locally in each Region.
SNS topics cannot directly subscribe to SQS queues across Regions; this setup would not enable multi-Region processing.
Subscribing each Region’s SQS queue to the SNS topic in the original Region enables cross-Region message distribution.
Configuring SQS to publish to SNS topics is not supported, as SQS cannot directly publish messages to SNS.
Deploying the SNS topic to other Regions is unnecessary since cross-Region subscriptions can distribute messages.