-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathserverless.yml
72 lines (67 loc) · 2.33 KB
/
serverless.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
service: serverless-stepfunctions-callback
plugins:
- serverless-pseudo-parameters
- serverless-step-functions
provider:
name: aws
runtime: python3.7
logRetentionInDays: 7
iamRoleStatements:
- Effect: Allow
Action:
- states:SendTaskFailure
- states:SendTaskSuccess
Resource:
- "arn:aws:states:#{AWS::Region}:#{AWS::AccountId}:states:SendTaskSuccess"
- Ref: CallbackExampleStepFunctionsStateMachine
package:
include:
- handler.py
exclude:
- "*~"
- .venv3/**
- README.rst
- node_modules/**
- package-lock.json
functions:
SplitDoc:
handler: handler.split_doc
ProcessAndCheckCompletion:
handler: handler.process_and_check_completion
stepFunctions:
stateMachines:
CallbackExample:
events: # start the state machine with a simulated event GET /start
- http:
path: start
method: GET
definition:
StartAt: SplitDoc
States:
SplitDoc:
Type: Task # we could use Pass and skip the Lambda, but simulate the split
Resource: "arn:aws:lambda:#{AWS::Region}:#{AWS::AccountId}:function:${self:service}-${opt:stage}-SplitDoc"
Next: WaitForCompletion
WaitForCompletion:
Type: Task
Resource: arn:aws:states:::lambda:invoke.waitForTaskToken # this is the magick incantation
Parameters:
FunctionName: ${self:service}-${opt:stage}-ProcessAndCheckCompletion
Payload:
taskToken.$: $$.Task.Token
Next: ContinueProcess # the happy path
Catch: # put our named failures before generic TaskFailed
- ErrorEquals: ["ProcessingFailed"]
Next: ProcessingFailed
- ErrorEquals: ["States.TaskFailed"] # any other problem including Lambda Python exception
Next: UnexpectedFailure
ContinueProcess:
Type: Succeed
ProcessingFailed:
Type: Fail
Error: Processing failed
Cause: We caught a problem when processing so we should clean up the artifacts
UnexpectedFailure:
Type: Fail
Error: Unexpected failure
Cause: Some unexpected error occurred, possibly a Lambda function exception, check logs