/** *

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:

*/ name: string; /** *

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; }