identity_mail_from_domain_attributes
Creates, updates, deletes, gets or lists an identity_mail_from_domain_attributes resource.
Overview
| Name | identity_mail_from_domain_attributes |
| Type | Resource |
| Id | aws.ses.identity_mail_from_domain_attributes |
Fields
The following fields are returned by SELECT queries:
- get_identity_mail_from_domain_attributes
| Name | Datatype | Description |
|---|---|---|
mail_from_domain_attributes | string | A map of identities to custom MAIL FROM attributes. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_identity_mail_from_domain_attributes | select | Identities, region | Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains). This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time. |
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 |
|---|---|---|
Identities | array | A list of one or more identities. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_identity_mail_from_domain_attributes
Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains). This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.
SELECT
mail_from_domain_attributes
FROM aws.ses.identity_mail_from_domain_attributes
WHERE Identities = '{{ Identities }}' -- required
AND region = '{{ region }}' -- required
;