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

ChildWorkflowExecutionStartedEventAttributes

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

Provides the details of the ChildWorkflowExecutionStarted event.

interface ChildWorkflowExecutionStartedEventAttributes {
initiatedEventId: number;
workflowExecution: WorkflowExecution;
workflowType: WorkflowType;
}

§Properties

§
initiatedEventId: number
[src]

The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution "Decision" to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
workflowExecution: WorkflowExecution
[src]

The child workflow execution that was started.

§
workflowType: WorkflowType
[src]

The type of the child workflow execution.