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

StateEnteredEventDetails

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

Contains details about a state entered during an execution.

interface StateEnteredEventDetails {
input?: string | null;
inputDetails?: HistoryEventExecutionDataDetails | null;
name: string;
}

§Properties

§
input?: string | null
[src]

The string that contains the JSON input data for the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

§

Contains details about the input for an execution history event.

§
name: string
[src]

The name of the state.