Class: Aws::SES::Types::SNSDestination

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

Note:

When making an API call, you may pass SNSDestination data as a hash:

{
  topic_arn: "AmazonResourceName", # required
}

Contains the topic ARN associated with an Amazon Simple Notification Service (Amazon SNS) event destination.

Event destinations, such as Amazon SNS, are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Instance Attribute Summary collapse

Instance Attribute Details

#topic_arnString

The ARN of the Amazon SNS topic that email sending events will be published to. An example of an Amazon SNS topic ARN is ‘arn:aws:sns:us-west-2:123456789012:MyTopic`. For more information about Amazon SNS topics, see the [Amazon SNS Developer Guide].

[1]: docs.aws.amazon.com/sns/latest/dg/CreateTopic.html

Returns:

  • (String)


3751
3752
3753
3754
# File 'lib/aws-sdk-ses/types.rb', line 3751

class SNSDestination < Struct.new(
  :topic_arn)
  include Aws::Structure
end