Class: Aws::SESV2::Types::SuppressionListDestination

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#suppression_list_import_actionString

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.

Returns:

  • (String)


6701
6702
6703
6704
6705
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6701

class SuppressionListDestination < Struct.new(
  :suppression_list_import_action)
  SENSITIVE = []
  include Aws::Structure
end