-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.yml
More file actions
809 lines (737 loc) · 24.2 KB
/
template.yml
File metadata and controls
809 lines (737 loc) · 24.2 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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Parameters:
BucketName:
Type: String
Resources:
DeliforceDriverGetMethod:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driver_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTaskPostMethod:
Type: AWS::Serverless::Function
Properties:
FunctionName: Ddeliforce_task_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_add.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceAuth:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_roles_permission
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/authorizer.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceAnalyticsDriverLogGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_Analytics_driverLog_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/AnalyticsDriverLog.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceAnalyticsOntimeGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_Analytics_ontime_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/AnalyticsOntime.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceAnalyticsTaskGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_Analytics_taskcomplete_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/AnalyticsTask.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDriverBlockUnblockPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_drivers_blockUnblock_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driverblockunblock.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDriverDelete:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: Test
FunctionName: Deliforce_driver_delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_delete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
Events:
Api1:
Type: Api
Properties:
Path: /driver
Method: DELETE
DeliforceDriverPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driver_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_edit.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDriverPost:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driver_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_add.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsDeveloperGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_developer_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettingDevelopGet.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDriverStatus:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driverStatus_get
AutoPublishAlias: Prod
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_getDriverStatus.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
Events:
Api1:
Type: Api
Properties:
Path: /driver/driverstatus
Method: GET
DeliforceDriverGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_getDrivers
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_getDriverStatus.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsPreferenceGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_preference_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettingPreferenceGet.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsPreferencePut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_preference_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettingPreferencePut.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsCategoryGet:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: test
FunctionName: Deliforce_settings_category_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettingsCateGet.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsCategoryPut:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: dev
FunctionName: Deliforce_settings_category_Put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettingsCatePut.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsAllUpdate:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_all_update
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/SettigsAllUp.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsAllFetch:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_all_fetch
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/all_settings_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceCustomerFetch:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_customer_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/Customerfetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceCustomerDelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_customer_delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/customer_delete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceCustomerUpdate:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_customer_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/Customerupdate.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDashboardDriverDetails:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_dashboard_driverDetails_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/dashboard_fetchDrivers.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDashboardReassignTask:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_dashboard_reassignTask_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/dashbord_ChangeTaskPriority.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDashboardChanTasklog:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_dashboard_tasklog_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/dashboard_fetchTaskLogs.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDashboardTaskDetailsGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_dashboard_taskDetails_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/dashboard_fetchTasks.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTeamFetchTeam:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_team_fetchTeam
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/fetchTeams.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTeamGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_team_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/team_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTeamDelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_team_delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/team_delete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTeamPost:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_team_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/team_add_edit.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMultipleChangeStatus:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_MultipleChangeStatus_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/multipleChangeStatus.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMultipleTaskDelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_multipleTaskDelete_Delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/multipleTaskDelete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTaskDelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_task_Delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_delete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTaskPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_task_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_edit.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTaskPost:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: Dev
FunctionName: Deliforce_task_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceTaskStatistics:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_task_statistics_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_statistics.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceCognitoSignUp:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_coginito_signup
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/coginitosignup.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceFileupload:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: Dev
FunctionName: Dev_fileupload
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/fileupload_Del.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceManagerPost:
Type: AWS::Serverless::Function
Properties:
AutoPublishAlias: Beta
FunctionName: Deliforce_manager_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/manager_add.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceManagerGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_manager_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/manager_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceManagerDelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_manager_delete
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/manager_delete.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceManagerPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_manager_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/manager_update.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileAnalytic:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_analytic_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mobile_analytic.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobilechangepasswd:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_changepassword_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_usr_ch_pwd_up.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileNotification:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_notification_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mobile_notif.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileTaskDetails:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_taskdetails_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_fetchTaskDetails.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileTasklist:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_tasklist_post
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_fetchTaskList.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileTaskroutes:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_taskroutes_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_fetchTaskRoute.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileSettingfetch:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_settings_get
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_set_fetch.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileSettingupdate:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_settings_put
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_set_up.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforcegetRolesPerm:
Type: AWS::Serverless::Function
Properties:
FunctionName: Dev_checkUserPermission
Timeout: 300
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/roles_perm.zip
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingEditProfilePut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_edit_profile_put
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/set_edits_profile_put.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforcesettingseditprofileGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_edit_profile_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/set_edits_profile_get.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileLoginPost:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: Deliforce_mobile_login_post
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_login_post.zip
Timeout: 300
Role: arn:aws:iam::539977196287:role/lambdafull
Policies: AWSLambdaFullAccess
DeliforceMobileHelpPost:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: Deliforce_mobile_help_post
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_help_post.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileProfilePut:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: Deliforce_mobile_profile_put
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_pro_put.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceDriverImport:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driver_import
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_import.zip
Timeout: 300
Role: arn:aws:iam::539977196287:role/lambdafull
Policies: AWSLambdaFullAccess
Events:
Api1:
Type: Api
Properties:
Path: /driver/import
Method: POST
DeliforceHelpListTickGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_help_listtickets_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/help_list_ticket_get.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsBillingGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_setting_billing_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/setting_billing_get.zip
MemorySize: 128
Timeout: 3
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileForgotPasswordPost:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_forgotpassword_post
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_forgot_pwd.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceMobileProfileGet:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_mobile_profile_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/mob_profile_get.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceCustomerImport:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_customer_import
Handler: lambda.handler
Runtime: nodejs6.10
CodeUri: build/customer_import.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsBillingPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_setting_billing_put
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/set_billing_put.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceSettingsChangePasswordPut:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_settings_change_password_put
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/set_change_passwd_put.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
DeliforceHelpAddticketPost:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_help_addticket_post
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/help_addtic_post.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
Deliforcefileremovedelete:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_fileremove_delete
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/file_rem_del.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
Deliforcetaskimport:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_task_import
Handler: lambda.handler
Runtime: nodejs6.10
CodeUri: build/task_import.zip
Timeout: 300
Policies: AWSLambdaFullAccess
Role: arn:aws:iam::539977196287:role/lambdafull
Deliforcedriverexportget:
Type: AWS::Serverless::Function
Properties:
FunctionName: Deliforce_driver_export_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/driver_export.zip
Timeout: 300
Role: arn:aws:iam::539977196287:role/lambdafull
Policies: AWSLambdaFullAccess
AutoPublishAlias: Dev
Events:
Api1:
Type: Api
Properties:
Path: /driver/export
Method: GET
Deliforcetaskexportget:
Type: AWS::Serverless::Function
Properties:
FunctionName: Dev_delliforce_task_export_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/task_export_get.zip
Timeout: 300
Role: arn:aws:iam::539977196287:role/lambdafull
Deliforcecustomerexportget:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: Deliforce_customer_export_get
Handler: index.handler
Runtime: nodejs6.10
CodeUri: build/customer_export_get.zip
Timeout: 300
Role: arn:aws:iam::539977196287:role/lambdafull