Skip to main content

members_of_address_lists

Creates, updates, deletes, gets or lists a members_of_address_lists resource.

Overview

Namemembers_of_address_lists
TypeResource
Idaws.mailmanager.members_of_address_lists

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
addressstringThe email or domain that constitutes the address.
created_timestampstring (date-time)The timestamp of when the address was added to the address list.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_members_of_address_listselectregionLists members of an address list.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Lists members of an address list.

SELECT
address,
created_timestamp
FROM aws.mailmanager.members_of_address_lists
WHERE region = '{{ region }}' -- required
;