AutoValidationThreshold

class aws_cdk.aws_ses.AutoValidationThreshold(*values)

Bases: Enum

Confidence threshold used by SES Auto Validation to decide whether an outbound recipient address should be delivered to.

See:

https://docs.aws.amazon.com/ses/latest/dg/email-validation-auto.html

ExampleMetadata:

infused

Example:

ses.ConfigurationSet(self, "ConfigurationSet",
    auto_validation_threshold=ses.AutoValidationThreshold.HIGH
)

Attributes

HIGH

High confidence threshold.

Only allow addresses with high delivery likelihood.

MANAGED

Amazon SES manages the threshold automatically based on sending patterns and reputation.

MEDIUM

Medium confidence threshold.

Allow addresses with medium or higher delivery likelihood.