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

StateMachineListItem

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

Contains details about the state machine.

interface StateMachineListItem {
creationDate: Date | number;
name: string;
stateMachineArn: string;
}

§Properties

§
creationDate: Date | number
[src]

The date the state machine is created.

§
name: string
[src]

The name of the state machine.

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

§
stateMachineArn: string
[src]

The Amazon Resource Name (ARN) that identifies the state machine.