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

TimerCanceledEventAttributes

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

Provides the details of the TimerCanceled event.

interface TimerCanceledEventAttributes {
decisionTaskCompletedEventId: number;
startedEventId: number;
timerId: string;
}

§Properties

§
decisionTaskCompletedEventId: number
[src]

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

§
startedEventId: number
[src]

The ID of the TimerStarted event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
timerId: string
[src]

The unique ID of the timer that was canceled.