Display messages
In-app messages are displayed when an In-App Messaging or analytics event is sent and matches the criteria set forth by your active In-App Messaging campaigns.
Analytics event
Now that messages have been synced to your users’ devices, Amplify In-App Messaging will allow you to start displaying them with Amplify Analytics events with no additional integration steps. Any events you record or are already recording using the Analytics' record
API are automatically picked up and processed by In-App Messaging. If the event matches the attributes and criteria defined in an in-app message, that message will be displayed.
import { record } from 'aws-amplify/analytics';
const event = { name: 'first_event', attributes: { color: 'red' }, metrics: { quantity: 10 }};
record(event);
If the event name, attributes, and metrics match those set forth by one of your In-App Messaging campaigns, you should see the in-app message displayed in your app.
In-App Messaging event
In addition to or instead of Amplify Analytics events, you can also dispatch In-App Messaging events to trigger an in-app message display programmatically.
import { dispatchEvent } from 'aws-amplify/in-app-messaging';
const event = { name: 'first_event', attributes: { color: 'red' }, metrics: { quantity: 10 }};
dispatchEvent(event);
If the event name, attributes, and metrics match those set forth by one of your In-App Messaging campaigns, you should see the in-app message displayed in your app.