ConfigurationSetTlsPolicy

class aws_cdk.aws_ses.ConfigurationSetTlsPolicy(value)

Bases: Enum

TLS policy for a configuration set.

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

OPTIONAL

Messages can be delivered in plain text if a TLS connection can’t be established.

REQUIRE

Messages are only delivered if a TLS connection can be established.