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

DescribeExecutionOutput

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

§Properties

§
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.

A name must not contain:

  • white space
  • brackets < > { } [ ]
  • wildcard characters ? *
  • special characters " # % \ ^ | ~ $ & , ; : /`
  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

§
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
[src]

The Amazon Resource Name (ARN) of the executed stated machine.

§

The current status of the execution.

§
stopDate?: Date | number | null
[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.