Class: Aws::SESV2::Types::ContactListDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ContactListDestination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
An object that contains details about the action of a contact list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contact_list_import_action ⇒ String
>The type of action to perform on the addresses.
-
#contact_list_name ⇒ String
The name of the contact list.
Instance Attribute Details
#contact_list_import_action ⇒ String
>The type of action to perform on the addresses. The following are the possible values:
-
PUT: add the addresses to the contact list. If the record already exists, it will override it with the new value.
-
DELETE: remove the addresses from the contact list.
631 632 633 634 635 636 |
# File 'lib/aws-sdk-sesv2/types.rb', line 631 class ContactListDestination < Struct.new( :contact_list_name, :contact_list_import_action) SENSITIVE = [] include Aws::Structure end |
#contact_list_name ⇒ String
The name of the contact list.
631 632 633 634 635 636 |
# File 'lib/aws-sdk-sesv2/types.rb', line 631 class ContactListDestination < Struct.new( :contact_list_name, :contact_list_import_action) SENSITIVE = [] include Aws::Structure end |