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