Class: Aws::SESV2::Types::Topic
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::Topic
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
An interest group, theme, or label within a list. Lists can have multiple topics.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_subscription_status ⇒ String
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
-
#description ⇒ String
A description of what the topic is about, which the contact will see.
-
#display_name ⇒ String
The name of the topic the contact will see.
-
#topic_name ⇒ String
The name of the topic.
Instance Attribute Details
#default_subscription_status ⇒ String
The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
7011 7012 7013 7014 7015 7016 7017 7018 |
# File 'lib/aws-sdk-sesv2/types.rb', line 7011 class Topic < Struct.new( :topic_name, :display_name, :description, :default_subscription_status) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of what the topic is about, which the contact will see.
7011 7012 7013 7014 7015 7016 7017 7018 |
# File 'lib/aws-sdk-sesv2/types.rb', line 7011 class Topic < Struct.new( :topic_name, :display_name, :description, :default_subscription_status) SENSITIVE = [] include Aws::Structure end |