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
Note:
When making an API call, you may pass SuppressionListDestination data as a hash:
{
suppression_list_import_action: "DELETE", # required, accepts DELETE, PUT
}
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 that you want to perform on the address.
Instance Attribute Details
#suppression_list_import_action ⇒ String
The type of action that you want to perform on the address. Acceptable 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.
6391 6392 6393 6394 6395 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6391 class SuppressionListDestination < Struct.new( :suppression_list_import_action) SENSITIVE = [] include Aws::Structure end |