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

TaskScheduledEventDetails

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

Contains details about a task scheduled during an execution.

interface TaskScheduledEventDetails {
heartbeatInSeconds?: number | null;
parameters: string;
region: string;
resource: string;
resourceType: string;
timeoutInSeconds?: number | null;
}

§Properties

§
heartbeatInSeconds?: number | null
[src]

The maximum allowed duration between two heartbeats for the task.

§
parameters: string
[src]

The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§
region: string
[src]

The region of the scheduled task

§
resource: string
[src]

The service name of the resource in a task state.

§
resourceType: string
[src]

The action of the resource called by a task state.

§
timeoutInSeconds?: number | null
[src]

The maximum allowed duration of the task.