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

JourneyLimits

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

Specifies limits on the messages that a journey can send and the number of times participants can enter a journey.

interface JourneyLimits {
DailyCap?: number | null;
EndpointReentryCap?: number | null;
EndpointReentryInterval?: string | null;
MessagesPerSecond?: number | null;
}

§Properties

§
DailyCap?: number | null
[src]

The maximum number of messages that the journey can send to a single participant during a 24-hour period. The maximum value is 100.

§
EndpointReentryCap?: number | null
[src]

The maximum number of times that a participant can enter the journey. The maximum value is 100. To allow participants to enter the journey an unlimited number of times, set this value to 0.

§
EndpointReentryInterval?: string | null
[src]

Minimum time that must pass before an endpoint can re-enter a given journey. The duration should use an ISO 8601 format, such as PT1H.

§
MessagesPerSecond?: number | null
[src]

The maximum number of messages that the journey can send each second.