Class: Aws::SESV2::Types::PutConfigurationSetSuppressionOptionsRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

A request to change the account suppression list preferences for a specific configuration set.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set to change the suppression list preferences for.

Returns:

  • (String)


5518
5519
5520
5521
5522
5523
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5518

class PutConfigurationSetSuppressionOptionsRequest < Struct.new(
  :configuration_set_name,
  :suppressed_reasons)
  SENSITIVE = []
  include Aws::Structure
end

#suppressed_reasonsArray<String>

A list that contains the reasons that email addresses are automatically added to the suppression list for your account. This list can contain any or all of the following:

  • COMPLAINT – Amazon SES adds an email address to the suppression list for your account when a message sent to that address results in a complaint.

  • BOUNCE – Amazon SES adds an email address to the suppression list for your account when a message sent to that address results in a hard bounce.

Returns:

  • (Array<String>)


5518
5519
5520
5521
5522
5523
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 5518

class PutConfigurationSetSuppressionOptionsRequest < Struct.new(
  :configuration_set_name,
  :suppressed_reasons)
  SENSITIVE = []
  include Aws::Structure
end