Skip to content

Commit

Permalink
Fixed example to use new parameter name
Browse files Browse the repository at this point in the history
Fixed example to align with changes from [this commit](aws#2857)
  • Loading branch information
richardhboyd authored Mar 24, 2020
1 parent 73edcd4 commit 0da037f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-stepfunctions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const submitJob = new sfn.Task(this, 'Submit Job', {
});

const waitX = new sfn.Wait(this, 'Wait X Seconds', {
duration: sfn.WaitTime.secondsPath('$.waitSeconds'),
time: sfn.WaitTime.secondsPath('$.waitSeconds'),
});

const getStatus = new sfn.Task(this, 'Get Job Status', {
Expand Down

0 comments on commit 0da037f

Please sign in to comment.