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.
      6982 6983 6984 6985 6986 6987 6988 6989  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6982 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.
      6982 6983 6984 6985 6986 6987 6988 6989  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6982 class Topic < Struct.new( :topic_name, :display_name, :description, :default_subscription_status) SENSITIVE = [] include Aws::Structure end  |