Class: Aws::SESV2::Types::Contact
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::Contact
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A contact is the end-user who is receiving the email.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_address ⇒ String
The contact’s email address.
-
#last_updated_timestamp ⇒ Time
A timestamp noting the last time the contact’s information was updated.
-
#topic_default_preferences ⇒ Array<Types::TopicPreference>
The default topic preferences applied to the contact.
-
#topic_preferences ⇒ Array<Types::TopicPreference>
The contact’s preference for being opted-in to or opted-out of a topic.
-
#unsubscribe_all ⇒ Boolean
A boolean value status noting if the contact is unsubscribed from all contact list topics.
Instance Attribute Details
#email_address ⇒ String
The contact’s email address.
583 584 585 586 587 588 589 590 591 |
# File 'lib/aws-sdk-sesv2/types.rb', line 583 class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#last_updated_timestamp ⇒ Time
A timestamp noting the last time the contact’s information was updated.
583 584 585 586 587 588 589 590 591 |
# File 'lib/aws-sdk-sesv2/types.rb', line 583 class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#topic_default_preferences ⇒ Array<Types::TopicPreference>
The default topic preferences applied to the contact.
583 584 585 586 587 588 589 590 591 |
# File 'lib/aws-sdk-sesv2/types.rb', line 583 class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#topic_preferences ⇒ Array<Types::TopicPreference>
The contact’s preference for being opted-in to or opted-out of a topic.
583 584 585 586 587 588 589 590 591 |
# File 'lib/aws-sdk-sesv2/types.rb', line 583 class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#unsubscribe_all ⇒ Boolean
A boolean value status noting if the contact is unsubscribed from all contact list topics.
583 584 585 586 587 588 589 590 591 |
# File 'lib/aws-sdk-sesv2/types.rb', line 583 class Contact < Struct.new( :email_address, :topic_preferences, :topic_default_preferences, :unsubscribe_all, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |