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

StartSyncExecutionOutput

import type { StartSyncExecutionOutput } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";
interface StartSyncExecutionOutput {
billingDetails?: BillingDetails | null;
cause?: string | null;
error?: string | null;
executionArn: string;
input?: string | null;
name?: string | null;
output?: string | null;
outputDetails?: CloudWatchEventsExecutionDataDetails | null;
startDate: Date | number;
stateMachineArn?: string | null;
stopDate: Date | number;
traceHeader?: string | null;
}

§Properties

§
billingDetails?: BillingDetails | null
[src]

An object that describes workflow billing details, including billed duration and memory use.

§
cause?: string | null
[src]

A more detailed explanation of the cause of the failure.

§
error?: string | null
[src]

The error code of the failure.

§
executionArn: string
[src]

The Amazon Resource Name (ARN) that identifies the execution.

§
input?: string | null
[src]

The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§
name?: string | null
[src]

The name of the execution.

§
output?: string | null
[src]

The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

Note: This field is set only if the execution succeeds. If the execution fails, this field is null.

§
startDate: Date | number
[src]

The date the execution is started.

§
stateMachineArn?: string | null
[src]

The Amazon Resource Name (ARN) that identifies the state machine.

§

The current status of the execution.

§
stopDate: Date | number
[src]

If the execution has already ended, the date the execution stopped.

§
traceHeader?: string | null
[src]

The AWS X-Ray trace header that was passed to the execution.