identity_notification_attributes
Creates, updates, deletes, gets or lists an identity_notification_attributes resource.
Overview
| Name | identity_notification_attributes |
| Type | Resource |
| Id | aws.ses.identity_notification_attributes |
Fields
The following fields are returned by SELECT queries:
- get_identity_notification_attributes
| Name | Datatype | Description |
|---|---|---|
notification_attributes | string | A map of Identity to IdentityNotificationAttributes. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_identity_notification_attributes | select | Identities, region | 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. |
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. 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. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_identity_notification_attributes
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
;