Skip to content

Commit c3ead91

Browse files
committed
add parameters to parallel state
1 parent f2c5f26 commit c3ead91

File tree

1 file changed

+10
-0
lines changed
  • packages/aws-cdk-lib/aws-stepfunctions/lib/states

1 file changed

+10
-0
lines changed

packages/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ interface ParallelJsonPathOptions extends JsonPathCommonOptions {
2929
* @default - None
3030
*/
3131
readonly resultSelector?: { [key: string]: any };
32+
33+
/**
34+
* Parameters pass a collection of key-value pairs, either static values or JSONPath expressions that select from the input.
35+
*
36+
* @see
37+
* https://docs.aws.amazon.com/step-functions/latest/dg/input-output-inputpath-params.html#input-output-parameters
38+
*
39+
* @default No parameters
40+
*/
41+
readonly parameters?: { [name: string]: any };
3242
}
3343
interface ParallelJsonataOptions extends JsonataCommonOptions {
3444
/**

0 commit comments

Comments
 (0)