ablog

不器用で落着きのない技術者のメモ

2017-06-25から1日間の記事一覧

AWS Simple Notification Service (SNS) を使ってみる

AWS

トピックを作成する $ aws sns create-topic --name topic1 { "TopicArn": "arn:aws:sns:ap-northeast-1:<ユーザーID>:topic1" } トピックをリスト表示する $ aws sns list-topics { "Topics": [ (中略) { "TopicArn": "arn:aws:sns:ap-northeast-1:<ユー…

Amazon Simple Queue Service (SQS) を使ってみる (2)

AWS

Dead Letter キューを作成する $ cat sqs-dlq.json { "DelaySeconds":"10", "MessageRetentionPeriod":"1209600", "ReceiveMessageWaitTimeSeconds":"20", "VisibilityTimeout":"30" } $ aws sqs create-queue --queue-name DeadLetterQueue1 --attributes f…