Class: Aws::SESV2::Types::PutTenantSuppressionAttributesRequest

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

Overview

A request to configure the suppression list preferences for a tenant.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#suppressed_reasons ⇒ Array<String>

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

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

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

Returns:

  • (Array<String>)


7771
7772
7773
7774
7775
7776
7777
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7771

class PutTenantSuppressionAttributesRequest < Struct.new(
  :tenant_name,
  :suppressed_reasons,
  :suppression_scope)
  SENSITIVE = []
  include Aws::Structure
end

#suppression_scope ⇒ String

The suppression scope for the tenant. Specify TENANT to use the tenant's own suppression list, or ACCOUNT to use the account-level suppression list.

If you don't specify a suppression scope, the tenant defaults to ACCOUNT scope and uses the account-level suppression list.

Returns:

  • (String)


7771
7772
7773
7774
7775
7776
7777
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7771

class PutTenantSuppressionAttributesRequest < Struct.new(
  :tenant_name,
  :suppressed_reasons,
  :suppression_scope)
  SENSITIVE = []
  include Aws::Structure
end

#tenant_name ⇒ String

The name of the tenant to configure suppression list preferences for.

Returns:

  • (String)


7771
7772
7773
7774
7775
7776
7777
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7771

class PutTenantSuppressionAttributesRequest < Struct.new(
  :tenant_name,
  :suppressed_reasons,
  :suppression_scope)
  SENSITIVE = []
  include Aws::Structure
end