forked from aws/aws-sdk-go-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
10196 lines (8529 loc) · 345 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package ses
import (
"fmt"
"time"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
"github.com/aws/aws-sdk-go-v2/private/protocol"
"github.com/aws/aws-sdk-go-v2/private/protocol/query"
)
const opCloneReceiptRuleSet = "CloneReceiptRuleSet"
// CloneReceiptRuleSetRequest is a API request type for the CloneReceiptRuleSet API operation.
type CloneReceiptRuleSetRequest struct {
*aws.Request
Input *CloneReceiptRuleSetInput
}
// Send marshals and sends the CloneReceiptRuleSet API request.
func (r CloneReceiptRuleSetRequest) Send() (*CloneReceiptRuleSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CloneReceiptRuleSetOutput), nil
}
// CloneReceiptRuleSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CloneReceiptRuleSetRequest method.
// req := client.CloneReceiptRuleSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CloneReceiptRuleSet
func (c *SES) CloneReceiptRuleSetRequest(input *CloneReceiptRuleSetInput) CloneReceiptRuleSetRequest {
op := &aws.Operation{
Name: opCloneReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CloneReceiptRuleSetInput{}
}
output := &CloneReceiptRuleSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CloneReceiptRuleSetRequest{Request: req, Input: input}
}
const opCreateConfigurationSet = "CreateConfigurationSet"
// CreateConfigurationSetRequest is a API request type for the CreateConfigurationSet API operation.
type CreateConfigurationSetRequest struct {
*aws.Request
Input *CreateConfigurationSetInput
}
// Send marshals and sends the CreateConfigurationSet API request.
func (r CreateConfigurationSetRequest) Send() (*CreateConfigurationSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateConfigurationSetOutput), nil
}
// CreateConfigurationSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Creates a configuration set.
//
// Configuration sets enable you to publish email sending events. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CreateConfigurationSetRequest method.
// req := client.CreateConfigurationSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSet
func (c *SES) CreateConfigurationSetRequest(input *CreateConfigurationSetInput) CreateConfigurationSetRequest {
op := &aws.Operation{
Name: opCreateConfigurationSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateConfigurationSetInput{}
}
output := &CreateConfigurationSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateConfigurationSetRequest{Request: req, Input: input}
}
const opCreateConfigurationSetEventDestination = "CreateConfigurationSetEventDestination"
// CreateConfigurationSetEventDestinationRequest is a API request type for the CreateConfigurationSetEventDestination API operation.
type CreateConfigurationSetEventDestinationRequest struct {
*aws.Request
Input *CreateConfigurationSetEventDestinationInput
}
// Send marshals and sends the CreateConfigurationSetEventDestination API request.
func (r CreateConfigurationSetEventDestinationRequest) Send() (*CreateConfigurationSetEventDestinationOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateConfigurationSetEventDestinationOutput), nil
}
// CreateConfigurationSetEventDestinationRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Creates a configuration set event destination.
//
// When you create or update an event destination, you must provide one, and
// only one, destination. The destination can be Amazon CloudWatch, Amazon Kinesis
// Firehose, or Amazon Simple Notification Service (Amazon SNS).
//
// An event destination is the AWS service to which Amazon SES publishes the
// email sending events associated with a configuration set. For information
// about using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CreateConfigurationSetEventDestinationRequest method.
// req := client.CreateConfigurationSetEventDestinationRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetEventDestination
func (c *SES) CreateConfigurationSetEventDestinationRequest(input *CreateConfigurationSetEventDestinationInput) CreateConfigurationSetEventDestinationRequest {
op := &aws.Operation{
Name: opCreateConfigurationSetEventDestination,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateConfigurationSetEventDestinationInput{}
}
output := &CreateConfigurationSetEventDestinationOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateConfigurationSetEventDestinationRequest{Request: req, Input: input}
}
const opCreateConfigurationSetTrackingOptions = "CreateConfigurationSetTrackingOptions"
// CreateConfigurationSetTrackingOptionsRequest is a API request type for the CreateConfigurationSetTrackingOptions API operation.
type CreateConfigurationSetTrackingOptionsRequest struct {
*aws.Request
Input *CreateConfigurationSetTrackingOptionsInput
}
// Send marshals and sends the CreateConfigurationSetTrackingOptions API request.
func (r CreateConfigurationSetTrackingOptionsRequest) Send() (*CreateConfigurationSetTrackingOptionsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateConfigurationSetTrackingOptionsOutput), nil
}
// CreateConfigurationSetTrackingOptionsRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Creates an association between a configuration set and a custom domain for
// open and click event tracking.
//
// By default, images and links used for tracking open and click events are
// hosted on domains operated by Amazon SES. You can configure a subdomain of
// your own to handle these events by redirecting them to the Amazon SES-operated
// domain. For information about using configuration sets, see Configuring Custom
// Domains to Handle Open and Click Tracking (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html)
// in the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html).
//
// // Example sending a request using the CreateConfigurationSetTrackingOptionsRequest method.
// req := client.CreateConfigurationSetTrackingOptionsRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateConfigurationSetTrackingOptions
func (c *SES) CreateConfigurationSetTrackingOptionsRequest(input *CreateConfigurationSetTrackingOptionsInput) CreateConfigurationSetTrackingOptionsRequest {
op := &aws.Operation{
Name: opCreateConfigurationSetTrackingOptions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateConfigurationSetTrackingOptionsInput{}
}
output := &CreateConfigurationSetTrackingOptionsOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateConfigurationSetTrackingOptionsRequest{Request: req, Input: input}
}
const opCreateReceiptFilter = "CreateReceiptFilter"
// CreateReceiptFilterRequest is a API request type for the CreateReceiptFilter API operation.
type CreateReceiptFilterRequest struct {
*aws.Request
Input *CreateReceiptFilterInput
}
// Send marshals and sends the CreateReceiptFilter API request.
func (r CreateReceiptFilterRequest) Send() (*CreateReceiptFilterOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateReceiptFilterOutput), nil
}
// CreateReceiptFilterRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CreateReceiptFilterRequest method.
// req := client.CreateReceiptFilterRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptFilter
func (c *SES) CreateReceiptFilterRequest(input *CreateReceiptFilterInput) CreateReceiptFilterRequest {
op := &aws.Operation{
Name: opCreateReceiptFilter,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptFilterInput{}
}
output := &CreateReceiptFilterOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateReceiptFilterRequest{Request: req, Input: input}
}
const opCreateReceiptRule = "CreateReceiptRule"
// CreateReceiptRuleRequest is a API request type for the CreateReceiptRule API operation.
type CreateReceiptRuleRequest struct {
*aws.Request
Input *CreateReceiptRuleInput
}
// Send marshals and sends the CreateReceiptRule API request.
func (r CreateReceiptRuleRequest) Send() (*CreateReceiptRuleOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateReceiptRuleOutput), nil
}
// CreateReceiptRuleRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CreateReceiptRuleRequest method.
// req := client.CreateReceiptRuleRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRule
func (c *SES) CreateReceiptRuleRequest(input *CreateReceiptRuleInput) CreateReceiptRuleRequest {
op := &aws.Operation{
Name: opCreateReceiptRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptRuleInput{}
}
output := &CreateReceiptRuleOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateReceiptRuleRequest{Request: req, Input: input}
}
const opCreateReceiptRuleSet = "CreateReceiptRuleSet"
// CreateReceiptRuleSetRequest is a API request type for the CreateReceiptRuleSet API operation.
type CreateReceiptRuleSetRequest struct {
*aws.Request
Input *CreateReceiptRuleSetInput
}
// Send marshals and sends the CreateReceiptRuleSet API request.
func (r CreateReceiptRuleSetRequest) Send() (*CreateReceiptRuleSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*CreateReceiptRuleSetOutput), nil
}
// CreateReceiptRuleSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the CreateReceiptRuleSetRequest method.
// req := client.CreateReceiptRuleSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/CreateReceiptRuleSet
func (c *SES) CreateReceiptRuleSetRequest(input *CreateReceiptRuleSetInput) CreateReceiptRuleSetRequest {
op := &aws.Operation{
Name: opCreateReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CreateReceiptRuleSetInput{}
}
output := &CreateReceiptRuleSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return CreateReceiptRuleSetRequest{Request: req, Input: input}
}
const opDeleteConfigurationSet = "DeleteConfigurationSet"
// DeleteConfigurationSetRequest is a API request type for the DeleteConfigurationSet API operation.
type DeleteConfigurationSetRequest struct {
*aws.Request
Input *DeleteConfigurationSetInput
}
// Send marshals and sends the DeleteConfigurationSet API request.
func (r DeleteConfigurationSetRequest) Send() (*DeleteConfigurationSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteConfigurationSetOutput), nil
}
// DeleteConfigurationSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deletes a configuration set. Configuration sets enable you to publish email
// sending events. For information about using configuration sets, see the Amazon
// SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteConfigurationSetRequest method.
// req := client.DeleteConfigurationSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSet
func (c *SES) DeleteConfigurationSetRequest(input *DeleteConfigurationSetInput) DeleteConfigurationSetRequest {
op := &aws.Operation{
Name: opDeleteConfigurationSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteConfigurationSetInput{}
}
output := &DeleteConfigurationSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteConfigurationSetRequest{Request: req, Input: input}
}
const opDeleteConfigurationSetEventDestination = "DeleteConfigurationSetEventDestination"
// DeleteConfigurationSetEventDestinationRequest is a API request type for the DeleteConfigurationSetEventDestination API operation.
type DeleteConfigurationSetEventDestinationRequest struct {
*aws.Request
Input *DeleteConfigurationSetEventDestinationInput
}
// Send marshals and sends the DeleteConfigurationSetEventDestination API request.
func (r DeleteConfigurationSetEventDestinationRequest) Send() (*DeleteConfigurationSetEventDestinationOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteConfigurationSetEventDestinationOutput), nil
}
// DeleteConfigurationSetEventDestinationRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deletes a configuration set event destination. Configuration set event destinations
// are associated with configuration sets, which enable you to publish email
// sending events. For information about using configuration sets, see the Amazon
// SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteConfigurationSetEventDestinationRequest method.
// req := client.DeleteConfigurationSetEventDestinationRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetEventDestination
func (c *SES) DeleteConfigurationSetEventDestinationRequest(input *DeleteConfigurationSetEventDestinationInput) DeleteConfigurationSetEventDestinationRequest {
op := &aws.Operation{
Name: opDeleteConfigurationSetEventDestination,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteConfigurationSetEventDestinationInput{}
}
output := &DeleteConfigurationSetEventDestinationOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteConfigurationSetEventDestinationRequest{Request: req, Input: input}
}
const opDeleteConfigurationSetTrackingOptions = "DeleteConfigurationSetTrackingOptions"
// DeleteConfigurationSetTrackingOptionsRequest is a API request type for the DeleteConfigurationSetTrackingOptions API operation.
type DeleteConfigurationSetTrackingOptionsRequest struct {
*aws.Request
Input *DeleteConfigurationSetTrackingOptionsInput
}
// Send marshals and sends the DeleteConfigurationSetTrackingOptions API request.
func (r DeleteConfigurationSetTrackingOptionsRequest) Send() (*DeleteConfigurationSetTrackingOptionsOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteConfigurationSetTrackingOptionsOutput), nil
}
// DeleteConfigurationSetTrackingOptionsRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deletes an association between a configuration set and a custom domain for
// open and click event tracking.
//
// By default, images and links used for tracking open and click events are
// hosted on domains operated by Amazon SES. You can configure a subdomain of
// your own to handle these events by redirecting them to the Amazon SES-operated
// domain. For information about using configuration sets, see Configuring Custom
// Domains to Handle Open and Click Tracking (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/configure-custom-open-click-domains.html)
// in the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html).
//
// Deleting this kind of association will result in emails sent using the specified
// configuration set to capture open and click events using the standard, Amazon
// SES-operated domains.
//
// // Example sending a request using the DeleteConfigurationSetTrackingOptionsRequest method.
// req := client.DeleteConfigurationSetTrackingOptionsRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteConfigurationSetTrackingOptions
func (c *SES) DeleteConfigurationSetTrackingOptionsRequest(input *DeleteConfigurationSetTrackingOptionsInput) DeleteConfigurationSetTrackingOptionsRequest {
op := &aws.Operation{
Name: opDeleteConfigurationSetTrackingOptions,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteConfigurationSetTrackingOptionsInput{}
}
output := &DeleteConfigurationSetTrackingOptionsOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteConfigurationSetTrackingOptionsRequest{Request: req, Input: input}
}
const opDeleteIdentity = "DeleteIdentity"
// DeleteIdentityRequest is a API request type for the DeleteIdentity API operation.
type DeleteIdentityRequest struct {
*aws.Request
Input *DeleteIdentityInput
}
// Send marshals and sends the DeleteIdentity API request.
func (r DeleteIdentityRequest) Send() (*DeleteIdentityOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteIdentityOutput), nil
}
// DeleteIdentityRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deletes the specified identity (an email address or a domain) from the list
// of verified identities.
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteIdentityRequest method.
// req := client.DeleteIdentityRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentity
func (c *SES) DeleteIdentityRequest(input *DeleteIdentityInput) DeleteIdentityRequest {
op := &aws.Operation{
Name: opDeleteIdentity,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIdentityInput{}
}
output := &DeleteIdentityOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteIdentityRequest{Request: req, Input: input}
}
const opDeleteIdentityPolicy = "DeleteIdentityPolicy"
// DeleteIdentityPolicyRequest is a API request type for the DeleteIdentityPolicy API operation.
type DeleteIdentityPolicyRequest struct {
*aws.Request
Input *DeleteIdentityPolicyInput
}
// Send marshals and sends the DeleteIdentityPolicy API request.
func (r DeleteIdentityPolicyRequest) Send() (*DeleteIdentityPolicyOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteIdentityPolicyOutput), nil
}
// DeleteIdentityPolicyRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deletes the specified sending authorization policy for the given identity
// (an email address or a 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteIdentityPolicyRequest method.
// req := client.DeleteIdentityPolicyRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteIdentityPolicy
func (c *SES) DeleteIdentityPolicyRequest(input *DeleteIdentityPolicyInput) DeleteIdentityPolicyRequest {
op := &aws.Operation{
Name: opDeleteIdentityPolicy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteIdentityPolicyInput{}
}
output := &DeleteIdentityPolicyOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteIdentityPolicyRequest{Request: req, Input: input}
}
const opDeleteReceiptFilter = "DeleteReceiptFilter"
// DeleteReceiptFilterRequest is a API request type for the DeleteReceiptFilter API operation.
type DeleteReceiptFilterRequest struct {
*aws.Request
Input *DeleteReceiptFilterInput
}
// Send marshals and sends the DeleteReceiptFilter API request.
func (r DeleteReceiptFilterRequest) Send() (*DeleteReceiptFilterOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteReceiptFilterOutput), nil
}
// DeleteReceiptFilterRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteReceiptFilterRequest method.
// req := client.DeleteReceiptFilterRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptFilter
func (c *SES) DeleteReceiptFilterRequest(input *DeleteReceiptFilterInput) DeleteReceiptFilterRequest {
op := &aws.Operation{
Name: opDeleteReceiptFilter,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptFilterInput{}
}
output := &DeleteReceiptFilterOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteReceiptFilterRequest{Request: req, Input: input}
}
const opDeleteReceiptRule = "DeleteReceiptRule"
// DeleteReceiptRuleRequest is a API request type for the DeleteReceiptRule API operation.
type DeleteReceiptRuleRequest struct {
*aws.Request
Input *DeleteReceiptRuleInput
}
// Send marshals and sends the DeleteReceiptRule API request.
func (r DeleteReceiptRuleRequest) Send() (*DeleteReceiptRuleOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteReceiptRuleOutput), nil
}
// DeleteReceiptRuleRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteReceiptRuleRequest method.
// req := client.DeleteReceiptRuleRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRule
func (c *SES) DeleteReceiptRuleRequest(input *DeleteReceiptRuleInput) DeleteReceiptRuleRequest {
op := &aws.Operation{
Name: opDeleteReceiptRule,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptRuleInput{}
}
output := &DeleteReceiptRuleOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteReceiptRuleRequest{Request: req, Input: input}
}
const opDeleteReceiptRuleSet = "DeleteReceiptRuleSet"
// DeleteReceiptRuleSetRequest is a API request type for the DeleteReceiptRuleSet API operation.
type DeleteReceiptRuleSetRequest struct {
*aws.Request
Input *DeleteReceiptRuleSetInput
}
// Send marshals and sends the DeleteReceiptRuleSet API request.
func (r DeleteReceiptRuleSetRequest) Send() (*DeleteReceiptRuleSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteReceiptRuleSetOutput), nil
}
// DeleteReceiptRuleSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DeleteReceiptRuleSetRequest method.
// req := client.DeleteReceiptRuleSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteReceiptRuleSet
func (c *SES) DeleteReceiptRuleSetRequest(input *DeleteReceiptRuleSetInput) DeleteReceiptRuleSetRequest {
op := &aws.Operation{
Name: opDeleteReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteReceiptRuleSetInput{}
}
output := &DeleteReceiptRuleSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DeleteReceiptRuleSetRequest{Request: req, Input: input}
}
const opDeleteVerifiedEmailAddress = "DeleteVerifiedEmailAddress"
// DeleteVerifiedEmailAddressRequest is a API request type for the DeleteVerifiedEmailAddress API operation.
type DeleteVerifiedEmailAddressRequest struct {
*aws.Request
Input *DeleteVerifiedEmailAddressInput
}
// Send marshals and sends the DeleteVerifiedEmailAddress API request.
func (r DeleteVerifiedEmailAddressRequest) Send() (*DeleteVerifiedEmailAddressOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DeleteVerifiedEmailAddressOutput), nil
}
// DeleteVerifiedEmailAddressRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Deprecated. Use the DeleteIdentity operation to delete email addresses and
// domains.
//
// // Example sending a request using the DeleteVerifiedEmailAddressRequest method.
// req := client.DeleteVerifiedEmailAddressRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DeleteVerifiedEmailAddress
func (c *SES) DeleteVerifiedEmailAddressRequest(input *DeleteVerifiedEmailAddressInput) DeleteVerifiedEmailAddressRequest {
op := &aws.Operation{
Name: opDeleteVerifiedEmailAddress,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteVerifiedEmailAddressInput{}
}
output := &DeleteVerifiedEmailAddressOutput{}
req := c.newRequest(op, input, output)
req.Handlers.Unmarshal.Remove(query.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
output.responseMetadata = aws.Response{Request: req}
return DeleteVerifiedEmailAddressRequest{Request: req, Input: input}
}
const opDescribeActiveReceiptRuleSet = "DescribeActiveReceiptRuleSet"
// DescribeActiveReceiptRuleSetRequest is a API request type for the DescribeActiveReceiptRuleSet API operation.
type DescribeActiveReceiptRuleSetRequest struct {
*aws.Request
Input *DescribeActiveReceiptRuleSetInput
}
// Send marshals and sends the DescribeActiveReceiptRuleSet API request.
func (r DescribeActiveReceiptRuleSetRequest) Send() (*DescribeActiveReceiptRuleSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeActiveReceiptRuleSetOutput), nil
}
// DescribeActiveReceiptRuleSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// 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).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DescribeActiveReceiptRuleSetRequest method.
// req := client.DescribeActiveReceiptRuleSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSet
func (c *SES) DescribeActiveReceiptRuleSetRequest(input *DescribeActiveReceiptRuleSetInput) DescribeActiveReceiptRuleSetRequest {
op := &aws.Operation{
Name: opDescribeActiveReceiptRuleSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeActiveReceiptRuleSetInput{}
}
output := &DescribeActiveReceiptRuleSetOutput{}
req := c.newRequest(op, input, output)
output.responseMetadata = aws.Response{Request: req}
return DescribeActiveReceiptRuleSetRequest{Request: req, Input: input}
}
const opDescribeConfigurationSet = "DescribeConfigurationSet"
// DescribeConfigurationSetRequest is a API request type for the DescribeConfigurationSet API operation.
type DescribeConfigurationSetRequest struct {
*aws.Request
Input *DescribeConfigurationSetInput
}
// Send marshals and sends the DescribeConfigurationSet API request.
func (r DescribeConfigurationSetRequest) Send() (*DescribeConfigurationSetOutput, error) {
err := r.Request.Send()
if err != nil {
return nil, err
}
return r.Request.Data.(*DescribeConfigurationSetOutput), nil
}
// DescribeConfigurationSetRequest returns a request value for making API operation for
// Amazon Simple Email Service.
//
// Returns the details of the specified configuration set. For information about
// using configuration sets, see the Amazon SES Developer Guide (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html).
//
// You can execute this operation no more than once per second.
//
// // Example sending a request using the DescribeConfigurationSetRequest method.
// req := client.DescribeConfigurationSetRequest(params)
// resp, err := req.Send()
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeConfigurationSet
func (c *SES) DescribeConfigurationSetRequest(input *DescribeConfigurationSetInput) DescribeConfigurationSetRequest {
op := &aws.Operation{
Name: opDescribeConfigurationSet,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeConfigurationSetInput{}
}
output := &DescribeConfigurationSetOutput{}
req := c.newRequest(op, input, output)