Class: Aws::SESV2::Types::SuppressionListDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::SuppressionListDestination
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An object that contains details about the action of suppression list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#suppression_list_import_action ⇒ String
The type of action to perform on the address.
Instance Attribute Details
#suppression_list_import_action ⇒ String
The type of action to perform on the address. The following are possible values:
PUT: add the addresses to the suppression list. If the record already exists, it will override it with the new value.
DELETE: remove the addresses from the suppression list.
6782 6783 6784 6785 6786 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6782 class SuppressionListDestination < Struct.new( :suppression_list_import_action) SENSITIVE = [] include Aws::Structure end |