Skip to main content

channels

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

Overview

Namechannels
TypeResource
Idaws.pinpoint.channels

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
channelsobjectA map that contains a multipart response for each channel. For each item in this object, the ChannelType is the key and the Channel is the value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_channelsselectapplication-id, regionRetrieves information about the history and status of each channel for an application.

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
application-idstringThe unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves information about the history and status of each channel for an application.

SELECT
channels
FROM aws.pinpoint.channels
WHERE `application-id` = '{{ application-id }}' -- required
AND region = '{{ region }}' -- required
;