-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws-lambda-api.opencollection.json
More file actions
1072 lines (1072 loc) · 39.3 KB
/
Copy pathaws-lambda-api.opencollection.json
File metadata and controls
1072 lines (1072 loc) · 39.3 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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"opencollection": "1.0.0",
"info": {
"name": "AWS Lambda API",
"version": "2015-03-31"
},
"request": {
"auth": {
"type": "apikey",
"key": "Authorization",
"value": "{{Authorization}}",
"placement": "header"
}
},
"items": [
{
"info": {
"name": "Functions",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda List Functions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions",
"params": [
{
"name": "MasterRegion",
"value": "",
"type": "query",
"description": "For Lambda@Edge functions, the AWS Region of the master function"
},
{
"name": "FunctionVersion",
"value": "",
"type": "query",
"description": "Set to ALL to include entries for all published versions"
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Returns a list of Lambda functions with the version-specific configuration of each. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The response includes the function configuration for each version along with the function ARN and name."
},
{
"info": {
"name": "Aws Lambda Create a Function",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a ZIP archive or container image that contains your function code. The execution role grants the function permission to use AWS services. You can configure the function's memory, timeout, environment variables, VPC settings, layers, and other options."
},
{
"info": {
"name": "Aws Lambda Get a Function",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
]
},
"docs": "Returns information about the function or function version, with a link to download the deployment package that is valid for 10 minutes. If you specify a function version, only details specific to that version are returned. The response includes the function configuration, code location, tags, and concurrency settings."
},
{
"info": {
"name": "Aws Lambda Delete a Function",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
]
},
"docs": "Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping."
},
{
"info": {
"name": "Aws Lambda Get Function Configuration",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/configuration",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
]
},
"docs": "Returns the version-specific settings of a Lambda function or version. The output includes the function name, runtime, role, handler, description, code size, memory, timeout, last modified date, code SHA-256 hash, version, VPC configuration, dead-letter queue configuration, environment variables, KMS key, tracing configuration, layers, state, state reason, and last update status."
},
{
"info": {
"name": "Aws Lambda Update Function Configuration",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/configuration",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. After the update completes, subsequent invocations use the new configuration. Settings include memory, timeout, runtime, handler, environment variables, VPC, layers, and more."
},
{
"info": {
"name": "Aws Lambda Update Function Code",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/code",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. The function's code is locked when you publish a version. You cannot modify the code of a published version, only the unpublished version."
},
{
"info": {
"name": "Aws Lambda Invoke a Function",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/invocations",
"headers": [
{
"name": "X-Amz-Invocation-Type",
"value": "RequestResponse"
},
{
"name": "X-Amz-Log-Type",
"value": "None"
},
{
"name": "X-Amz-Client-Context",
"value": "example_value"
}
],
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Invokes a Lambda function. You can invoke a function synchronously and wait for the response, or asynchronously. By default, Lambda invokes your function synchronously. To invoke a function asynchronously, set InvocationType to Event. For asynchronous invocation, Lambda adds the event to a queue and returns a success response without additional information. For a DryRun invocation type, verify parameter values and permissions without running the function."
}
]
},
{
"info": {
"name": "Versions",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda List Function Versions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/versions",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Returns a list of versions with the version-specific configuration of each. Lambda returns up to 50 versions per call."
},
{
"info": {
"name": "Aws Lambda Publish a Version",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/versions",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that does not change. Lambda does not publish a version if the function's configuration and code have not changed since the last version."
}
]
},
{
"info": {
"name": "Aliases",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda List Aliases",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "FunctionVersion",
"value": "example_value",
"type": "query",
"description": "Filter by the version that aliases point to"
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Returns a list of aliases for a Lambda function. Each alias points to a specific function version and can optionally route a percentage of traffic to a second version for canary deployments."
},
{
"info": {
"name": "Aws Lambda Create an Alias",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version. You can also map an alias to split invocation requests between two versions for weighted routing."
},
{
"info": {
"name": "Aws Lambda Get an Alias",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "AliasName",
"value": "",
"type": "path",
"description": "The name of the alias"
}
]
},
"docs": "Returns details about a Lambda function alias."
},
{
"info": {
"name": "Aws Lambda Update an Alias",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "AliasName",
"value": "",
"type": "path",
"description": "The name of the alias"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Updates the configuration of a Lambda function alias. You can change the function version that the alias points to, or configure routing between two versions for weighted traffic shifting."
},
{
"info": {
"name": "Aws Lambda Delete an Alias",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "AliasName",
"value": "",
"type": "path",
"description": "The name of the alias"
}
]
},
"docs": "Deletes a Lambda function alias."
}
]
},
{
"info": {
"name": "Event Source Mappings",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda List Event Source Mappings",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/event-source-mappings",
"params": [
{
"name": "EventSourceArn",
"value": "example_value",
"type": "query",
"description": "The ARN of the event source (Amazon Kinesis stream, Amazon DynamoDB stream, Amazon SQS queue, Amazon MSK cluster, or self-managed Apache Kafka cluster)"
},
{
"name": "FunctionName",
"value": "example_value",
"type": "query",
"description": "The name, ARN, or partial ARN of the Lambda function to filter by"
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Lists event source mappings. Specify an EventSourceArn to show only event source mappings for a single event source, or a FunctionName to show mappings for a single function."
},
{
"info": {
"name": "Aws Lambda Create an Event Source Mapping",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/event-source-mappings",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a mapping between an event source and a Lambda function. Lambda reads items from the event source and invokes the function. Supported event sources include Amazon Kinesis, Amazon DynamoDB Streams, Amazon SQS, Amazon MQ, Amazon MSK, self-managed Apache Kafka, and Amazon DocumentDB."
},
{
"info": {
"name": "Aws Lambda Get an Event Source Mapping",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/event-source-mappings/:UUID",
"params": [
{
"name": "UUID",
"value": "",
"type": "path",
"description": "The identifier of the event source mapping"
}
]
},
"docs": "Returns details about an event source mapping."
},
{
"info": {
"name": "Aws Lambda Update an Event Source Mapping",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/event-source-mappings/:UUID",
"params": [
{
"name": "UUID",
"value": "",
"type": "path",
"description": "The identifier of the event source mapping"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Updates an event source mapping. You can change the function that Lambda invokes, or pause invocation and resume later from the same location."
},
{
"info": {
"name": "Aws Lambda Delete an Event Source Mapping",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/event-source-mappings/:UUID",
"params": [
{
"name": "UUID",
"value": "",
"type": "path",
"description": "The identifier of the event source mapping"
}
]
},
"docs": "Deletes an event source mapping. Lambda stops polling the event source and deletes the mapping."
}
]
},
{
"info": {
"name": "Layers",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda List Layers",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/layers",
"params": [
{
"name": "CompatibleRuntime",
"value": "nodejs18.x",
"type": "query",
"description": "Filter layers by compatible runtime"
},
{
"name": "CompatibleArchitecture",
"value": "x86_64",
"type": "query",
"description": "Filter layers by compatible instruction set architecture"
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Lists Lambda layers and shows information about the latest version of each. Specify a compatible runtime to list only layers that are compatible with that runtime. Specify a compatible architecture to include only layers that are compatible with that instruction set architecture."
},
{
"info": {
"name": "Aws Lambda List Layer Versions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/layers/:LayerName/versions",
"params": [
{
"name": "LayerName",
"value": "",
"type": "path",
"description": "The name or ARN of the layer"
},
{
"name": "CompatibleRuntime",
"value": "example_value",
"type": "query",
"description": "Filter by compatible runtime"
},
{
"name": "CompatibleArchitecture",
"value": "x86_64",
"type": "query",
"description": "Filter by compatible architecture"
},
{
"name": "Marker",
"value": "",
"type": "query",
"description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results."
},
{
"name": "MaxItems",
"value": "",
"type": "query",
"description": "Maximum number of items to return (1-10000)"
}
]
},
"docs": "Lists the versions of an Lambda layer. Versions that have been deleted are not listed. Specify a runtime identifier to list only versions compatible with that runtime."
},
{
"info": {
"name": "Aws Lambda Publish a Layer Version",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/layers/:LayerName/versions",
"params": [
{
"name": "LayerName",
"value": "",
"type": "path",
"description": "The name or ARN of the layer"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a Lambda layer from a ZIP archive. Each time you call PublishLayerVersion with the same layer name, a new version is created. Add layers to your function with CreateFunction or UpdateFunctionConfiguration."
},
{
"info": {
"name": "Aws Lambda Get a Layer Version",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/layers/:LayerName/versions/:VersionNumber",
"params": [
{
"name": "LayerName",
"value": "",
"type": "path",
"description": "The name or ARN of the layer"
},
{
"name": "VersionNumber",
"value": "",
"type": "path",
"description": "The version number"
}
]
},
"docs": "Returns information about a version of a Lambda layer, with a link to download the layer archive that is valid for 10 minutes."
},
{
"info": {
"name": "Aws Lambda Delete a Layer Version",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/layers/:LayerName/versions/:VersionNumber",
"params": [
{
"name": "LayerName",
"value": "",
"type": "path",
"description": "The name or ARN of the layer"
},
{
"name": "VersionNumber",
"value": "",
"type": "path",
"description": "The version number"
}
]
},
"docs": "Deletes a version of an Lambda layer. Deleted versions can no longer be viewed or added to functions. However, a copy of the version remains in Lambda until no functions refer to it."
}
]
},
{
"info": {
"name": "Function URL",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda Get Function Url Configuration",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2021-10-31/functions/:FunctionName/url",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
]
},
"docs": "Returns details about a Lambda function URL, including the function URL itself, the authorization type, CORS settings, creation and modification timestamps, and the invoke mode."
},
{
"info": {
"name": "Aws Lambda Create a Function Url",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://lambda.{region}.amazonaws.com/2021-10-31/functions/:FunctionName/url",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a Lambda function URL with the specified authorization type. A function URL is a dedicated HTTP(S) endpoint that you can use to invoke your function. You can create a function URL for the $LATEST unpublished version or for any function alias."
},
{
"info": {
"name": "Aws Lambda Update a Function Url",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2021-10-31/functions/:FunctionName/url",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Updates the configuration for a Lambda function URL."
},
{
"info": {
"name": "Aws Lambda Delete a Function Url",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2021-10-31/functions/:FunctionName/url",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "",
"type": "query",
"description": "A version number or alias name"
}
]
},
"docs": "Deletes a Lambda function URL."
}
]
},
{
"info": {
"name": "Concurrency",
"type": "folder"
},
"items": [
{
"info": {
"name": "Aws Lambda Get Reserved Concurrency",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
]
},
"docs": "Retrieves the reserved concurrency configuration for a function."
},
{
"info": {
"name": "Aws Lambda Set Reserved Concurrency",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Use ReservedConcurrentExecutions to reserve a portion of your account's concurrency for a function."
},
{
"info": {
"name": "Aws Lambda Delete Reserved Concurrency",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
}
]
},
"docs": "Removes a concurrency limit from a function. The function can then use unreserved account concurrency up to the account limit."
},
{
"info": {
"name": "Aws Lambda Get Provisioned Concurrency",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/provisioned-concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "example_value",
"type": "query",
"description": "The version number or alias name"
}
]
},
"docs": "Retrieves the provisioned concurrency configuration for a function's alias or version."
},
{
"info": {
"name": "Aws Lambda Set Provisioned Concurrency",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/provisioned-concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "example_value",
"type": "query",
"description": "The version number or alias name"
}
],
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Adds a provisioned concurrency configuration to a function's alias or version. Lambda pre-initializes the specified number of execution environments so they are prepared to respond immediately."
},
{
"info": {
"name": "Aws Lambda Delete Provisioned Concurrency",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/provisioned-concurrency",
"params": [
{
"name": "FunctionName",
"value": "",
"type": "path",
"description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN."
},
{
"name": "Qualifier",
"value": "example_value",
"type": "query",
"description": "The version number or alias name"
}
]
},
"docs": "Deletes the provisioned concurrency configuration for a function."
}
]
},
{
"info": {
"name": "Default",
"type": "folder"
},
"items": [