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

ScheduledTriggerProperties

import type { ScheduledTriggerProperties } from "https://aws-api.deno.dev/v0.3/services/customerprofiles.ts?docs=full";

Specifies the configuration details of a scheduled-trigger flow that you define. Currently, these settings only apply to the scheduled-trigger type.

interface ScheduledTriggerProperties {
DataPullMode?: DataPullMode | null;
FirstExecutionFrom?: Date | number | null;
ScheduleEndTime?: Date | number | null;
ScheduleExpression: string;
ScheduleOffset?: number | null;
ScheduleStartTime?: Date | number | null;
Timezone?: string | null;
}

§Properties

§
DataPullMode?: DataPullMode | null
[src]

Specifies whether a scheduled flow has an incremental data transfer or a complete data transfer for each flow run.

§
FirstExecutionFrom?: Date | number | null
[src]

Specifies the date range for the records to import from the connector in the first flow run.

§
ScheduleEndTime?: Date | number | null
[src]

Specifies the scheduled end time for a scheduled-trigger flow.

§
ScheduleExpression: string
[src]

The scheduling expression that determines the rate at which the schedule will run, for example rate (5 minutes).

§
ScheduleOffset?: number | null
[src]

Specifies the optional offset that is added to the time interval for a schedule-triggered flow.

§
ScheduleStartTime?: Date | number | null
[src]

Specifies the scheduled start time for a scheduled-trigger flow.

§
Timezone?: string | null
[src]

Specifies the time zone used when referring to the date and time of a scheduled-triggered flow, such as America/New_York.