contact_flow_module_aliases
Creates, updates, deletes, gets or lists a contact_flow_module_aliases resource.
Overview
| Name | contact_flow_module_aliases |
| Type | Resource |
| Id | aws.connect.contact_flow_module_aliases |
Fields
The following fields are returned by SELECT queries:
- list_contact_flow_module_aliases
| Name | Datatype | Description |
|---|---|---|
alias_description | string | The description of the alias. (pattern: <code>.\S.</code>) |
alias_id | string | The identifier of the alias. |
alias_name | string | The name of the alias. (pattern: <code>.\S.</code>) |
arn | string | The Amazon Resource Name (ARN) of the flow module alias. |
last_modified_time | string (date-time) | The timestamp when this resource was last modified. |
version | integer (int64) | The version of the flow module. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_contact_flow_module_aliases | select | instance_id, contact_flow_module_id, region | nextToken, maxResults | Lists 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.
| Name | Datatype | Description |
|---|---|---|
contact_flow_module_id | string | The identifier of the flow module. |
instance_id | string | The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return per page. |
nextToken | string | The 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
- list_contact_flow_module_aliases
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 }}'
;