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

CreateStateMachineInput

import type { CreateStateMachineInput } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";
interface CreateStateMachineInput {
definition: string;
loggingConfiguration?: LoggingConfiguration | null;
name: string;
roleArn: string;
tags?: Tag[] | null;
tracingConfiguration?: TracingConfiguration | null;
type?: StateMachineType | null;
}

§Properties

§
definition: string
[src]

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

§
loggingConfiguration?: LoggingConfiguration | null
[src]

Defines what execution history events are logged and where they are logged.

Note: By default, the level is set to OFF. For more information see Log Levels in the AWS Step Functions User Guide.

§
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 to use for this state machine.

§
tags?: Tag[] | null
[src]

Tags to be added when creating a state machine.

An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide, and Controlling Access Using IAM Tags.

Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @.

§
tracingConfiguration?: TracingConfiguration | null
[src]

Selects whether AWS X-Ray tracing is enabled.

§
type?: StateMachineType | null
[src]

Determines whether a Standard or Express state machine is created. The default is STANDARD. You cannot update the type of a state machine once it has been created.