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

TimerStartedEventAttributes

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

Provides the details of the TimerStarted event.

interface TimerStartedEventAttributes {
control?: string | null;
decisionTaskCompletedEventId: number;
startToFireTimeout: string;
timerId: string;
}

§Properties

§
control?: string | null
[src]

Data attached to the event that can be used by the decider in subsequent workflow tasks.

§
decisionTaskCompletedEventId: number
[src]

The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the StartTimer decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
startToFireTimeout: string
[src]

The duration of time after which the timer fires.

The duration is specified in seconds, an integer greater than or equal to 0.

§
timerId: string
[src]

The unique ID of the timer that was started.