channels
Creates, updates, deletes, gets or lists a channels resource.
Overview
| Name | channels |
| Type | Resource |
| Id | aws.pinpoint.channels |
Fields
The following fields are returned by SELECT queries:
- get_channels
| Name | Datatype | Description |
|---|---|---|
channels | object | A 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_channels | select | application-id, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
application-id | string | The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_channels
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
;