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

ActivityTaskStartedEventAttributes

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

Provides the details of the ActivityTaskStarted event.

interface ActivityTaskStartedEventAttributes {
identity?: string | null;
scheduledEventId: number;
}

§Properties

§
identity?: string | null
[src]

Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.

§
scheduledEventId: number
[src]

The ID of the ActivityTaskScheduled event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.