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

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

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#topic_arnString

The ARN of the Amazon SNS topic for email sending events. You can find the ARN of a topic by using the ListTopics Amazon SNS operation.

For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.

Returns:

  • (String)


3668
3669
3670
3671
3672
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 3668

class SNSDestination < Struct.new(
  :topic_arn)
  SENSITIVE = []
  include Aws::Structure
end