import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeExecutionOutput shape */ export interface DescribeExecutionOutput extends __aws_sdk_types.MetadataBearer { /** *

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

*/ executionArn: string; /** *

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

*/ stateMachineArn: string; /** *

The name of the execution.

A name must not contain:

*/ name?: string; /** *

The current status of the execution.

*/ status: "RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "ABORTED" | string; /** *

The date the execution is started.

*/ startDate: Date; /** *

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

*/ stopDate?: Date; /** *

The string that contains the JSON input data of the execution.

*/ input: string; /** *

The JSON output data of the execution.

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

*/ output?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }