Class: Aws::SESV2::Types::TenantSuppressionAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::TenantSuppressionAttributes
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An object that contains the suppression list preferences for a tenant.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#suppressed_reasons ⇒ Array<String>
A list that contains the reasons that email addresses are automatically added to the suppression list for the tenant.
-
#suppression_scope ⇒ String
The suppression scope for the tenant.
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.
8762 8763 8764 8765 8766 8767 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 8762 class TenantSuppressionAttributes < Struct.new( :suppressed_reasons, :suppression_scope) SENSITIVE = [] include Aws::Structure end |
#suppression_scope ⇒ String
The suppression scope for the tenant. Can be one of the following:
TENANT– The tenant uses its own suppression list.ACCOUNT– The tenant uses the account-level suppression list.
ACCOUNT scope and uses the account-level suppression list.
8762 8763 8764 8765 8766 8767 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 8762 class TenantSuppressionAttributes < Struct.new( :suppressed_reasons, :suppression_scope) SENSITIVE = [] include Aws::Structure end |