Skip to main content

contact_flow_module_aliases

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

Overview

Namecontact_flow_module_aliases
TypeResource
Idaws.connect.contact_flow_module_aliases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
alias_descriptionstringThe description of the alias. (pattern: <code>.\S.</code>)
alias_idstringThe identifier of the alias.
alias_namestringThe name of the alias. (pattern: <code>.\S.</code>)
arnstringThe Amazon Resource Name (ARN) of the flow module alias.
last_modified_timestring (date-time)The timestamp when this resource was last modified.
versioninteger (int64)The version of the flow module.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_contact_flow_module_aliasesselectinstance_id, contact_flow_module_id, regionnextToken, maxResultsLists all aliases associated with a contact flow module, showing their current version mappings and metadata.

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
contact_flow_module_idstringThe identifier of the flow module.
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

Lists all aliases associated with a contact flow module, showing their current version mappings and metadata.

SELECT
alias_description,
alias_id,
alias_name,
arn,
last_modified_time,
version
FROM aws.connect.contact_flow_module_aliases
WHERE instance_id = '{{ instance_id }}' -- required
AND contact_flow_module_id = '{{ contact_flow_module_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;