Skip to main content

identity_mail_from_domain_attributes

Creates, updates, deletes, gets or lists an identity_mail_from_domain_attributes resource.

Overview

Nameidentity_mail_from_domain_attributes
TypeResource
Idaws.ses.identity_mail_from_domain_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
mail_from_domain_attributesstringA map of identities to custom MAIL FROM attributes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_identity_mail_from_domain_attributesselectIdentities, regionReturns 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.

NameDatatypeDescription
IdentitiesarrayA list of one or more identities.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;