forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
5017 lines (4187 loc) · 168 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 ses provides a client for Amazon Simple Email Service.
package ses
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/query"
)
const opCloneReceiptRuleSet = "CloneReceiptRuleSet"
// CloneReceiptRuleSetRequest generates a request for the CloneReceiptRuleSet operation.
func (c *SES) CloneReceiptRuleSetRequest(input *CloneReceiptRuleSetInput) (req *request.Request, output *CloneReceiptRuleSetOutput) {
op := &request.Operation{
Name: opCloneReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CloneReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &CloneReceiptRuleSetOutput{}
req.Data = output
return
}
// Creates a receipt rule set by cloning an existing one. All receipt rules
// and configurations are copied to the new receipt rule set and are completely
// independent of the source rule set.
//
// For information about setting up rule sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).
//
// This action is throttled at one request per second.
func (c *SES) CloneReceiptRuleSet(input *CloneReceiptRuleSetInput) (*CloneReceiptRuleSetOutput, error) {
req, out := c.CloneReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opCreateReceiptFilter = "CreateReceiptFilter"
// CreateReceiptFilterRequest generates a request for the CreateReceiptFilter operation.
func (c *SES) CreateReceiptFilterRequest(input *CreateReceiptFilterInput) (req *request.Request, output *CreateReceiptFilterOutput) {
op := &request.Operation{
Name: opCreateReceiptFilter,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptFilterInput{}
}
req = c.newRequest(op, input, output)
output = &CreateReceiptFilterOutput{}
req.Data = output
return
}
// Creates a new IP address filter.
//
// For information about setting up IP address filters, see the Amazon SES
// Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-ip-filters.html).
//
// This action is throttled at one request per second.
func (c *SES) CreateReceiptFilter(input *CreateReceiptFilterInput) (*CreateReceiptFilterOutput, error) {
req, out := c.CreateReceiptFilterRequest(input)
err := req.Send()
return out, err
}
const opCreateReceiptRule = "CreateReceiptRule"
// CreateReceiptRuleRequest generates a request for the CreateReceiptRule operation.
func (c *SES) CreateReceiptRuleRequest(input *CreateReceiptRuleInput) (req *request.Request, output *CreateReceiptRuleOutput) {
op := &request.Operation{
Name: opCreateReceiptRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptRuleInput{}
}
req = c.newRequest(op, input, output)
output = &CreateReceiptRuleOutput{}
req.Data = output
return
}
// Creates a receipt rule.
//
// For information about setting up receipt rules, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).
//
// This action is throttled at one request per second.
func (c *SES) CreateReceiptRule(input *CreateReceiptRuleInput) (*CreateReceiptRuleOutput, error) {
req, out := c.CreateReceiptRuleRequest(input)
err := req.Send()
return out, err
}
const opCreateReceiptRuleSet = "CreateReceiptRuleSet"
// CreateReceiptRuleSetRequest generates a request for the CreateReceiptRuleSet operation.
func (c *SES) CreateReceiptRuleSetRequest(input *CreateReceiptRuleSetInput) (req *request.Request, output *CreateReceiptRuleSetOutput) {
op := &request.Operation{
Name: opCreateReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &CreateReceiptRuleSetOutput{}
req.Data = output
return
}
// Creates an empty receipt rule set.
//
// For information about setting up receipt rule sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).
//
// This action is throttled at one request per second.
func (c *SES) CreateReceiptRuleSet(input *CreateReceiptRuleSetInput) (*CreateReceiptRuleSetOutput, error) {
req, out := c.CreateReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteIdentity = "DeleteIdentity"
// DeleteIdentityRequest generates a request for the DeleteIdentity operation.
func (c *SES) DeleteIdentityRequest(input *DeleteIdentityInput) (req *request.Request, output *DeleteIdentityOutput) {
op := &request.Operation{
Name: opDeleteIdentity,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIdentityInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteIdentityOutput{}
req.Data = output
return
}
// Deletes the specified identity (email address or domain) from the list of
// verified identities.
//
// This action is throttled at one request per second.
func (c *SES) DeleteIdentity(input *DeleteIdentityInput) (*DeleteIdentityOutput, error) {
req, out := c.DeleteIdentityRequest(input)
err := req.Send()
return out, err
}
const opDeleteIdentityPolicy = "DeleteIdentityPolicy"
// DeleteIdentityPolicyRequest generates a request for the DeleteIdentityPolicy operation.
func (c *SES) DeleteIdentityPolicyRequest(input *DeleteIdentityPolicyInput) (req *request.Request, output *DeleteIdentityPolicyOutput) {
op := &request.Operation{
Name: opDeleteIdentityPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIdentityPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteIdentityPolicyOutput{}
req.Data = output
return
}
// Deletes the specified sending authorization policy for the given identity
// (email address or domain). This API returns successfully even if a policy
// with the specified name does not exist.
//
// This API is for the identity owner only. If you have not verified the identity,
// this API will return an error. Sending authorization is a feature that enables
// an identity owner to authorize other senders to use its identities. For information
// about using sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
//
// This action is throttled at one request per second.
func (c *SES) DeleteIdentityPolicy(input *DeleteIdentityPolicyInput) (*DeleteIdentityPolicyOutput, error) {
req, out := c.DeleteIdentityPolicyRequest(input)
err := req.Send()
return out, err
}
const opDeleteReceiptFilter = "DeleteReceiptFilter"
// DeleteReceiptFilterRequest generates a request for the DeleteReceiptFilter operation.
func (c *SES) DeleteReceiptFilterRequest(input *DeleteReceiptFilterInput) (req *request.Request, output *DeleteReceiptFilterOutput) {
op := &request.Operation{
Name: opDeleteReceiptFilter,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptFilterInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteReceiptFilterOutput{}
req.Data = output
return
}
// Deletes the specified IP address filter.
//
// For information about managing IP address filters, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html).
//
// This action is throttled at one request per second.
func (c *SES) DeleteReceiptFilter(input *DeleteReceiptFilterInput) (*DeleteReceiptFilterOutput, error) {
req, out := c.DeleteReceiptFilterRequest(input)
err := req.Send()
return out, err
}
const opDeleteReceiptRule = "DeleteReceiptRule"
// DeleteReceiptRuleRequest generates a request for the DeleteReceiptRule operation.
func (c *SES) DeleteReceiptRuleRequest(input *DeleteReceiptRuleInput) (req *request.Request, output *DeleteReceiptRuleOutput) {
op := &request.Operation{
Name: opDeleteReceiptRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptRuleInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteReceiptRuleOutput{}
req.Data = output
return
}
// Deletes the specified receipt rule.
//
// For information about managing receipt rules, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rules.html).
//
// This action is throttled at one request per second.
func (c *SES) DeleteReceiptRule(input *DeleteReceiptRuleInput) (*DeleteReceiptRuleOutput, error) {
req, out := c.DeleteReceiptRuleRequest(input)
err := req.Send()
return out, err
}
const opDeleteReceiptRuleSet = "DeleteReceiptRuleSet"
// DeleteReceiptRuleSetRequest generates a request for the DeleteReceiptRuleSet operation.
func (c *SES) DeleteReceiptRuleSetRequest(input *DeleteReceiptRuleSetInput) (req *request.Request, output *DeleteReceiptRuleSetOutput) {
op := &request.Operation{
Name: opDeleteReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteReceiptRuleSetOutput{}
req.Data = output
return
}
// Deletes the specified receipt rule set and all of the receipt rules it contains.
//
// The currently active rule set cannot be deleted. For information about managing
// receipt rule sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
//
// This action is throttled at one request per second.
func (c *SES) DeleteReceiptRuleSet(input *DeleteReceiptRuleSetInput) (*DeleteReceiptRuleSetOutput, error) {
req, out := c.DeleteReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opDeleteVerifiedEmailAddress = "DeleteVerifiedEmailAddress"
// DeleteVerifiedEmailAddressRequest generates a request for the DeleteVerifiedEmailAddress operation.
func (c *SES) DeleteVerifiedEmailAddressRequest(input *DeleteVerifiedEmailAddressInput) (req *request.Request, output *DeleteVerifiedEmailAddressOutput) {
op := &request.Operation{
Name: opDeleteVerifiedEmailAddress,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteVerifiedEmailAddressInput{}
}
req = c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(query.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output = &DeleteVerifiedEmailAddressOutput{}
req.Data = output
return
}
// Deletes the specified email address from the list of verified addresses.
//
// The DeleteVerifiedEmailAddress action is deprecated as of the May 15, 2012
// release of Domain Verification. The DeleteIdentity action is now preferred.
// This action is throttled at one request per second.
func (c *SES) DeleteVerifiedEmailAddress(input *DeleteVerifiedEmailAddressInput) (*DeleteVerifiedEmailAddressOutput, error) {
req, out := c.DeleteVerifiedEmailAddressRequest(input)
err := req.Send()
return out, err
}
const opDescribeActiveReceiptRuleSet = "DescribeActiveReceiptRuleSet"
// DescribeActiveReceiptRuleSetRequest generates a request for the DescribeActiveReceiptRuleSet operation.
func (c *SES) DescribeActiveReceiptRuleSetRequest(input *DescribeActiveReceiptRuleSetInput) (req *request.Request, output *DescribeActiveReceiptRuleSetOutput) {
op := &request.Operation{
Name: opDescribeActiveReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeActiveReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeActiveReceiptRuleSetOutput{}
req.Data = output
return
}
// Returns the metadata and receipt rules for the receipt rule set that is currently
// active.
//
// For information about setting up receipt rule sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rule-set.html).
//
// This action is throttled at one request per second.
func (c *SES) DescribeActiveReceiptRuleSet(input *DescribeActiveReceiptRuleSetInput) (*DescribeActiveReceiptRuleSetOutput, error) {
req, out := c.DescribeActiveReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opDescribeReceiptRule = "DescribeReceiptRule"
// DescribeReceiptRuleRequest generates a request for the DescribeReceiptRule operation.
func (c *SES) DescribeReceiptRuleRequest(input *DescribeReceiptRuleInput) (req *request.Request, output *DescribeReceiptRuleOutput) {
op := &request.Operation{
Name: opDescribeReceiptRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeReceiptRuleInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeReceiptRuleOutput{}
req.Data = output
return
}
// Returns the details of the specified receipt rule.
//
// For information about setting up receipt rules, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-receipt-rules.html).
//
// This action is throttled at one request per second.
func (c *SES) DescribeReceiptRule(input *DescribeReceiptRuleInput) (*DescribeReceiptRuleOutput, error) {
req, out := c.DescribeReceiptRuleRequest(input)
err := req.Send()
return out, err
}
const opDescribeReceiptRuleSet = "DescribeReceiptRuleSet"
// DescribeReceiptRuleSetRequest generates a request for the DescribeReceiptRuleSet operation.
func (c *SES) DescribeReceiptRuleSetRequest(input *DescribeReceiptRuleSetInput) (req *request.Request, output *DescribeReceiptRuleSetOutput) {
op := &request.Operation{
Name: opDescribeReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &DescribeReceiptRuleSetOutput{}
req.Data = output
return
}
// Returns the details of the specified receipt rule set.
//
// For information about managing receipt rule sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
//
// This action is throttled at one request per second.
func (c *SES) DescribeReceiptRuleSet(input *DescribeReceiptRuleSetInput) (*DescribeReceiptRuleSetOutput, error) {
req, out := c.DescribeReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opGetIdentityDkimAttributes = "GetIdentityDkimAttributes"
// GetIdentityDkimAttributesRequest generates a request for the GetIdentityDkimAttributes operation.
func (c *SES) GetIdentityDkimAttributesRequest(input *GetIdentityDkimAttributesInput) (req *request.Request, output *GetIdentityDkimAttributesOutput) {
op := &request.Operation{
Name: opGetIdentityDkimAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIdentityDkimAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &GetIdentityDkimAttributesOutput{}
req.Data = output
return
}
// Returns the current status of Easy DKIM signing for an entity. For domain
// name identities, this action also returns the DKIM tokens that are required
// for Easy DKIM signing, and whether Amazon SES has successfully verified that
// these tokens have been published.
//
// This action takes a list of identities as input and returns the following
// information for each:
//
// Whether Easy DKIM signing is enabled or disabled. A set of DKIM tokens
// that represent the identity. If the identity is an email address, the tokens
// represent the domain of that address. Whether Amazon SES has successfully
// verified the DKIM tokens published in the domain's DNS. This information
// is only returned for domain name identities, not for email addresses. This
// action is throttled at one request per second and can only get DKIM attributes
// for up to 100 identities at a time.
//
// For more information about creating DNS records using DKIM tokens, go to
// the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim-dns-records.html).
func (c *SES) GetIdentityDkimAttributes(input *GetIdentityDkimAttributesInput) (*GetIdentityDkimAttributesOutput, error) {
req, out := c.GetIdentityDkimAttributesRequest(input)
err := req.Send()
return out, err
}
const opGetIdentityMailFromDomainAttributes = "GetIdentityMailFromDomainAttributes"
// GetIdentityMailFromDomainAttributesRequest generates a request for the GetIdentityMailFromDomainAttributes operation.
func (c *SES) GetIdentityMailFromDomainAttributesRequest(input *GetIdentityMailFromDomainAttributesInput) (req *request.Request, output *GetIdentityMailFromDomainAttributesOutput) {
op := &request.Operation{
Name: opGetIdentityMailFromDomainAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIdentityMailFromDomainAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &GetIdentityMailFromDomainAttributesOutput{}
req.Data = output
return
}
// Returns the custom MAIL FROM attributes for a list of identities (email addresses
// and/or domains).
//
// This action is throttled at one request per second and can only get custom
// MAIL FROM attributes for up to 100 identities at a time.
func (c *SES) GetIdentityMailFromDomainAttributes(input *GetIdentityMailFromDomainAttributesInput) (*GetIdentityMailFromDomainAttributesOutput, error) {
req, out := c.GetIdentityMailFromDomainAttributesRequest(input)
err := req.Send()
return out, err
}
const opGetIdentityNotificationAttributes = "GetIdentityNotificationAttributes"
// GetIdentityNotificationAttributesRequest generates a request for the GetIdentityNotificationAttributes operation.
func (c *SES) GetIdentityNotificationAttributesRequest(input *GetIdentityNotificationAttributesInput) (req *request.Request, output *GetIdentityNotificationAttributesOutput) {
op := &request.Operation{
Name: opGetIdentityNotificationAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIdentityNotificationAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &GetIdentityNotificationAttributesOutput{}
req.Data = output
return
}
// Given a list of verified identities (email addresses and/or domains), returns
// a structure describing identity notification attributes.
//
// This action is throttled at one request per second and can only get notification
// attributes for up to 100 identities at a time.
//
// For more information about using notifications with Amazon SES, see the
// Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notifications.html).
func (c *SES) GetIdentityNotificationAttributes(input *GetIdentityNotificationAttributesInput) (*GetIdentityNotificationAttributesOutput, error) {
req, out := c.GetIdentityNotificationAttributesRequest(input)
err := req.Send()
return out, err
}
const opGetIdentityPolicies = "GetIdentityPolicies"
// GetIdentityPoliciesRequest generates a request for the GetIdentityPolicies operation.
func (c *SES) GetIdentityPoliciesRequest(input *GetIdentityPoliciesInput) (req *request.Request, output *GetIdentityPoliciesOutput) {
op := &request.Operation{
Name: opGetIdentityPolicies,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIdentityPoliciesInput{}
}
req = c.newRequest(op, input, output)
output = &GetIdentityPoliciesOutput{}
req.Data = output
return
}
// Returns the requested sending authorization policies for the given identity
// (email address or domain). The policies are returned as a map of policy names
// to policy contents. You can retrieve a maximum of 20 policies at a time.
//
// This API is for the identity owner only. If you have not verified the identity,
// this API will return an error. Sending authorization is a feature that enables
// an identity owner to authorize other senders to use its identities. For information
// about using sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
//
// This action is throttled at one request per second.
func (c *SES) GetIdentityPolicies(input *GetIdentityPoliciesInput) (*GetIdentityPoliciesOutput, error) {
req, out := c.GetIdentityPoliciesRequest(input)
err := req.Send()
return out, err
}
const opGetIdentityVerificationAttributes = "GetIdentityVerificationAttributes"
// GetIdentityVerificationAttributesRequest generates a request for the GetIdentityVerificationAttributes operation.
func (c *SES) GetIdentityVerificationAttributesRequest(input *GetIdentityVerificationAttributesInput) (req *request.Request, output *GetIdentityVerificationAttributesOutput) {
op := &request.Operation{
Name: opGetIdentityVerificationAttributes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetIdentityVerificationAttributesInput{}
}
req = c.newRequest(op, input, output)
output = &GetIdentityVerificationAttributesOutput{}
req.Data = output
return
}
// Given a list of identities (email addresses and/or domains), returns the
// verification status and (for domain identities) the verification token for
// each identity.
//
// This action is throttled at one request per second and can only get verification
// attributes for up to 100 identities at a time.
func (c *SES) GetIdentityVerificationAttributes(input *GetIdentityVerificationAttributesInput) (*GetIdentityVerificationAttributesOutput, error) {
req, out := c.GetIdentityVerificationAttributesRequest(input)
err := req.Send()
return out, err
}
const opGetSendQuota = "GetSendQuota"
// GetSendQuotaRequest generates a request for the GetSendQuota operation.
func (c *SES) GetSendQuotaRequest(input *GetSendQuotaInput) (req *request.Request, output *GetSendQuotaOutput) {
op := &request.Operation{
Name: opGetSendQuota,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetSendQuotaInput{}
}
req = c.newRequest(op, input, output)
output = &GetSendQuotaOutput{}
req.Data = output
return
}
// Returns the user's current sending limits.
//
// This action is throttled at one request per second.
func (c *SES) GetSendQuota(input *GetSendQuotaInput) (*GetSendQuotaOutput, error) {
req, out := c.GetSendQuotaRequest(input)
err := req.Send()
return out, err
}
const opGetSendStatistics = "GetSendStatistics"
// GetSendStatisticsRequest generates a request for the GetSendStatistics operation.
func (c *SES) GetSendStatisticsRequest(input *GetSendStatisticsInput) (req *request.Request, output *GetSendStatisticsOutput) {
op := &request.Operation{
Name: opGetSendStatistics,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetSendStatisticsInput{}
}
req = c.newRequest(op, input, output)
output = &GetSendStatisticsOutput{}
req.Data = output
return
}
// Returns the user's sending statistics. The result is a list of data points,
// representing the last two weeks of sending activity.
//
// Each data point in the list contains statistics for a 15-minute interval.
//
// This action is throttled at one request per second.
func (c *SES) GetSendStatistics(input *GetSendStatisticsInput) (*GetSendStatisticsOutput, error) {
req, out := c.GetSendStatisticsRequest(input)
err := req.Send()
return out, err
}
const opListIdentities = "ListIdentities"
// ListIdentitiesRequest generates a request for the ListIdentities operation.
func (c *SES) ListIdentitiesRequest(input *ListIdentitiesInput) (req *request.Request, output *ListIdentitiesOutput) {
op := &request.Operation{
Name: opListIdentities,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &request.Paginator{
InputTokens: []string{"NextToken"},
OutputTokens: []string{"NextToken"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListIdentitiesInput{}
}
req = c.newRequest(op, input, output)
output = &ListIdentitiesOutput{}
req.Data = output
return
}
// Returns a list containing all of the identities (email addresses and domains)
// for a specific AWS Account, regardless of verification status.
//
// This action is throttled at one request per second.
func (c *SES) ListIdentities(input *ListIdentitiesInput) (*ListIdentitiesOutput, error) {
req, out := c.ListIdentitiesRequest(input)
err := req.Send()
return out, err
}
func (c *SES) ListIdentitiesPages(input *ListIdentitiesInput, fn func(p *ListIdentitiesOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListIdentitiesRequest(input)
page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListIdentitiesOutput), lastPage)
})
}
const opListIdentityPolicies = "ListIdentityPolicies"
// ListIdentityPoliciesRequest generates a request for the ListIdentityPolicies operation.
func (c *SES) ListIdentityPoliciesRequest(input *ListIdentityPoliciesInput) (req *request.Request, output *ListIdentityPoliciesOutput) {
op := &request.Operation{
Name: opListIdentityPolicies,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListIdentityPoliciesInput{}
}
req = c.newRequest(op, input, output)
output = &ListIdentityPoliciesOutput{}
req.Data = output
return
}
// Returns a list of sending authorization policies that are attached to the
// given identity (email address or domain). This API returns only a list. If
// you want the actual policy content, you can use GetIdentityPolicies.
//
// This API is for the identity owner only. If you have not verified the identity,
// this API will return an error. Sending authorization is a feature that enables
// an identity owner to authorize other senders to use its identities. For information
// about using sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
//
// This action is throttled at one request per second.
func (c *SES) ListIdentityPolicies(input *ListIdentityPoliciesInput) (*ListIdentityPoliciesOutput, error) {
req, out := c.ListIdentityPoliciesRequest(input)
err := req.Send()
return out, err
}
const opListReceiptFilters = "ListReceiptFilters"
// ListReceiptFiltersRequest generates a request for the ListReceiptFilters operation.
func (c *SES) ListReceiptFiltersRequest(input *ListReceiptFiltersInput) (req *request.Request, output *ListReceiptFiltersOutput) {
op := &request.Operation{
Name: opListReceiptFilters,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListReceiptFiltersInput{}
}
req = c.newRequest(op, input, output)
output = &ListReceiptFiltersOutput{}
req.Data = output
return
}
// Lists the IP address filters associated with your account.
//
// For information about managing IP address filters, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-ip-filters.html).
//
// This action is throttled at one request per second.
func (c *SES) ListReceiptFilters(input *ListReceiptFiltersInput) (*ListReceiptFiltersOutput, error) {
req, out := c.ListReceiptFiltersRequest(input)
err := req.Send()
return out, err
}
const opListReceiptRuleSets = "ListReceiptRuleSets"
// ListReceiptRuleSetsRequest generates a request for the ListReceiptRuleSets operation.
func (c *SES) ListReceiptRuleSetsRequest(input *ListReceiptRuleSetsInput) (req *request.Request, output *ListReceiptRuleSetsOutput) {
op := &request.Operation{
Name: opListReceiptRuleSets,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListReceiptRuleSetsInput{}
}
req = c.newRequest(op, input, output)
output = &ListReceiptRuleSetsOutput{}
req.Data = output
return
}
// Lists the receipt rule sets that exist under your AWS account. If there are
// additional receipt rule sets to be retrieved, you will receive a NextToken
// that you can provide to the next call to ListReceiptRuleSets to retrieve
// the additional entries.
//
// For information about managing receipt rule sets, see the Amazon SES Developer
// Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
//
// This action is throttled at one request per second.
func (c *SES) ListReceiptRuleSets(input *ListReceiptRuleSetsInput) (*ListReceiptRuleSetsOutput, error) {
req, out := c.ListReceiptRuleSetsRequest(input)
err := req.Send()
return out, err
}
const opListVerifiedEmailAddresses = "ListVerifiedEmailAddresses"
// ListVerifiedEmailAddressesRequest generates a request for the ListVerifiedEmailAddresses operation.
func (c *SES) ListVerifiedEmailAddressesRequest(input *ListVerifiedEmailAddressesInput) (req *request.Request, output *ListVerifiedEmailAddressesOutput) {
op := &request.Operation{
Name: opListVerifiedEmailAddresses,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListVerifiedEmailAddressesInput{}
}
req = c.newRequest(op, input, output)
output = &ListVerifiedEmailAddressesOutput{}
req.Data = output
return
}
// Returns a list containing all of the email addresses that have been verified.
//
// The ListVerifiedEmailAddresses action is deprecated as of the May 15, 2012
// release of Domain Verification. The ListIdentities action is now preferred.
// This action is throttled at one request per second.
func (c *SES) ListVerifiedEmailAddresses(input *ListVerifiedEmailAddressesInput) (*ListVerifiedEmailAddressesOutput, error) {
req, out := c.ListVerifiedEmailAddressesRequest(input)
err := req.Send()
return out, err
}
const opPutIdentityPolicy = "PutIdentityPolicy"
// PutIdentityPolicyRequest generates a request for the PutIdentityPolicy operation.
func (c *SES) PutIdentityPolicyRequest(input *PutIdentityPolicyInput) (req *request.Request, output *PutIdentityPolicyOutput) {
op := &request.Operation{
Name: opPutIdentityPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &PutIdentityPolicyInput{}
}
req = c.newRequest(op, input, output)
output = &PutIdentityPolicyOutput{}
req.Data = output
return
}
// Adds or updates a sending authorization policy for the specified identity
// (email address or domain).
//
// This API is for the identity owner only. If you have not verified the identity,
// this API will return an error. Sending authorization is a feature that enables
// an identity owner to authorize other senders to use its identities. For information
// about using sending authorization, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/sending-authorization.html).
//
// This action is throttled at one request per second.
func (c *SES) PutIdentityPolicy(input *PutIdentityPolicyInput) (*PutIdentityPolicyOutput, error) {
req, out := c.PutIdentityPolicyRequest(input)
err := req.Send()
return out, err
}
const opReorderReceiptRuleSet = "ReorderReceiptRuleSet"
// ReorderReceiptRuleSetRequest generates a request for the ReorderReceiptRuleSet operation.
func (c *SES) ReorderReceiptRuleSetRequest(input *ReorderReceiptRuleSetInput) (req *request.Request, output *ReorderReceiptRuleSetOutput) {
op := &request.Operation{
Name: opReorderReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ReorderReceiptRuleSetInput{}
}
req = c.newRequest(op, input, output)
output = &ReorderReceiptRuleSetOutput{}
req.Data = output
return
}
// Reorders the receipt rules within a receipt rule set.
//
// All of the rules in the rule set must be represented in this request. That
// is, this API will return an error if the reorder request doesn't explicitly
// position all of the rules. For information about managing receipt rule sets,
// see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-managing-receipt-rule-sets.html).
//
// This action is throttled at one request per second.
func (c *SES) ReorderReceiptRuleSet(input *ReorderReceiptRuleSetInput) (*ReorderReceiptRuleSetOutput, error) {
req, out := c.ReorderReceiptRuleSetRequest(input)
err := req.Send()
return out, err
}
const opSendBounce = "SendBounce"
// SendBounceRequest generates a request for the SendBounce operation.
func (c *SES) SendBounceRequest(input *SendBounceInput) (req *request.Request, output *SendBounceOutput) {
op := &request.Operation{
Name: opSendBounce,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SendBounceInput{}
}
req = c.newRequest(op, input, output)
output = &SendBounceOutput{}
req.Data = output
return
}
// Generates and sends a bounce message to the sender of an email you received
// through Amazon SES. You can only use this API on an email up to 24 hours
// after you receive it.
//
// You cannot use this API to send generic bounces for mail that was not received
// by Amazon SES. For information about receiving email through Amazon SES,
// see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email.html).
//
// This action is throttled at one request per second.
func (c *SES) SendBounce(input *SendBounceInput) (*SendBounceOutput, error) {
req, out := c.SendBounceRequest(input)
err := req.Send()
return out, err
}
const opSendEmail = "SendEmail"
// SendEmailRequest generates a request for the SendEmail operation.
func (c *SES) SendEmailRequest(input *SendEmailInput) (req *request.Request, output *SendEmailOutput) {
op := &request.Operation{
Name: opSendEmail,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &SendEmailInput{}
}
req = c.newRequest(op, input, output)
output = &SendEmailOutput{}
req.Data = output
return
}
// Composes an email message based on input data, and then immediately queues
// the message for sending.
//
// There are several important points to know about SendEmail:
//
// You can only send email from verified email addresses and domains; otherwise,
// you will get an "Email address not verified" error. If your account is still
// in the Amazon SES sandbox, you must also verify every recipient email address
// except for the recipients provided by the Amazon SES mailbox simulator. For
// more information, go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-addresses-and-domains.html).
// The total size of the message cannot exceed 10 MB. This includes any attachments
// that are part of the message. Amazon SES has a limit on the total number
// of recipients per message. The combined number of To:, CC: and BCC: email
// addresses cannot exceed 50. If you need to send an email message to a larger
// audience, you can divide your recipient list into groups of 50 or fewer,
// and then call Amazon SES repeatedly to send the message to each group. For
// every message that you send, the total number of recipients (To:, CC: and
// BCC:) is counted against your sending quota - the maximum number of emails
// you can send in a 24-hour period. For information about your sending quota,
// go to the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/manage-sending-limits.html).
func (c *SES) SendEmail(input *SendEmailInput) (*SendEmailOutput, error) {
req, out := c.SendEmailRequest(input)
err := req.Send()