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

WriteJourneyRequest

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

Specifies the configuration and other settings for a journey.

interface WriteJourneyRequest {
Activities?: {
[key: string]: Activity | null | undefined;
}
| null;
ClosedDays?: ClosedDays | null;
CreationDate?: string | null;
JourneyChannelSettings?: JourneyChannelSettings | null;
LastModifiedDate?: string | null;
Limits?: JourneyLimits | null;
LocalTime?: boolean | null;
Name: string;
OpenHours?: OpenHours | null;
QuietTime?: QuietTime | null;
RefreshFrequency?: string | null;
RefreshOnSegmentUpdate?: boolean | null;
Schedule?: JourneySchedule | null;
SendingSchedule?: boolean | null;
StartActivity?: string | null;
StartCondition?: StartCondition | null;
State?: State | null;
WaitForQuietTime?: boolean | null;
}

§Properties

§
Activities?: {
[key: string]: Activity | null | undefined;
}
| null
[src]

A map that contains a set of Activity objects, one object for each activity in the journey. For each Activity object, the key is the unique identifier (string) for an activity and the value is the settings for the activity. An activity identifier can contain a maximum of 100 characters. The characters must be alphanumeric characters.

§
ClosedDays?: ClosedDays | null
[src]

The time when journey will stop sending messages. QuietTime should be configured first and SendingSchedule should be set to true.

§
CreationDate?: string | null
[src]

The date, in ISO 8601 format, when the journey was created.

§
JourneyChannelSettings?: JourneyChannelSettings | null
[src]

The channel-specific configurations for the journey.

§
LastModifiedDate?: string | null
[src]

The date, in ISO 8601 format, when the journey was last modified.

§
Limits?: JourneyLimits | null
[src]

The messaging and entry limits for the journey.

§
LocalTime?: boolean | null
[src]

Specifies whether the journey's scheduled start and end times use each participant's local time. To base the schedule on each participant's local time, set this value to true.

§
Name: string
[src]

The name of the journey. A journey name can contain a maximum of 150 characters. The characters can be alphanumeric characters or symbols, such as underscores (_) or hyphens (-). A journey name can't contain any spaces.

§
OpenHours?: OpenHours | null
[src]

The time when journey allow to send messages. QuietTime should be configured first and SendingSchedule should be set to true.

§
QuietTime?: QuietTime | null
[src]

The quiet time settings for the journey. Quiet time is a specific time range when a journey doesn't send messages to participants, if all the following conditions are met:

  • The EndpointDemographic.Timezone property of the endpoint for the participant is set to a valid value.
  • The current time in the participant's time zone is later than or equal to the time specified by the QuietTime.Start property for the journey.
  • The current time in the participant's time zone is earlier than or equal to the time specified by the QuietTime.End property for the journey.

If any of the preceding conditions isn't met, the participant will receive messages from the journey, even if quiet time is enabled.

§
RefreshFrequency?: string | null
[src]

The frequency with which Amazon Pinpoint evaluates segment and event data for the journey, as a duration in ISO 8601 format.

§
RefreshOnSegmentUpdate?: boolean | null
[src]

Specifies whether a journey should be refreshed on segment update.

§
Schedule?: JourneySchedule | null
[src]

The schedule settings for the journey.

§
SendingSchedule?: boolean | null
[src]

Indicates if journey have Advance Quiet Time (OpenHours and ClosedDays). This flag should be set to true in order to allow (OpenHours and ClosedDays)

§
StartActivity?: string | null
[src]

The unique identifier for the first activity in the journey. The identifier for this activity can contain a maximum of 128 characters. The characters must be alphanumeric characters.

§
StartCondition?: StartCondition | null
[src]

The segment that defines which users are participants in the journey.

§
State?: State | null
[src]

TODO: Failed to render documentation: unhandled paragraph inner tag link

§
WaitForQuietTime?: boolean | null
[src]

Specifies whether endpoints in quiet hours should enter a wait till the end of their quiet hours.