Class: Aws::SES::Types::SNSDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::SNSDestination
- Includes:
- Aws::Structure
- Defined in:
- 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].
[1]: docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_arn ⇒ String
The ARN of the Amazon SNS topic for email sending events.
Instance Attribute Details
#topic_arn ⇒ String
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].
[1]: docs.aws.amazon.com/sns/latest/api/API_ListTopics.html [2]: docs.aws.amazon.com/sns/latest/dg/CreateTopic.html
3692 3693 3694 3695 3696 |
# File 'lib/aws-sdk-ses/types.rb', line 3692 class SNSDestination < Struct.new( :topic_arn) SENSITIVE = [] include Aws::Structure end |