Skip to main content

channels_associated_with_channel_flows

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

Overview

Namechannels_associated_with_channel_flows
TypeResource
Idaws.chime_sdk_messaging.channels_associated_with_channel_flows

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
channelsarrayThe information about each channel.
next_tokenstringThe token passed by previous API calls until all requested channels are returned. (pattern: <code>.*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_channels_associated_with_channel_flowselectchannel-flow-arn, regionmax-results, next-tokenLists all channels associated with a specified channel flow. You can associate a channel flow with multiple channels, but you can only associate a channel with one channel flow. This is a developer API.

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
channel-flow-arnstringThe ARN of the channel flow.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of channels that you want to return.
next-tokenstringThe token passed by previous API calls until all requested channels are returned.

SELECT examples

Lists all channels associated with a specified channel flow. You can associate a channel flow with multiple channels, but you can only associate a channel with one channel flow. This is a developer API.

SELECT
channels,
next_token
FROM aws.chime_sdk_messaging.channels_associated_with_channel_flows
WHERE `channel-flow-arn` = '{{ channel-flow-arn }}' -- required
AND region = '{{ region }}' -- required
AND `max-results` = '{{ max-results }}'
AND `next-token` = '{{ next-token }}'
;