Skip to main content

associated_contacts

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

Overview

Nameassociated_contacts
TypeResource
Idaws.connect.associated_contacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contact_summary_listarrayList of the contact summary for all the contacts in contact tree associated with unique identifier.
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
list_associated_contactsselectinstance_id, contactId, regionmaxResults, nextTokenProvides information about contact tree, a list of associated contacts with a unique identifier.

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
contactIdstringThe identifier of the contact in this instance of Connect Customer.
instance_idstringThe identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return per page.
nextTokenstringThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

SELECT examples

Provides information about contact tree, a list of associated contacts with a unique identifier.

SELECT
contact_summary_list,
next_token
FROM aws.connect.associated_contacts
WHERE instance_id = '{{ instance_id }}' -- required
AND contactId = '{{ contactId }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;