aws-cdk-lib.aws_stepfunctions.IStateMachine

interface IStateMachine

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

Implemented by StateMachine

Obtainable from StateMachine.fromStateMachineArn(), StateMachine.fromStateMachineName()

A State Machine.

Properties

NameTypeDescription
envResourceEnvironmentThe environment this resource belongs to.
grantPrincipalIPrincipalThe principal to grant permissions to.
nodeNodeThe tree node.
stackStackThe stack in which this resource is defined.
stateMachineArnstringThe ARN of the state machine.

env

Type: ResourceEnvironment

The environment this resource belongs to.

For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.


grantPrincipal

Type: IPrincipal

The principal to grant permissions to.


node

Type: Node

The tree node.


stack

Type: Stack

The stack in which this resource is defined.


stateMachineArn

Type: string

The ARN of the state machine.

Methods

NameDescription
applyRemovalPolicy(policy)Apply the given removal policy to this resource.
grant(identity, ...actions)Grant the given identity custom permissions.
grantExecution(identity, ...actions)Grant the given identity permissions for all executions of a state machine.
grantRead(identity)Grant the given identity read permissions for this state machine.
grantStartExecution(identity)Grant the given identity permissions to start an execution of this state machine.
grantStartSyncExecution(identity)Grant the given identity permissions to start a synchronous execution of this state machine.
grantTaskResponse(identity)Grant the given identity read permissions for this state machine.
metric(metricName, props?)Return the given named metric for this State Machine's executions.
metricAborted(props?)Metric for the number of executions that were aborted.
metricFailed(props?)Metric for the number of executions that failed.
metricStarted(props?)Metric for the number of executions that were started.
metricSucceeded(props?)Metric for the number of executions that succeeded.
metricThrottled(props?)Metric for the number of executions that were throttled.
metricTime(props?)Metric for the interval, in milliseconds, between the time the execution starts and the time it closes.
metricTimedOut(props?)Metric for the number of executions that timed out.

applyRemovalPolicy(policy)

public applyRemovalPolicy(policy: RemovalPolicy): void

Parameters

  • policy RemovalPolicy

Apply the given removal policy to this resource.

The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.

The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN).


grant(identity, ...actions)

public grant(identity: IGrantable, ...actions: string[]): Grant

Parameters

  • identity IGrantable — The principal.
  • actions string — The list of desired actions.

Returns

  • Grant

Grant the given identity custom permissions.


grantExecution(identity, ...actions)

public grantExecution(identity: IGrantable, ...actions: string[]): Grant

Parameters

  • identity IGrantable — The principal.
  • actions string — The list of desired actions.

Returns

  • Grant

Grant the given identity permissions for all executions of a state machine.


grantRead(identity)

public grantRead(identity: IGrantable): Grant

Parameters

  • identity IGrantable — The principal.

Returns

  • Grant

Grant the given identity read permissions for this state machine.


grantStartExecution(identity)

public grantStartExecution(identity: IGrantable): Grant

Parameters

  • identity IGrantable — The principal.

Returns

  • Grant

Grant the given identity permissions to start an execution of this state machine.


grantStartSyncExecution(identity)

public grantStartSyncExecution(identity: IGrantable): Grant

Parameters

  • identity IGrantable — The principal.

Returns

  • Grant

Grant the given identity permissions to start a synchronous execution of this state machine.


grantTaskResponse(identity)

public grantTaskResponse(identity: IGrantable): Grant

Parameters

  • identity IGrantable — The principal.

Returns

  • Grant

Grant the given identity read permissions for this state machine.


metric(metricName, props?)

public metric(metricName: string, props?: MetricOptions): Metric

Parameters

  • metricName string
  • props MetricOptions

Returns

  • Metric

Return the given named metric for this State Machine's executions.


metricAborted(props?)

public metricAborted(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that were aborted.


metricFailed(props?)

public metricFailed(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that failed.


metricStarted(props?)

public metricStarted(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that were started.


metricSucceeded(props?)

public metricSucceeded(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that succeeded.


metricThrottled(props?)

public metricThrottled(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that were throttled.


metricTime(props?)

public metricTime(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the interval, in milliseconds, between the time the execution starts and the time it closes.


metricTimedOut(props?)

public metricTimedOut(props?: MetricOptions): Metric

Parameters

  • props MetricOptions

Returns

  • Metric

Metric for the number of executions that timed out.