Class: Aws::SESV2::Types::TopicPreference
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::TopicPreference
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
The contact's preference for being opted-in to or opted-out of a topic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subscription_status ⇒ String
The contact's subscription status to a topic which is either
OPT_IN
orOPT_OUT
. -
#topic_name ⇒ String
The name of the topic.
Instance Attribute Details
#subscription_status ⇒ String
The contact's subscription status to a topic which is either
OPT_IN
or OPT_OUT
.
7592 7593 7594 7595 7596 7597 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7592 class TopicPreference < Struct.new( :topic_name, :subscription_status) SENSITIVE = [] include Aws::Structure end |
#topic_name ⇒ String
The name of the topic.
7592 7593 7594 7595 7596 7597 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7592 class TopicPreference < Struct.new( :topic_name, :subscription_status) SENSITIVE = [] include Aws::Structure end |