Awesome-Python-Scripts/aws-sns-text/aws-sns-text.py
2020-01-07 16:44:02 -06:00

26 lines
525 B
Python

#Send a text using AWS sns
import boto3
#Retrieve information from the user
key_ID = raw_input("Enter AWS key ID: ")
key_secret = raw_input("Enter AWS key secret: ")
region = raw_input("Enter AWS region: ")
phone = raw_input("Enter phone number: ")
message = raw_input("Enter message: ")
#create the client
client = boto3.client(
"sns",
aws_access_key_id=key_ID,
aws_secret_access_key=key_secret,
region_name=region
)
# Send your sms message.
client.publish(
PhoneNumber=phone,
Message=message
)