Skip to content

Commit

Permalink
fix(sfn) Pass: support more types for result
Browse files Browse the repository at this point in the history
  • Loading branch information
spg committed Jun 10, 2019
1 parent 523807c commit 8e9ec3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-stepfunctions/lib/states/pass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface PassProps {
*
* @default No injected result
*/
readonly result?: {[key: string]: any};
readonly result?: {[key: string]: any} | string | number | boolean | null | any[];
}

/**
Expand Down

0 comments on commit 8e9ec3d

Please sign in to comment.