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

ExecutionListItem

import type { ExecutionListItem } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";

Contains details about an execution.

interface ExecutionListItem {
executionArn: string;
name: string;
startDate: Date | number;
stateMachineArn: string;
stopDate?: Date | number | null;
}

§Properties

§
executionArn: string
[src]

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

§
name: string
[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 _.

§
startDate: Date | number
[src]

The date the execution started.

§
stateMachineArn: string
[src]

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

§

The current status of the execution.

§
stopDate?: Date | number | null
[src]

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