/** *
Contains details about an execution.
*/ export interface _ExecutionListItem { /** *The Amazon Resource Name (ARN) that identifies the execution.
*/ executionArn: string; /** *The Amazon Resource Name (ARN) of the executed state 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 started.
*/ startDate: Date | string | number; /** *If the execution already ended, the date the execution stopped.
*/ stopDate?: Date | string | number; } export interface _UnmarshalledExecutionListItem extends _ExecutionListItem { /** *The date the execution started.
*/ startDate: Date; /** *If the execution already ended, the date the execution stopped.
*/ stopDate?: Date; }