enum AutoValidationThreshold
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.AutoValidationThreshold |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#AutoValidationThreshold |
Java | software.amazon.awscdk.services.ses.AutoValidationThreshold |
Python | aws_cdk.aws_ses.AutoValidationThreshold |
TypeScript (source) | aws-cdk-lib » aws_ses » AutoValidationThreshold |
Confidence threshold used by SES Auto Validation to decide whether an outbound recipient address should be delivered to.
See also: https://docs.aws.amazon.com/ses/latest/dg/email-validation-auto.html
Example
new ses.ConfigurationSet(this, 'ConfigurationSet', {
autoValidationThreshold: ses.AutoValidationThreshold.HIGH,
});
Members
| Name | Description |
|---|---|
| MEDIUM | Medium confidence threshold. |
| HIGH | High confidence threshold. |
| 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.
HIGH
High confidence threshold.
Only allow addresses with high delivery likelihood.
MANAGED
Amazon SES manages the threshold automatically based on sending patterns and reputation.

.NET
Go
Java
Python
TypeScript (