Skip to content

Commit

Permalink
add readme explaining alternate usage
Browse files Browse the repository at this point in the history
  • Loading branch information
razin99 committed Sep 1, 2023
1 parent 7c326a2 commit 89c2541
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/aws-cdk-lib/aws-stepfunctions-tasks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,15 @@ const startQueryExecutionJob = new tasks.AthenaStartQueryExecution(this, 'Start
},
});
```
Alternatively, we could also use the following for `outputLocation`
```
resultConfiguration: {
outputLocation: sfn.JsonPath.format(
's3://query-results-bucket/folder/{}',
sfn.JsonPath.format('$.folder'),
)
}
```

### GetQueryExecution

Expand Down

0 comments on commit 89c2541

Please sign in to comment.