Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/aws-cdk-lib/aws-stepfunctions/lib/state-machine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ export interface StateMachineProps {
readonly role?: iam.IRole;

/**
* Maximum run time for this state machine
* Maximum run time for this state machine.
*
* Note: This only applies when the definition is provided using a `Chain` (via `definition` or
* `definitionBody` with `ChainDefinitionBody`). When using a `.asl.json` file or string-based
* definition, the timeout must be specified within the ASL definition itself.
*
* @default No timeout
*/
Expand Down
Loading