Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Activity

import type { Activity } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Specifies the configuration and other settings for an activity in a journey.

interface Activity {
ConditionalSplit?: ConditionalSplitActivity | null;
ContactCenter?: ContactCenterActivity | null;
CUSTOM?: CustomMessageActivity | null;
Description?: string | null;
EMAIL?: EmailMessageActivity | null;
Holdout?: HoldoutActivity | null;
MultiCondition?: MultiConditionalSplitActivity | null;
PUSH?: PushMessageActivity | null;
RandomSplit?: RandomSplitActivity | null;
SMS?: SMSMessageActivity | null;
Wait?: WaitActivity | null;
}

§Properties

§
ConditionalSplit?: ConditionalSplitActivity | null
[src]

The settings for a yes/no split activity. This type of activity sends participants down one of two paths in a journey, based on conditions that you specify.

§
ContactCenter?: ContactCenterActivity | null
[src]

The settings for a connect activity. This type of activity initiates a contact center call to participants.

§

The settings for a custom message activity. This type of activity calls an AWS Lambda function or web hook that sends messages to participants.

§
Description?: string | null
[src]

The custom description of the activity.

§

The settings for an email activity. This type of activity sends an email message to participants.

§
Holdout?: HoldoutActivity | null
[src]

The settings for a holdout activity. This type of activity stops a journey for a specified percentage of participants.

§
MultiCondition?: MultiConditionalSplitActivity | null
[src]

The settings for a multivariate split activity. This type of activity sends participants down one of as many as five paths (including a default Else path) in a journey, based on conditions that you specify.

§

The settings for a push notification activity. This type of activity sends a push notification to participants.

§
RandomSplit?: RandomSplitActivity | null
[src]

The settings for a random split activity. This type of activity randomly sends specified percentages of participants down one of as many as five paths in a journey, based on conditions that you specify.

§

The settings for an SMS activity. This type of activity sends a text message to participants.

§
Wait?: WaitActivity | null
[src]

The settings for a wait activity. This type of activity waits for a certain amount of time or until a specific date and time before moving participants to the next activity in a journey.