Creazione di un abbonamento in un argomento di Amazon SNS - AWS SDK per Ruby

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

Creazione di un abbonamento in un argomento di Amazon SNS

L'esempio seguente crea una sottoscrizione per l'argomento con l'ARN arn:aws:sns:us-west-2:123456789:MyGroovyTopic per un utente che ha l'indirizzo e-mail MyGroovyUser@MyGroovy.com nella us-west-2 regione e visualizza l'ARN risultante. Inizialmente il valore ARN è in attesa di conferma. Quando l'utente conferma il proprio indirizzo e-mail, questo valore diventa un vero ARN.

# Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # This file is licensed under the Apache License, Version 2.0 (the "License"). # You may not use this file except in compliance with the License. A copy of the # License is located at # # http://aws.amazon.com/apache2.0/ # # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS # OF ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. require 'aws-sdk-sns' # v2: require 'aws-sdk' sns = Aws::SNS::Resource.new(region: 'us-west-2') topic = sns.topic('arn:aws:sns:us-west-2:123456789:MyGroovyTopic') sub = topic.subscribe({ protocol: 'email', endpoint: 'MyGroovyUser@MyGroovy.com' }) puts sub.arn