I am trying to send sms notifications to my indian number from AWS SNS service. While searching about this on the internet many people have mentioned in their post that SMS service is available only for US based mobile phones.
But while reading the SNS documentation i found India in the supported region.
I created a topic in SNS and created SMS subscription for my mobile number but i didnt get the subscription link.
I don't know whether my understanding is correct. Any thoughts about this ?
i tried sending it through AWS Cli commands and boto3 as well.. I got success code but i didnt get any sms.. >>> sns.publish(PhoneNumber = number, Message='example text message' )
{'ResponseMetadata': {'HTTPStatusCode': 200, 'RequestId': '96d0fd74-0657-5dd6-ba6d-adb783076e26', 'HTTPHeaders': {'x-amzn-requestid': '96d0fd74-0657-5dd6-ba6d-adb783076e26', 'date': 'Thu, 08 Dec 2016 15:58:08 GMT', 'content-length': '294', 'content-type': 'text/xml'}}, u'MessageId': '2b7ed463-2698-53ff-8b85-84a0a3c8c00f'}
Thanks in Advance