Skip to main content

in_app_messages

Creates, updates, deletes, gets or lists an in_app_messages resource.

Overview

Namein_app_messages
TypeResource
Idaws.pinpoint.in_app_messages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
in_app_message_campaignsarrayList of targeted in-app message campaigns.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_in_app_messagesselectapplication-id, endpoint-id, regionRetrieves the in-app messages targeted for the provided endpoint ID.

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.
endpoint-idstringThe unique identifier for the endpoint.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the in-app messages targeted for the provided endpoint ID.

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