forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
2314 lines (1888 loc) · 83 KB
/
api.go
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
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package lambda provides a client for AWS Lambda.
package lambda
import (
"io"
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
)
const opAddPermission = "AddPermission"
// AddPermissionRequest generates a request for the AddPermission operation.
func (c *Lambda) AddPermissionRequest(input *AddPermissionInput) (req *request.Request, output *AddPermissionOutput) {
op := &request.Operation{
Name: opAddPermission,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/functions/{FunctionName}/policy",
}
if input == nil {
input = &AddPermissionInput{}
}
req = c.newRequest(op, input, output)
output = &AddPermissionOutput{}
req.Data = output
return
}
// Adds a permission to the resource policy associated with the specified AWS
// Lambda function. You use resource policies to grant permissions to event
// sources that use "push" model. In "push" model, event sources (such as Amazon
// S3 and custom applications) invoke your Lambda function. Each permission
// you add to the resource policy allows an event source, permission to invoke
// the Lambda function.
//
// For information about the push model, see AWS Lambda: How it Works (http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html).
//
// If you are using versioning feature (see AWS Lambda Function Versioning
// and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-v2.html)),
// a Lambda function can have multiple ARNs that can be used to invoke the function.
// Note that, each permission you add to resource policy using this API is specific
// to an ARN, specified using the Qualifier parameter
//
// This operation requires permission for the lambda:AddPermission action.
func (c *Lambda) AddPermission(input *AddPermissionInput) (*AddPermissionOutput, error) {
req, out := c.AddPermissionRequest(input)
err := req.Send()
return out, err
}
const opCreateAlias = "CreateAlias"
// CreateAliasRequest generates a request for the CreateAlias operation.
func (c *Lambda) CreateAliasRequest(input *CreateAliasInput) (req *request.Request, output *AliasConfiguration) {
op := &request.Operation{
Name: opCreateAlias,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases",
}
if input == nil {
input = &CreateAliasInput{}
}
req = c.newRequest(op, input, output)
output = &AliasConfiguration{}
req.Data = output
return
}
// Creates an alias to the specified Lambda function version. For more information,
// see Introduction to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-v2-intro-aliases.html)
//
// This requires permission for the lambda:CreateAlias action.
func (c *Lambda) CreateAlias(input *CreateAliasInput) (*AliasConfiguration, error) {
req, out := c.CreateAliasRequest(input)
err := req.Send()
return out, err
}
const opCreateEventSourceMapping = "CreateEventSourceMapping"
// CreateEventSourceMappingRequest generates a request for the CreateEventSourceMapping operation.
func (c *Lambda) CreateEventSourceMappingRequest(input *CreateEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
op := &request.Operation{
Name: opCreateEventSourceMapping,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/event-source-mappings/",
}
if input == nil {
input = &CreateEventSourceMappingInput{}
}
req = c.newRequest(op, input, output)
output = &EventSourceMappingConfiguration{}
req.Data = output
return
}
// Identifies a stream as an event source for a Lambda function. It can be either
// an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS Lambda invokes
// the specified function when records are posted to the stream.
//
// This is the pull model, where AWS Lambda invokes the function. For more
// information, go to AWS Lambda: How it Works (http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html)
// in the AWS Lambda Developer Guide.
//
// This association between an Amazon Kinesis stream and a Lambda function
// is called the event source mapping. You provide the configuration information
// (for example, which stream to read from and which Lambda function to invoke)
// for the event source mapping in the request body.
//
// Each event source, such as an Amazon Kinesis or a DynamoDB stream, can
// be associated with multiple AWS Lambda function. A given Lambda function
// can be associated with multiple AWS event sources.
//
// This operation requires permission for the lambda:CreateEventSourceMapping
// action.
func (c *Lambda) CreateEventSourceMapping(input *CreateEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
req, out := c.CreateEventSourceMappingRequest(input)
err := req.Send()
return out, err
}
const opCreateFunction = "CreateFunction"
// CreateFunctionRequest generates a request for the CreateFunction operation.
func (c *Lambda) CreateFunctionRequest(input *CreateFunctionInput) (req *request.Request, output *FunctionConfiguration) {
op := &request.Operation{
Name: opCreateFunction,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/functions",
}
if input == nil {
input = &CreateFunctionInput{}
}
req = c.newRequest(op, input, output)
output = &FunctionConfiguration{}
req.Data = output
return
}
// Creates a new Lambda function. The function metadata is created from the
// request parameters, and the code for the function is provided by a .zip file
// in the request body. If the function name already exists, the operation will
// fail. Note that the function name is case-sensitive.
//
// This operation requires permission for the lambda:CreateFunction action.
func (c *Lambda) CreateFunction(input *CreateFunctionInput) (*FunctionConfiguration, error) {
req, out := c.CreateFunctionRequest(input)
err := req.Send()
return out, err
}
const opDeleteAlias = "DeleteAlias"
// DeleteAliasRequest generates a request for the DeleteAlias operation.
func (c *Lambda) DeleteAliasRequest(input *DeleteAliasInput) (req *request.Request, output *DeleteAliasOutput) {
op := &request.Operation{
Name: opDeleteAlias,
HTTPMethod: "DELETE",
HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
}
if input == nil {
input = &DeleteAliasInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteAliasOutput{}
req.Data = output
return
}
// Deletes specified Lambda function alias. For more information, see Introduction
// to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-v2-intro-aliases.html)
//
// This requires permission for the lambda:DeleteAlias action.
func (c *Lambda) DeleteAlias(input *DeleteAliasInput) (*DeleteAliasOutput, error) {
req, out := c.DeleteAliasRequest(input)
err := req.Send()
return out, err
}
const opDeleteEventSourceMapping = "DeleteEventSourceMapping"
// DeleteEventSourceMappingRequest generates a request for the DeleteEventSourceMapping operation.
func (c *Lambda) DeleteEventSourceMappingRequest(input *DeleteEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
op := &request.Operation{
Name: opDeleteEventSourceMapping,
HTTPMethod: "DELETE",
HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
}
if input == nil {
input = &DeleteEventSourceMappingInput{}
}
req = c.newRequest(op, input, output)
output = &EventSourceMappingConfiguration{}
req.Data = output
return
}
// Removes an event source mapping. This means AWS Lambda will no longer invoke
// the function for events in the associated source.
//
// This operation requires permission for the lambda:DeleteEventSourceMapping
// action.
func (c *Lambda) DeleteEventSourceMapping(input *DeleteEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
req, out := c.DeleteEventSourceMappingRequest(input)
err := req.Send()
return out, err
}
const opDeleteFunction = "DeleteFunction"
// DeleteFunctionRequest generates a request for the DeleteFunction operation.
func (c *Lambda) DeleteFunctionRequest(input *DeleteFunctionInput) (req *request.Request, output *DeleteFunctionOutput) {
op := &request.Operation{
Name: opDeleteFunction,
HTTPMethod: "DELETE",
HTTPPath: "/2015-03-31/functions/{FunctionName}",
}
if input == nil {
input = &DeleteFunctionInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteFunctionOutput{}
req.Data = output
return
}
// Deletes the specified Lambda function code and configuration.
//
// If you don't specify a function version, AWS Lambda will delete the function,
// including all its versions, and any aliases pointing to the function versions.
//
// When you delete a function the associated resource policy is also deleted.
// You will need to delete the event source mappings explicitly.
//
// For information about function versioning, see AWS Lambda Function Versioning
// and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-v2.html).
//
// This operation requires permission for the lambda:DeleteFunction action.
func (c *Lambda) DeleteFunction(input *DeleteFunctionInput) (*DeleteFunctionOutput, error) {
req, out := c.DeleteFunctionRequest(input)
err := req.Send()
return out, err
}
const opGetAlias = "GetAlias"
// GetAliasRequest generates a request for the GetAlias operation.
func (c *Lambda) GetAliasRequest(input *GetAliasInput) (req *request.Request, output *AliasConfiguration) {
op := &request.Operation{
Name: opGetAlias,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
}
if input == nil {
input = &GetAliasInput{}
}
req = c.newRequest(op, input, output)
output = &AliasConfiguration{}
req.Data = output
return
}
// Returns the specified alias information such as the alias ARN, description,
// and function version it is pointing to. For more information, see Introduction
// to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-v2-intro-aliases.html)
//
// This requires permission for the lambda:GetAlias action.
func (c *Lambda) GetAlias(input *GetAliasInput) (*AliasConfiguration, error) {
req, out := c.GetAliasRequest(input)
err := req.Send()
return out, err
}
const opGetEventSourceMapping = "GetEventSourceMapping"
// GetEventSourceMappingRequest generates a request for the GetEventSourceMapping operation.
func (c *Lambda) GetEventSourceMappingRequest(input *GetEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
op := &request.Operation{
Name: opGetEventSourceMapping,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
}
if input == nil {
input = &GetEventSourceMappingInput{}
}
req = c.newRequest(op, input, output)
output = &EventSourceMappingConfiguration{}
req.Data = output
return
}
// Returns configuration information for the specified event source mapping
// (see CreateEventSourceMapping).
//
// This operation requires permission for the lambda:GetEventSourceMapping
// action.
func (c *Lambda) GetEventSourceMapping(input *GetEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
req, out := c.GetEventSourceMappingRequest(input)
err := req.Send()
return out, err
}
const opGetFunction = "GetFunction"
// GetFunctionRequest generates a request for the GetFunction operation.
func (c *Lambda) GetFunctionRequest(input *GetFunctionInput) (req *request.Request, output *GetFunctionOutput) {
op := &request.Operation{
Name: opGetFunction,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}",
}
if input == nil {
input = &GetFunctionInput{}
}
req = c.newRequest(op, input, output)
output = &GetFunctionOutput{}
req.Data = output
return
}
// Returns the configuration information of the Lambda function and a presigned
// URL link to the .zip file you uploaded with CreateFunction so you can download
// the .zip file. Note that the URL is valid for up to 10 minutes. The configuration
// information is the same information you provided as parameters when uploading
// the function.
//
// Using the optional Qualifier parameter, you can specify a specific function
// version for which you want this information. If you don't specify this parameter,
// the API uses unqualified function ARN which return information about the
// $LATEST version of the Lambda function. For more information, see AWS Lambda
// Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-v2.html).
//
// This operation requires permission for the lambda:GetFunction action.
func (c *Lambda) GetFunction(input *GetFunctionInput) (*GetFunctionOutput, error) {
req, out := c.GetFunctionRequest(input)
err := req.Send()
return out, err
}
const opGetFunctionConfiguration = "GetFunctionConfiguration"
// GetFunctionConfigurationRequest generates a request for the GetFunctionConfiguration operation.
func (c *Lambda) GetFunctionConfigurationRequest(input *GetFunctionConfigurationInput) (req *request.Request, output *FunctionConfiguration) {
op := &request.Operation{
Name: opGetFunctionConfiguration,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}/configuration",
}
if input == nil {
input = &GetFunctionConfigurationInput{}
}
req = c.newRequest(op, input, output)
output = &FunctionConfiguration{}
req.Data = output
return
}
// Returns the configuration information of the Lambda function. This the same
// information you provided as parameters when uploading the function by using
// CreateFunction.
//
// You can use the optional Qualifier parameter to retrieve configuration information
// for a specific Lambda function version. If you don't provide it, the API
// returns information about the $LATEST version of the function. For more information
// about versioning, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-v2.html).
//
// This operation requires permission for the lambda:GetFunctionConfiguration
// operation.
func (c *Lambda) GetFunctionConfiguration(input *GetFunctionConfigurationInput) (*FunctionConfiguration, error) {
req, out := c.GetFunctionConfigurationRequest(input)
err := req.Send()
return out, err
}
const opGetPolicy = "GetPolicy"
// GetPolicyRequest generates a request for the GetPolicy operation.
func (c *Lambda) GetPolicyRequest(input *GetPolicyInput) (req *request.Request, output *GetPolicyOutput) {
op := &request.Operation{
Name: opGetPolicy,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}/policy",
}
if input == nil {
input = &GetPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &GetPolicyOutput{}
req.Data = output
return
}
// Returns the resource policy, containing a list of permissions that apply
// to a specific to an ARN that you specify via the Qualifier paramter.
//
// For informration about adding permissions, see AddPermission.
//
// You need permission for the lambda:GetPolicy action.
func (c *Lambda) GetPolicy(input *GetPolicyInput) (*GetPolicyOutput, error) {
req, out := c.GetPolicyRequest(input)
err := req.Send()
return out, err
}
const opInvoke = "Invoke"
// InvokeRequest generates a request for the Invoke operation.
func (c *Lambda) InvokeRequest(input *InvokeInput) (req *request.Request, output *InvokeOutput) {
op := &request.Operation{
Name: opInvoke,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/functions/{FunctionName}/invocations",
}
if input == nil {
input = &InvokeInput{}
}
req = c.newRequest(op, input, output)
output = &InvokeOutput{}
req.Data = output
return
}
// Invokes a specific Lambda function version.
//
// If you don't provide the Qualifier parameter, it uses the unqualified function
// ARN which results in invocation of the $LATEST version of the Lambda function
// (when you create a Lambda function, the $LATEST is the version). The AWS
// Lambda versioning and aliases feature allows you to publish multiple versions
// of a Lambda function and also create aliases for each function version. So
// each your Lambda function version can be invoked using multiple ARNs. For
// more information, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases-v2.html).
// Using the Qualifier parameter, you can specify a function version or alias
// name to invoke specific function version. If you specify function version,
// the API uses the qualified function ARN to invoke a specific function version.
// If you specify alias name, the API uses the alias ARN to invoke the function
// version to which the alias points.
//
// This operation requires permission for the lambda:InvokeFunction action.
func (c *Lambda) Invoke(input *InvokeInput) (*InvokeOutput, error) {
req, out := c.InvokeRequest(input)
err := req.Send()
return out, err
}
const opInvokeAsync = "InvokeAsync"
// InvokeAsyncRequest generates a request for the InvokeAsync operation.
func (c *Lambda) InvokeAsyncRequest(input *InvokeAsyncInput) (req *request.Request, output *InvokeAsyncOutput) {
op := &request.Operation{
Name: opInvokeAsync,
HTTPMethod: "POST",
HTTPPath: "/2014-11-13/functions/{FunctionName}/invoke-async/",
}
if input == nil {
input = &InvokeAsyncInput{}
}
req = c.newRequest(op, input, output)
output = &InvokeAsyncOutput{}
req.Data = output
return
}
// This API is deprecated. We recommend you use Invoke API (see Invoke). Submits
// an invocation request to AWS Lambda. Upon receiving the request, Lambda executes
// the specified function asynchronously. To see the logs generated by the Lambda
// function execution, see the CloudWatch logs console.
//
// This operation requires permission for the lambda:InvokeFunction action.
func (c *Lambda) InvokeAsync(input *InvokeAsyncInput) (*InvokeAsyncOutput, error) {
req, out := c.InvokeAsyncRequest(input)
err := req.Send()
return out, err
}
const opListAliases = "ListAliases"
// ListAliasesRequest generates a request for the ListAliases operation.
func (c *Lambda) ListAliasesRequest(input *ListAliasesInput) (req *request.Request, output *ListAliasesOutput) {
op := &request.Operation{
Name: opListAliases,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases",
}
if input == nil {
input = &ListAliasesInput{}
}
req = c.newRequest(op, input, output)
output = &ListAliasesOutput{}
req.Data = output
return
}
// Returns list of aliases created for a Lambda function. For each alias, the
// response includes information such as the alias ARN, description, alias name,
// and the function version to which it points. For more information, see Introduction
// to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-v2-intro-aliases.html)
//
// This requires permission for the lambda:ListAliases action.
func (c *Lambda) ListAliases(input *ListAliasesInput) (*ListAliasesOutput, error) {
req, out := c.ListAliasesRequest(input)
err := req.Send()
return out, err
}
const opListEventSourceMappings = "ListEventSourceMappings"
// ListEventSourceMappingsRequest generates a request for the ListEventSourceMappings operation.
func (c *Lambda) ListEventSourceMappingsRequest(input *ListEventSourceMappingsInput) (req *request.Request, output *ListEventSourceMappingsOutput) {
op := &request.Operation{
Name: opListEventSourceMappings,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/event-source-mappings/",
Paginator: &request.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListEventSourceMappingsInput{}
}
req = c.newRequest(op, input, output)
output = &ListEventSourceMappingsOutput{}
req.Data = output
return
}
// Returns a list of event source mappings you created using the CreateEventSourceMapping
// (see CreateEventSourceMapping), where you identify a stream as an event source.
// This list does not include Amazon S3 event sources.
//
// For each mapping, the API returns configuration information. You can optionally
// specify filters to retrieve specific event source mappings.
//
// This operation requires permission for the lambda:ListEventSourceMappings
// action.
func (c *Lambda) ListEventSourceMappings(input *ListEventSourceMappingsInput) (*ListEventSourceMappingsOutput, error) {
req, out := c.ListEventSourceMappingsRequest(input)
err := req.Send()
return out, err
}
func (c *Lambda) ListEventSourceMappingsPages(input *ListEventSourceMappingsInput, fn func(p *ListEventSourceMappingsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListEventSourceMappingsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListEventSourceMappingsOutput), lastPage)
})
}
const opListFunctions = "ListFunctions"
// ListFunctionsRequest generates a request for the ListFunctions operation.
func (c *Lambda) ListFunctionsRequest(input *ListFunctionsInput) (req *request.Request, output *ListFunctionsOutput) {
op := &request.Operation{
Name: opListFunctions,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/",
Paginator: &request.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListFunctionsInput{}
}
req = c.newRequest(op, input, output)
output = &ListFunctionsOutput{}
req.Data = output
return
}
// Returns a list of your Lambda functions. For each function, the response
// includes the function configuration information. You must use GetFunction
// to retrieve the code for your function.
//
// This operation requires permission for the lambda:ListFunctions action.
func (c *Lambda) ListFunctions(input *ListFunctionsInput) (*ListFunctionsOutput, error) {
req, out := c.ListFunctionsRequest(input)
err := req.Send()
return out, err
}
func (c *Lambda) ListFunctionsPages(input *ListFunctionsInput, fn func(p *ListFunctionsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListFunctionsRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListFunctionsOutput), lastPage)
})
}
const opListVersionsByFunction = "ListVersionsByFunction"
// ListVersionsByFunctionRequest generates a request for the ListVersionsByFunction operation.
func (c *Lambda) ListVersionsByFunctionRequest(input *ListVersionsByFunctionInput) (req *request.Request, output *ListVersionsByFunctionOutput) {
op := &request.Operation{
Name: opListVersionsByFunction,
HTTPMethod: "GET",
HTTPPath: "/2015-03-31/functions/{FunctionName}/versions",
}
if input == nil {
input = &ListVersionsByFunctionInput{}
}
req = c.newRequest(op, input, output)
output = &ListVersionsByFunctionOutput{}
req.Data = output
return
}
// List all versions of a function.
func (c *Lambda) ListVersionsByFunction(input *ListVersionsByFunctionInput) (*ListVersionsByFunctionOutput, error) {
req, out := c.ListVersionsByFunctionRequest(input)
err := req.Send()
return out, err
}
const opPublishVersion = "PublishVersion"
// PublishVersionRequest generates a request for the PublishVersion operation.
func (c *Lambda) PublishVersionRequest(input *PublishVersionInput) (req *request.Request, output *FunctionConfiguration) {
op := &request.Operation{
Name: opPublishVersion,
HTTPMethod: "POST",
HTTPPath: "/2015-03-31/functions/{FunctionName}/versions",
}
if input == nil {
input = &PublishVersionInput{}
}
req = c.newRequest(op, input, output)
output = &FunctionConfiguration{}
req.Data = output
return
}
// Publishes a version of your function from the current snapshot of HEAD. That
// is, AWS Lambda takes a snapshot of the function code and configuration information
// from HEAD and publishes a new version. The code and handler of this specific
// Lambda function version cannot be modified after publication, but you can
// modify the configuration information.
func (c *Lambda) PublishVersion(input *PublishVersionInput) (*FunctionConfiguration, error) {
req, out := c.PublishVersionRequest(input)
err := req.Send()
return out, err
}
const opRemovePermission = "RemovePermission"
// RemovePermissionRequest generates a request for the RemovePermission operation.
func (c *Lambda) RemovePermissionRequest(input *RemovePermissionInput) (req *request.Request, output *RemovePermissionOutput) {
op := &request.Operation{
Name: opRemovePermission,
HTTPMethod: "DELETE",
HTTPPath: "/2015-03-31/functions/{FunctionName}/policy/{StatementId}",
}
if input == nil {
input = &RemovePermissionInput{}
}
req = c.newRequest(op, input, output)
output = &RemovePermissionOutput{}
req.Data = output
return
}
// You can remove individual permissions from an resource policy associated
// with a Lambda function by providing a statement ID that you provided when
// you addded the permission. The API removes corresponding permission that
// is associated with the specific ARN identified by the Qualifier parameter.
//
// Note that removal of a permission will cause an active event source to lose
// permission to the function.
//
// You need permission for the lambda:RemovePermission action.
func (c *Lambda) RemovePermission(input *RemovePermissionInput) (*RemovePermissionOutput, error) {
req, out := c.RemovePermissionRequest(input)
err := req.Send()
return out, err
}
const opUpdateAlias = "UpdateAlias"
// UpdateAliasRequest generates a request for the UpdateAlias operation.
func (c *Lambda) UpdateAliasRequest(input *UpdateAliasInput) (req *request.Request, output *AliasConfiguration) {
op := &request.Operation{
Name: opUpdateAlias,
HTTPMethod: "PUT",
HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
}
if input == nil {
input = &UpdateAliasInput{}
}
req = c.newRequest(op, input, output)
output = &AliasConfiguration{}
req.Data = output
return
}
// Using this API you can update function version to which the alias points
// to and alias description. For more information, see Introduction to AWS Lambda
// Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-v2-intro-aliases.html)
//
// This requires permission for the lambda:UpdateAlias action.
func (c *Lambda) UpdateAlias(input *UpdateAliasInput) (*AliasConfiguration, error) {
req, out := c.UpdateAliasRequest(input)
err := req.Send()
return out, err
}
const opUpdateEventSourceMapping = "UpdateEventSourceMapping"
// UpdateEventSourceMappingRequest generates a request for the UpdateEventSourceMapping operation.
func (c *Lambda) UpdateEventSourceMappingRequest(input *UpdateEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
op := &request.Operation{
Name: opUpdateEventSourceMapping,
HTTPMethod: "PUT",
HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
}
if input == nil {
input = &UpdateEventSourceMappingInput{}
}
req = c.newRequest(op, input, output)
output = &EventSourceMappingConfiguration{}
req.Data = output
return
}
// You can update an event source mapping. This is useful if you want to change
// the parameters of the existing mapping without losing your position in the
// stream. You can change which function will receive the stream records, but
// to change the stream itself, you must create a new mapping.
//
// This operation requires permission for the lambda:UpdateEventSourceMapping
// action.
func (c *Lambda) UpdateEventSourceMapping(input *UpdateEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
req, out := c.UpdateEventSourceMappingRequest(input)
err := req.Send()
return out, err
}
const opUpdateFunctionCode = "UpdateFunctionCode"
// UpdateFunctionCodeRequest generates a request for the UpdateFunctionCode operation.
func (c *Lambda) UpdateFunctionCodeRequest(input *UpdateFunctionCodeInput) (req *request.Request, output *FunctionConfiguration) {
op := &request.Operation{
Name: opUpdateFunctionCode,
HTTPMethod: "PUT",
HTTPPath: "/2015-03-31/functions/{FunctionName}/code",
}
if input == nil {
input = &UpdateFunctionCodeInput{}
}
req = c.newRequest(op, input, output)
output = &FunctionConfiguration{}
req.Data = output
return
}
// Updates the code for the specified Lambda function. This operation must only
// be used on an existing Lambda function and cannot be used to update the function
// configuration.
//
// This operation requires permission for the lambda:UpdateFunctionCode action.
func (c *Lambda) UpdateFunctionCode(input *UpdateFunctionCodeInput) (*FunctionConfiguration, error) {
req, out := c.UpdateFunctionCodeRequest(input)
err := req.Send()
return out, err
}
const opUpdateFunctionConfiguration = "UpdateFunctionConfiguration"
// UpdateFunctionConfigurationRequest generates a request for the UpdateFunctionConfiguration operation.
func (c *Lambda) UpdateFunctionConfigurationRequest(input *UpdateFunctionConfigurationInput) (req *request.Request, output *FunctionConfiguration) {
op := &request.Operation{
Name: opUpdateFunctionConfiguration,
HTTPMethod: "PUT",
HTTPPath: "/2015-03-31/functions/{FunctionName}/configuration",
}
if input == nil {
input = &UpdateFunctionConfigurationInput{}
}
req = c.newRequest(op, input, output)
output = &FunctionConfiguration{}
req.Data = output
return
}
// Updates the configuration parameters for the specified Lambda function by
// using the values provided in the request. You provide only the parameters
// you want to change. This operation must only be used on an existing Lambda
// function and cannot be used to update the function's code.
//
// This operation requires permission for the lambda:UpdateFunctionConfiguration
// action.
func (c *Lambda) UpdateFunctionConfiguration(input *UpdateFunctionConfigurationInput) (*FunctionConfiguration, error) {
req, out := c.UpdateFunctionConfigurationRequest(input)
err := req.Send()
return out, err
}
type AddPermissionInput struct {
// The AWS Lambda action you want to allow in this statement. Each Lambda action
// is a string starting with "lambda:" followed by the API name (see Operations).
// For example, "lambda:CreateFunction". You can use wildcard ("lambda:*") to
// grant permission for all AWS Lambda actions.
Action *string `type:"string" required:"true"`
// Name of the Lambda function whose resource policy you are updating by adding
// a new permission.
//
// You can specify an unqualified function name (for example, "Thumbnail")
// or you can specify Amazon Resource Name (ARN) of the function (for example,
// "arn:aws:lambda:us-west-2:account-id:function:ThumbNail"). AWS Lambda also
// allows you to specify only the account ID qualifier (for example, "account-id:Thumbnail").
// Note that the length constraint applies only to the ARN. If you specify only
// the function name, it is limited to 64 character in length.
FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
// The principal who is getting this permission. It can be Amazon S3 service
// Principal ("s3.amazonaws.com") if you want Amazon S3 to invoke the function,
// an AWS account ID if you are granting cross-account permission, or any valid
// AWS service principal such as "sns.amazonaws.com". For example, you might
// want to allow a custom application in another AWS account to push events
// to AWS Lambda by invoking your function.
Principal *string `type:"string" required:"true"`
// You can specify this optional query parameter to specify function version
// or alias name. The permission will then apply to the specific qualified ARN.
// For example, if you specify function version 2 as the qualifier, then permission
// applies only when request is made using qualified function ARN:
//
// arn:aws:lambda:aws-region:acct-id:function:function-name:2
//
// If you specify alias name, for example "PROD", then the permission is valid
// only for requests made using the alias ARN:
//
// arn:aws:lambda:aws-region:acct-id:function:function-name:PROD
//
// If the qualifier is not specified, the permission is valid only when requests
// is made using unqualified function ARN.
//
// arn:aws:lambda:aws-region:acct-id:function:function-name
Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
// The AWS account ID (without a hyphen) of the source owner. For example, if
// the SourceArn identifies a bucket, then this is the bucket owner's account
// ID. You can use this additional condition to ensure the bucket you specify
// is owned by a specific account (it is possible the bucket owner deleted the
// bucket and some other AWS account created the bucket). You can also use this
// condition to specify all sources (that is, you don't specify the SourceArn)
// owned by a specific account.
SourceAccount *string `type:"string"`
// This is optional; however, when granting Amazon S3 permission to invoke your
// function, you should specify this field with the bucket Amazon Resource Name
// (ARN) as its value. This ensures that only events generated from the specified
// bucket can invoke the function.
//
// If you add a permission for the Amazon S3 principal without providing the
// source ARN, any AWS account that creates a mapping to your function ARN can
// send events to invoke your Lambda function from Amazon S3.
SourceArn *string `type:"string"`
// A unique statement identifier.
StatementId *string `min:"1" type:"string" required:"true"`
metadataAddPermissionInput `json:"-" xml:"-"`
}
type metadataAddPermissionInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s AddPermissionInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddPermissionInput) GoString() string {
return s.String()
}
type AddPermissionOutput struct {
// The permission statement you specified in the request. The response returns
// the same as a string using "\" as an escape character in the JSON.
Statement *string `type:"string"`
metadataAddPermissionOutput `json:"-" xml:"-"`
}
type metadataAddPermissionOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s AddPermissionOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AddPermissionOutput) GoString() string {
return s.String()
}
// Provides configuration information about a Lambda function version alias.
type AliasConfiguration struct {
// Lambda function ARN that is qualified using alias name as the suffix. For
// example, if you create an alias "BETA" pointing to a helloworld function
// version, the ARN is arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA.
AliasArn *string `type:"string"`
// Alias description.
Description *string `type:"string"`
// Function version to which the alias points.
FunctionVersion *string `min:"1" type:"string"`
// Alias name.
Name *string `min:"1" type:"string"`
metadataAliasConfiguration `json:"-" xml:"-"`
}
type metadataAliasConfiguration struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s AliasConfiguration) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s AliasConfiguration) GoString() string {
return s.String()
}
type CreateAliasInput struct {
// Description of the alias.
Description *string `type:"string"`
// Name of the Lambda function for which you want to create an alias.
FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
// Lambda function version for which you are creating the alias.
FunctionVersion *string `min:"1" type:"string" required:"true"`