email_addresses
Creates, updates, deletes, gets or lists an email_addresses resource.
Overview
| Name | email_addresses |
| Type | Resource |
| Id | aws.connect.email_addresses |
Fields
The following fields are returned by SELECT queries:
- search_email_addresses
| Name | Datatype | Description |
|---|---|---|
approximate_total_count | integer (int64) | The total number of email addresses which matched your search query. |
email_addresses | array | List of email addresses matching SearchFilter and SearchCriteria |
next_token | string | If there are additional results, this is the token for the next set of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_email_addresses | select | region | Searches email address in an instance, with optional filtering. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- search_email_addresses
Searches email address in an instance, with optional filtering.
SELECT
approximate_total_count,
email_addresses,
next_token
FROM aws.connect.email_addresses
WHERE region = '{{ region }}' -- required
;