SNSトピック"handson-cli-sns-1st-topic"を削除します。
手順に必要な設定値を変数に格納をします。
リージョンを指定します。
環境変数の設定: export AWS_DEFAULT_REGION='ap-northeast-1'
環境変数の設定:
export AWS_DEFAULT_REGION='ap-northeast-1'
SNSトピック名を指定します。
変数の設定: SNS_TOPIC_NAME='handson-cli-sns-1st-topic'
変数の設定:
SNS_TOPIC_NAME='handson-cli-sns-1st-topic'
各変数に正しい設定値が格納されていることを確認します。
変数の確認: cat << END # 0. AWS_DEFAULT_REGION:"ap-northeast-1" AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION}" # 1. SNS_TOPIC_NAME:"handson-cli-sns-1st-topic" SNS_TOPIC_NAME="${SNS_TOPIC_NAME}" END
変数の確認:
cat << END # 0. AWS_DEFAULT_REGION:"ap-northeast-1" AWS_DEFAULT_REGION="${AWS_DEFAULT_REGION}" # 1. SNS_TOPIC_NAME:"handson-cli-sns-1st-topic" SNS_TOPIC_NAME="${SNS_TOPIC_NAME}" END
下段の変数が入っていない、もしくは上段と同等の値が入っていない場合は、それぞれの手順番号に戻って変数の設定を行います。
SNSトピックのARNを取得します。
変数の設定: SNS_TOPIC_ARN=$( \ aws sns list-topics \ --query "Topics[?contains(TopicArn, \`${SNS_TOPIC_NAME}\`)].TopicArn" \ --output text \ ) \ && echo ${SNS_TOPIC_ARN} 結果(例): arn:aws:sns:ap-northeast-1:XXXXXXXXXXXX:handson-cli-sns-1st-topic
SNS_TOPIC_ARN=$( \ aws sns list-topics \ --query "Topics[?contains(TopicArn, \`${SNS_TOPIC_NAME}\`)].TopicArn" \ --output text \ ) \ && echo ${SNS_TOPIC_ARN}
結果(例):
arn:aws:sns:ap-northeast-1:XXXXXXXXXXXX:handson-cli-sns-1st-topic
SNSトピックを削除します。
変数の確認: cat << END # SNS_TOPIC_ARN:"arn:aws:sns:ap-northeast-1:XXXXXXXXXXXX:handson-cli-sns-1st-topic" SNS_TOPIC_ARN="${SNS_TOPIC_ARN}" END コマンド: aws sns delete-topic \ --topic-arn ${SNS_TOPIC_ARN} 結果(例): (出力なし)
cat << END # SNS_TOPIC_ARN:"arn:aws:sns:ap-northeast-1:XXXXXXXXXXXX:handson-cli-sns-1st-topic" SNS_TOPIC_ARN="${SNS_TOPIC_ARN}" END
コマンド:
aws sns delete-topic \ --topic-arn ${SNS_TOPIC_ARN}
(出力なし)
「SNSトピック"handson-cli-sns-1st-topic"が存在しない。」ことを確認します。
コマンド: aws sns list-topics \ --query "Topics[?contains(TopicArn, \`${SNS_TOPIC_NAME}\`)].TopicArn" \ --output text 結果(例): (出力なし)
aws sns list-topics \ --query "Topics[?contains(TopicArn, \`${SNS_TOPIC_NAME}\`)].TopicArn" \ --output text
SNSダッシュボード( https://console.aws.amazon.com/sns/home )にアクセスします。
右上のリージョンメニューから"東京 "を選択します。
左ペインの"トピック"をクリックします。
トピック一覧(画面)
検索欄にトピック名"handson-cli-sns-1st-topic"を入力します。
トピック名"handson-cli-sns-1st-topic"が存在しないことを確認します。