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.
JsonPath.DISCARD
1 parent 109b2ab commit 7bfb1d6Copy full SHA for 7bfb1d6
packages/aws-cdk-lib/aws-stepfunctions/lib/input.ts
@@ -17,6 +17,8 @@ export class TaskInput {
17
* Use an object as task input
18
*
19
* This object may contain JSON path fields as object values, if desired.
20
+ *
21
+ * Use `sfn.JsonPath.DISCARD` in place of `null` for languages that do not support `null` (i.e. Python).
22
*/
23
public static fromObject(obj: { [key: string]: any }) {
24
return new TaskInput(InputType.OBJECT, obj);
0 commit comments