Skip to main content

identity_notification_attributes

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

Overview

Nameidentity_notification_attributes
TypeResource
Idaws.ses.identity_notification_attributes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
notification_attributesstringA map of Identity to IdentityNotificationAttributes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_identity_notification_attributesselectIdentities, regionGiven a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes. This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time. For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

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. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com, example.com, arn:aws:ses:us-east-1:123456789012:identity/example.com.
regionstringAWS region (default: us-east-1)

SELECT examples

Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes. This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time. For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.

SELECT
notification_attributes
FROM aws.ses.identity_notification_attributes
WHERE Identities = '{{ Identities }}' -- required
AND region = '{{ region }}' -- required
;