AWS - SNS and SQS
Given this AWS SDK code snippet subscribing an HTTP endpoint, what will be the subscription status immediately after the call?
response = sns_client.subscribe(TopicArn='arn:aws:sns:us-east-1:123456789012:MyTopic', Protocol='http', Endpoint='http://example.com/endpoint')
