Skip to content

AWS SNS Simple Notification Service interface for Julia

License

Notifications You must be signed in to change notification settings

samoconnor/AWSSNS.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWSSNS

AWS SNS Interface for Julia

Build Status

Documentation

using AWSSNS
using AWSSQS

aws = AWSCore.aws_config()

send_sms(aws, "+61123456789", "Hello")

sns_create_topic(aws, "my-topic")

q = sqs_get_queue(aws, "my-queue")
sns_subscribe_sqs(aws, "my-topic", q; raw = true)

sns_publish(aws, "my-topic", "Hello!")

m = sqs_receive_message(q)
println(m["message"])
sqs_delete_message(q, m)