AWS

AWS SNS トピックの作成

 

python --version
Python 2.7.14

 

pip, AWS Cliのインストール

easy_install pip
pip install awscli

 

IAMユーザで設定しよう

aws configure

 

 

トピックの作成

aws sns create-topic --name myAlertTopic
{
    "TopicArn": "arn:aws:sns:ap-northeast-1:840155334575:myAlertTopic"
}

 

サブスクライブ作成

aws sns subscribe --topic-arn arn:aws:sns:ap-northeast-1:840155334575:myAlertTopic --protocol email --notification-endpoint hogeuser@example.com
{
    "SubscriptionArn": "pending confirmation"
}

 

パブリッシュ作成

aws sns publish --topic-arn "arn:aws:sns:ap-northeast-1:840155334575:myAlertTopic" --message "TEST daYO!"

 

 

 

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)