We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c5f26 commit c3ead91Copy full SHA for c3ead91
packages/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.ts
@@ -29,6 +29,16 @@ interface ParallelJsonPathOptions extends JsonPathCommonOptions {
29
* @default - None
30
*/
31
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 };
42
}
43
interface ParallelJsonataOptions extends JsonataCommonOptions {
44
/**
0 commit comments