Class: Aws::SESV2::Types::SnsDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::SnsDestination
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to send notifications when certain email events occur.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to.
Instance Attribute Details
#topic_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon SNS topic to publish email events to. For more information about Amazon SNS topics, see the Amazon SNS Developer Guide.
7912 7913 7914 7915 7916 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7912 class SnsDestination < Struct.new( :topic_arn) SENSITIVE = [] include Aws::Structure end |