SuppressionReasons

class aws_cdk.aws_ses.SuppressionReasons(value)

Bases: Enum

Reasons for which recipient email addresses should be automatically added to your account’s suppression list.

ExampleMetadata:

infused

Example:

# my_pool: ses.IDedicatedIpPool


ses.ConfigurationSet(self, "ConfigurationSet",
    custom_tracking_redirect_domain="track.cdk.dev",
    suppression_reasons=ses.SuppressionReasons.COMPLAINTS_ONLY,
    tls_policy=ses.ConfigurationSetTlsPolicy.REQUIRE,
    dedicated_ip_pool=my_pool
)

Attributes

BOUNCES_AND_COMPLAINTS

Bounces and complaints.

BOUNCES_ONLY

Bounces only.

COMPLAINTS_ONLY

Complaints only.