email_address_insights
Creates, updates, deletes, gets or lists an email_address_insights resource.
Overview
| Name | email_address_insights |
| Type | Resource |
| Id | aws.sesv2.email_address_insights |
Fields
The following fields are returned by SELECT queries:
- get_email_address_insights
| Name | Datatype | Description |
|---|---|---|
evaluations | object | Specific validation checks performed on the email address. |
is_valid | object | Overall validity assessment with a confidence verdict. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_email_address_insights | select | region | Provides validation insights about a specific email address, including syntax validation, DNS record checks, mailbox existence, and other deliverability factors. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_email_address_insights
Provides validation insights about a specific email address, including syntax validation, DNS record checks, mailbox existence, and other deliverability factors.
SELECT
evaluations,
is_valid
FROM aws.sesv2.email_address_insights
WHERE region = '{{ region }}' -- required
;