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

ActivityScheduledEventDetails

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

Contains details about an activity scheduled during an execution.

interface ActivityScheduledEventDetails {
heartbeatInSeconds?: number | null;
input?: string | null;
inputDetails?: HistoryEventExecutionDataDetails | null;
resource: string;
timeoutInSeconds?: number | null;
}

§Properties

§
heartbeatInSeconds?: number | null
[src]

The maximum allowed duration between two heartbeats for the activity task.

§
input?: string | null
[src]

The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§

Contains details about the input for an execution history event.

§
resource: string
[src]

The Amazon Resource Name (ARN) of the scheduled activity.

§
timeoutInSeconds?: number | null
[src]

The maximum allowed duration of the activity task.