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

DescribeStateMachineOutput

import type { DescribeStateMachineOutput } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";
interface DescribeStateMachineOutput {
creationDate: Date | number;
definition: string;
loggingConfiguration?: LoggingConfiguration | null;
name: string;
roleArn: string;
stateMachineArn: string;
status?: StateMachineStatus | null;
tracingConfiguration?: TracingConfiguration | null;
}

§Properties

§
creationDate: Date | number
[src]

The date the state machine is created.

§
definition: string
[src]

The Amazon States Language definition of the state machine. See Amazon States Language.

§
loggingConfiguration?: LoggingConfiguration | null
[src]
§
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 _.

§
roleArn: string
[src]

The Amazon Resource Name (ARN) of the IAM role used when creating this state machine. (The IAM role maintains security by granting Step Functions access to AWS resources.)

§
stateMachineArn: string
[src]

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

§
status?: StateMachineStatus | null
[src]

The current status of the state machine.

§
tracingConfiguration?: TracingConfiguration | null
[src]

Selects whether AWS X-Ray tracing is enabled.

§

The type of the state machine (STANDARD or EXPRESS).