aws-cdk-lib.aws_stepfunctions.CfnStateMachineProps

interface CfnStateMachineProps

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.CfnStateMachineProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#CfnStateMachineProps
Javasoftware.amazon.awscdk.services.stepfunctions.CfnStateMachineProps
Pythonaws_cdk.aws_stepfunctions.CfnStateMachineProps
TypeScript aws-cdk-lib » aws_stepfunctions » CfnStateMachineProps

Properties for defining a CfnStateMachine.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from 'aws-cdk-lib';

declare const definition: any;
const cfnStateMachineProps: stepfunctions.CfnStateMachineProps = {
  roleArn: 'roleArn',

  // the properties below are optional
  definition: definition,
  definitionS3Location: {
    bucket: 'bucket',
    key: 'key',

    // the properties below are optional
    version: 'version',
  },
  definitionString: 'definitionString',
  definitionSubstitutions: {
    definitionSubstitutionsKey: 'definitionSubstitutions',
  },
  loggingConfiguration: {
    destinations: [{
      cloudWatchLogsLogGroup: {
        logGroupArn: 'logGroupArn',
      },
    }],
    includeExecutionData: false,
    level: 'level',
  },
  stateMachineName: 'stateMachineName',
  stateMachineType: 'stateMachineType',
  tags: [{
    key: 'key',
    value: 'value',
  }],
  tracingConfiguration: {
    enabled: false,
  },
};

Properties

NameTypeDescription
roleArnstringThe Amazon Resource Name (ARN) of the IAM role to use for this state machine.
definition?anyThe Amazon States Language definition of the state machine.
definitionS3Location?IResolvable | S3LocationPropertyThe name of the S3 bucket where the state machine definition is stored.
definitionString?stringThe Amazon States Language definition of the state machine.
definitionSubstitutions?IResolvable | { [string]: string }A map (string to string) that specifies the mappings for placeholder variables in the state machine definition.
loggingConfiguration?IResolvable | LoggingConfigurationPropertyDefines what execution history events are logged and where they are logged.
stateMachineName?stringThe name of the state machine.
stateMachineType?stringDetermines whether a STANDARD or EXPRESS state machine is created.
tags?TagsEntryProperty[]The list of tags to add to a resource.
tracingConfiguration?IResolvable | TracingConfigurationPropertySelects whether or not the state machine's AWS X-Ray tracing is enabled.

roleArn

Type: string

The Amazon Resource Name (ARN) of the IAM role to use for this state machine.


definition?

Type: any (optional)

The Amazon States Language definition of the state machine.

The state machine definition must be in JSON or YAML, and the format of the object must match the format of your CloudFormation template file. See Amazon States Language .


definitionS3Location?

Type: IResolvable | S3LocationProperty (optional)

The name of the S3 bucket where the state machine definition is stored.

The state machine definition must be a JSON or YAML file.


definitionString?

Type: string (optional)

The Amazon States Language definition of the state machine.

The state machine definition must be in JSON. See Amazon States Language .


definitionSubstitutions?

Type: IResolvable | { [string]: string } (optional)

A map (string to string) that specifies the mappings for placeholder variables in the state machine definition.

This enables the customer to inject values obtained at runtime, for example from intrinsic functions, in the state machine definition. Variables can be template parameter names, resource logical IDs, resource attributes, or a variable in a key-value map.

Substitutions must follow the syntax: ${key_name} or ${variable_1,variable_2,...} .


loggingConfiguration?

Type: IResolvable | LoggingConfigurationProperty (optional)

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

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


stateMachineName?

Type: string (optional)

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 )

If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.


stateMachineType?

Type: string (optional)

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. For more information on STANDARD and EXPRESS workflows, see Standard Versus Express Workflows in the AWS Step Functions Developer Guide.


tags?

Type: TagsEntryProperty[] (optional)

The list of tags to add to a resource.

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


tracingConfiguration?

Type: IResolvable | TracingConfigurationProperty (optional)

Selects whether or not the state machine's AWS X-Ray tracing is enabled.