Skip to main content

email_addresses

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

Overview

Nameemail_addresses
TypeResource
Idaws.connect.email_addresses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
approximate_total_countinteger (int64)The total number of email addresses which matched your search query.
email_addressesarrayList of email addresses matching SearchFilter and SearchCriteria
next_tokenstringIf there are additional results, this is the token for the next set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_email_addressesselectregionSearches 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;