-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtemplate.yaml
More file actions
532 lines (481 loc) · 18.1 KB
/
Copy pathtemplate.yaml
File metadata and controls
532 lines (481 loc) · 18.1 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: AWS Lambda Durable Execution SDK Examples
Parameters:
Architecture:
Type: String
Default: arm64
Description: Lambda Function Architecture
AllowedValues:
- x86_64
- arm64
JavaVersion:
Type: String
Default: 'java17'
Description: Java runtime version
Conditions:
IsJava21OrLater:
!Or
- !Equals [!Ref JavaVersion, 'java21']
- !Equals [!Ref JavaVersion, 'java25']
Globals:
Function:
Timeout: 900
MemorySize: 512
Architectures:
- !Ref Architecture
DurableConfig:
ExecutionTimeout: 300
RetentionPeriodInDays: 7
Runtime: !Ref JavaVersion
Resources:
NoopExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - noop-example
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.NoopExample"
SimpleStepExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - simple-step-example
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.step.SimpleStepExample"
SimpleInvokeExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'simple-invoke-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.invoke.SimpleInvokeExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
- lambda:InvokeFunction
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:simple-invoke-example-${JavaVersion}-runtime"
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource: '*'
WaitExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'wait-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.WaitExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:wait-example-${JavaVersion}-runtime"
RetryExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'retry-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.step.RetryExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:retry-example-${JavaVersion}-runtime"
WaitAtLeastExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'wait-at-least-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.WaitAtLeastExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:wait-at-least-example-${JavaVersion}-runtime"
WaitAtLeastInProcessExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'wait-at-least-in-process-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.WaitAtLeastInProcessExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:wait-at-least-in-process-example-${JavaVersion}-runtime"
RetryInProcessExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'retry-in-process-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.step.RetryInProcessExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:retry-in-process-example-${JavaVersion}-runtime"
GenericTypesExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'generic-types-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.GenericTypesExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:generic-types-example-${JavaVersion}-runtime"
GenericInputOutputExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'generic-input-output-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.GenericInputOutputExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:generic-input-output-example-${JavaVersion}-runtime"
CustomConfigExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'custom-config-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.CustomConfigExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:custom-config-example-${JavaVersion}-runtime"
LoggingExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'logging-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.LoggingExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:logging-example-${JavaVersion}-runtime"
ErrorHandlingExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'error-handling-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.general.ErrorHandlingExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:error-handling-example-${JavaVersion}-runtime"
CallbackExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'callback-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.callback.CallbackExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:callback-example-${JavaVersion}-runtime"
ManyAsyncStepsExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'many-async-steps-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.step.ManyAsyncStepsExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:many-async-steps-example-${JavaVersion}-runtime"
ChildContextExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'child-context-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.child.ChildContextExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:child-context-example-${JavaVersion}-runtime"
WaitAsyncExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'wait-async-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.WaitAsyncExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:wait-async-example-${JavaVersion}-runtime"
ManyAsyncChildContextExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'many-async-child-context-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.child.ManyAsyncChildContextExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:many-async-child-context-example-${JavaVersion}-runtime"
SimpleMapExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'simple-map-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.map.SimpleMapExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:simple-map-example-${JavaVersion}-runtime"
ComplexMapExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'complex-map-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.map.ComplexMapExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:complex-map-example-${JavaVersion}-runtime"
ComplexFlatMapExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'complex-flat-map-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.map.ComplexFlatMapExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:complex-flat-map-example-${JavaVersion}-runtime"
WaitForConditionExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'wait-for-condition-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.WaitForConditionExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:wait-for-condition-example-${JavaVersion}-runtime"
ConcurrentWaitForConditionExampleFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Join
- '-'
- - 'concurrent-wait-for-condition-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.wait.ConcurrentWaitForConditionExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:concurrent-wait-for-condition-example-${JavaVersion}-runtime"
ManyAsyncStepsVirtualThreadPoolExampleFunction:
Type: AWS::Serverless::Function
Condition: IsJava21OrLater
Properties:
FunctionName: !Join
- '-'
- - 'many-async-steps-virtual-thread-pool-example'
- !Ref JavaVersion
- runtime
Handler: "software.amazon.lambda.durable.examples.vt.ManyAsyncStepsVirtualThreadPoolExample"
Policies:
- Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecutions
- lambda:GetDurableExecutionState
Resource: !Sub "arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:many-async-steps-virtual-thread-pool-example-${JavaVersion}-runtime"
Outputs:
NoopExampleFunction:
Description: Noop Example Function ARN
Value: !GetAtt NoopExampleFunction.Arn
SimpleStepExampleFunction:
Description: Simple Step Example Function ARN
Value: !GetAtt SimpleStepExampleFunction.Arn
SimpleInvokeExampleFunction:
Description: Simple Invoke Example Function ARN
Value: !GetAtt SimpleInvokeExampleFunction.Arn
WaitExampleFunction:
Description: Wait Example Function ARN
Value: !GetAtt WaitExampleFunction.Arn
RetryExampleFunction:
Description: Retry Example Function ARN
Value: !GetAtt RetryExampleFunction.Arn
WaitAtLeastExampleFunction:
Description: Wait At Least Example Function ARN
Value: !GetAtt WaitAtLeastExampleFunction.Arn
WaitAtLeastInProcessExampleFunction:
Description: Wait At Least In Process Example Function ARN
Value: !GetAtt WaitAtLeastInProcessExampleFunction.Arn
RetryInProcessExampleFunction:
Description: Retry In Process Example Function ARN
Value: !GetAtt RetryInProcessExampleFunction.Arn
GenericTypesExampleFunction:
Description: Generic Types Example Function ARN
Value: !GetAtt GenericTypesExampleFunction.Arn
GenericInputOutputExampleFunction:
Description: Generic Input Output Example Function ARN
Value: !GetAtt GenericInputOutputExampleFunction.Arn
CustomConfigExampleFunction:
Description: Custom Config Example Function ARN
Value: !GetAtt CustomConfigExampleFunction.Arn
LoggingExampleFunction:
Description: Logging Example Function ARN
Value: !GetAtt LoggingExampleFunction.Arn
ErrorHandlingExampleFunction:
Description: Error Handling Example Function ARN
Value: !GetAtt ErrorHandlingExampleFunction.Arn
CallbackExampleFunction:
Description: Callback Example Function ARN
Value: !GetAtt CallbackExampleFunction.Arn
ManyAsyncStepsExampleFunction:
Description: Many Async Steps Example Function ARN
Value: !GetAtt ManyAsyncStepsExampleFunction.Arn
ChildContextExampleFunction:
Description: Child Context Example Function ARN
Value: !GetAtt ChildContextExampleFunction.Arn
WaitAsyncExampleFunction:
Description: Wait Async Example Function ARN
Value: !GetAtt WaitAsyncExampleFunction.Arn
ManyAsyncChildContextExampleFunction:
Description: Many Async Child Context Example Function ARN
Value: !GetAtt ManyAsyncChildContextExampleFunction.Arn
SimpleMapExampleFunction:
Description: Simple Map Example Function ARN
Value: !GetAtt SimpleMapExampleFunction.Arn
ComplexMapExampleFunction:
Description: Complex Map Example Function ARN
Value: !GetAtt ComplexMapExampleFunction.Arn
ComplexFlatMapExampleFunction:
Description: Complex Flat Map Example Function ARN
Value: !GetAtt ComplexFlatMapExampleFunction.Arn
WaitForConditionExampleFunction:
Description: Wait For Condition Example Function ARN
Value: !GetAtt WaitForConditionExampleFunction.Arn
ConcurrentWaitForConditionExampleFunction:
Description: Concurrent Wait For Condition Example Function ARN
Value: !GetAtt ConcurrentWaitForConditionExampleFunction.Arn
ManyAsyncStepsVirtualThreadPoolExampleFunction:
Condition: IsJava21OrLater
Description: Many Async Steps Virtual Thread Pool Example Function ARN
Value: !GetAtt ManyAsyncStepsVirtualThreadPoolExampleFunction.Arn