-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0eaedaa
commit 3b03015
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -277,10 +277,10 @@ This will create an SNS Topic which will be triggered in case of failure or succ | |
The email will subscribe to the topic and receive the notification in its inbox. | ||
|
||
```python | ||
with StepfunctionsWorkflow(datajob_stack=datajob_stack, | ||
name="workflow", | ||
notification="[email protected]") as sfn: | ||
task1 >> task2 | ||
with StepfunctionsWorkflow(datajob_stack=datajob_stack, | ||
name="workflow", | ||
notification="[email protected]") as sfn: | ||
task1 >> task2 | ||
``` | ||
|
||
You can provide 1 email or a list of emails `["[email protected]", "[email protected]"]`. | ||
|