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

StateExitedEventDetails

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

Contains details about an exit from a state during an execution.

interface StateExitedEventDetails {
name: string;
output?: string | null;
outputDetails?: HistoryEventExecutionDataDetails | null;
}

§Properties

§
name: string
[src]

The name of the state.

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 _.

§
output?: string | null
[src]

The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§

Contains details about the output of an execution history event.