forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
3206 lines (2817 loc) · 88.3 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 route53domains provides a client for Amazon Route 53 Domains.
package route53domains
import (
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
)
const opCheckDomainAvailability = "CheckDomainAvailability"
// CheckDomainAvailabilityRequest generates a request for the CheckDomainAvailability operation.
func (c *Route53Domains) CheckDomainAvailabilityRequest(input *CheckDomainAvailabilityInput) (req *aws.Request, output *CheckDomainAvailabilityOutput) {
op := &aws.Operation{
Name: opCheckDomainAvailability,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &CheckDomainAvailabilityInput{}
}
req = c.newRequest(op, input, output)
output = &CheckDomainAvailabilityOutput{}
req.Data = output
return
}
// This operation checks the availability of one domain name. You can access
// this API without authenticating. Note that if the availability status of
// a domain is pending, you must submit another request to determine the availability
// of the domain name.
func (c *Route53Domains) CheckDomainAvailability(input *CheckDomainAvailabilityInput) (*CheckDomainAvailabilityOutput, error) {
req, out := c.CheckDomainAvailabilityRequest(input)
err := req.Send()
return out, err
}
const opDeleteTagsForDomain = "DeleteTagsForDomain"
// DeleteTagsForDomainRequest generates a request for the DeleteTagsForDomain operation.
func (c *Route53Domains) DeleteTagsForDomainRequest(input *DeleteTagsForDomainInput) (req *aws.Request, output *DeleteTagsForDomainOutput) {
op := &aws.Operation{
Name: opDeleteTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &DeleteTagsForDomainOutput{}
req.Data = output
return
}
// This operation deletes the specified tags for a domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) DeleteTagsForDomain(input *DeleteTagsForDomainInput) (*DeleteTagsForDomainOutput, error) {
req, out := c.DeleteTagsForDomainRequest(input)
err := req.Send()
return out, err
}
const opDisableDomainAutoRenew = "DisableDomainAutoRenew"
// DisableDomainAutoRenewRequest generates a request for the DisableDomainAutoRenew operation.
func (c *Route53Domains) DisableDomainAutoRenewRequest(input *DisableDomainAutoRenewInput) (req *aws.Request, output *DisableDomainAutoRenewOutput) {
op := &aws.Operation{
Name: opDisableDomainAutoRenew,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DisableDomainAutoRenewInput{}
}
req = c.newRequest(op, input, output)
output = &DisableDomainAutoRenewOutput{}
req.Data = output
return
}
// This operation disables automatic renewal of domain registration for the
// specified domain.
//
// Caution! Amazon Route 53 doesn't have a manual renewal process, so if you
// disable automatic renewal, registration for the domain will not be renewed
// when the expiration date passes, and you will lose control of the domain
// name.
func (c *Route53Domains) DisableDomainAutoRenew(input *DisableDomainAutoRenewInput) (*DisableDomainAutoRenewOutput, error) {
req, out := c.DisableDomainAutoRenewRequest(input)
err := req.Send()
return out, err
}
const opDisableDomainTransferLock = "DisableDomainTransferLock"
// DisableDomainTransferLockRequest generates a request for the DisableDomainTransferLock operation.
func (c *Route53Domains) DisableDomainTransferLockRequest(input *DisableDomainTransferLockInput) (req *aws.Request, output *DisableDomainTransferLockOutput) {
op := &aws.Operation{
Name: opDisableDomainTransferLock,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DisableDomainTransferLockInput{}
}
req = c.newRequest(op, input, output)
output = &DisableDomainTransferLockOutput{}
req.Data = output
return
}
// This operation removes the transfer lock on the domain (specifically the
// clientTransferProhibited status) to allow domain transfers. We recommend
// you refrain from performing this action unless you intend to transfer the
// domain to a different registrar. Successful submission returns an operation
// ID that you can use to track the progress and completion of the action. If
// the request is not completed successfully, the domain registrant will be
// notified by email.
func (c *Route53Domains) DisableDomainTransferLock(input *DisableDomainTransferLockInput) (*DisableDomainTransferLockOutput, error) {
req, out := c.DisableDomainTransferLockRequest(input)
err := req.Send()
return out, err
}
const opEnableDomainAutoRenew = "EnableDomainAutoRenew"
// EnableDomainAutoRenewRequest generates a request for the EnableDomainAutoRenew operation.
func (c *Route53Domains) EnableDomainAutoRenewRequest(input *EnableDomainAutoRenewInput) (req *aws.Request, output *EnableDomainAutoRenewOutput) {
op := &aws.Operation{
Name: opEnableDomainAutoRenew,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EnableDomainAutoRenewInput{}
}
req = c.newRequest(op, input, output)
output = &EnableDomainAutoRenewOutput{}
req.Data = output
return
}
// This operation configures Amazon Route 53 to automatically renew the specified
// domain before the domain registration expires. The cost of renewing your
// domain registration is billed to your AWS account.
//
// The period during which you can renew a domain name varies by TLD. For a
// list of TLDs and their renewal policies, see "Renewal, restoration, and deletion
// times" (http://wiki.gandi.net/en/domains/renew#renewal_restoration_and_deletion_times)
// on the website for our registrar partner, Gandi. Route 53 requires that you
// renew before the end of the renewal period that is listed on the Gandi website
// so we can complete processing before the deadline.
func (c *Route53Domains) EnableDomainAutoRenew(input *EnableDomainAutoRenewInput) (*EnableDomainAutoRenewOutput, error) {
req, out := c.EnableDomainAutoRenewRequest(input)
err := req.Send()
return out, err
}
const opEnableDomainTransferLock = "EnableDomainTransferLock"
// EnableDomainTransferLockRequest generates a request for the EnableDomainTransferLock operation.
func (c *Route53Domains) EnableDomainTransferLockRequest(input *EnableDomainTransferLockInput) (req *aws.Request, output *EnableDomainTransferLockOutput) {
op := &aws.Operation{
Name: opEnableDomainTransferLock,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &EnableDomainTransferLockInput{}
}
req = c.newRequest(op, input, output)
output = &EnableDomainTransferLockOutput{}
req.Data = output
return
}
// This operation sets the transfer lock on the domain (specifically the clientTransferProhibited
// status) to prevent domain transfers. Successful submission returns an operation
// ID that you can use to track the progress and completion of the action. If
// the request is not completed successfully, the domain registrant will be
// notified by email.
func (c *Route53Domains) EnableDomainTransferLock(input *EnableDomainTransferLockInput) (*EnableDomainTransferLockOutput, error) {
req, out := c.EnableDomainTransferLockRequest(input)
err := req.Send()
return out, err
}
const opGetDomainDetail = "GetDomainDetail"
// GetDomainDetailRequest generates a request for the GetDomainDetail operation.
func (c *Route53Domains) GetDomainDetailRequest(input *GetDomainDetailInput) (req *aws.Request, output *GetDomainDetailOutput) {
op := &aws.Operation{
Name: opGetDomainDetail,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetDomainDetailInput{}
}
req = c.newRequest(op, input, output)
output = &GetDomainDetailOutput{}
req.Data = output
return
}
// This operation returns detailed information about the domain. The domain's
// contact information is also returned as part of the output.
func (c *Route53Domains) GetDomainDetail(input *GetDomainDetailInput) (*GetDomainDetailOutput, error) {
req, out := c.GetDomainDetailRequest(input)
err := req.Send()
return out, err
}
const opGetOperationDetail = "GetOperationDetail"
// GetOperationDetailRequest generates a request for the GetOperationDetail operation.
func (c *Route53Domains) GetOperationDetailRequest(input *GetOperationDetailInput) (req *aws.Request, output *GetOperationDetailOutput) {
op := &aws.Operation{
Name: opGetOperationDetail,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &GetOperationDetailInput{}
}
req = c.newRequest(op, input, output)
output = &GetOperationDetailOutput{}
req.Data = output
return
}
// This operation returns the current status of an operation that is not completed.
func (c *Route53Domains) GetOperationDetail(input *GetOperationDetailInput) (*GetOperationDetailOutput, error) {
req, out := c.GetOperationDetailRequest(input)
err := req.Send()
return out, err
}
const opListDomains = "ListDomains"
// ListDomainsRequest generates a request for the ListDomains operation.
func (c *Route53Domains) ListDomainsRequest(input *ListDomainsInput) (req *aws.Request, output *ListDomainsOutput) {
op := &aws.Operation{
Name: opListDomains,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextPageMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListDomainsInput{}
}
req = c.newRequest(op, input, output)
output = &ListDomainsOutput{}
req.Data = output
return
}
// This operation returns all the domain names registered with Amazon Route
// 53 for the current AWS account.
func (c *Route53Domains) ListDomains(input *ListDomainsInput) (*ListDomainsOutput, error) {
req, out := c.ListDomainsRequest(input)
err := req.Send()
return out, err
}
func (c *Route53Domains) ListDomainsPages(input *ListDomainsInput, fn func(p *ListDomainsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListDomainsRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListDomainsOutput), lastPage)
})
}
const opListOperations = "ListOperations"
// ListOperationsRequest generates a request for the ListOperations operation.
func (c *Route53Domains) ListOperationsRequest(input *ListOperationsInput) (req *aws.Request, output *ListOperationsOutput) {
op := &aws.Operation{
Name: opListOperations,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"Marker"},
OutputTokens: []string{"NextPageMarker"},
LimitToken: "MaxItems",
TruncationToken: "",
},
}
if input == nil {
input = &ListOperationsInput{}
}
req = c.newRequest(op, input, output)
output = &ListOperationsOutput{}
req.Data = output
return
}
// This operation returns the operation IDs of operations that are not yet complete.
func (c *Route53Domains) ListOperations(input *ListOperationsInput) (*ListOperationsOutput, error) {
req, out := c.ListOperationsRequest(input)
err := req.Send()
return out, err
}
func (c *Route53Domains) ListOperationsPages(input *ListOperationsInput, fn func(p *ListOperationsOutput, lastPage bool) (shouldContinue bool)) error {
page, _ := c.ListOperationsRequest(input)
return page.EachPage(func(p interface{}, lastPage bool) bool {
return fn(p.(*ListOperationsOutput), lastPage)
})
}
const opListTagsForDomain = "ListTagsForDomain"
// ListTagsForDomainRequest generates a request for the ListTagsForDomain operation.
func (c *Route53Domains) ListTagsForDomainRequest(input *ListTagsForDomainInput) (req *aws.Request, output *ListTagsForDomainOutput) {
op := &aws.Operation{
Name: opListTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &ListTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &ListTagsForDomainOutput{}
req.Data = output
return
}
// This operation returns all of the tags that are associated with the specified
// domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) ListTagsForDomain(input *ListTagsForDomainInput) (*ListTagsForDomainOutput, error) {
req, out := c.ListTagsForDomainRequest(input)
err := req.Send()
return out, err
}
const opRegisterDomain = "RegisterDomain"
// RegisterDomainRequest generates a request for the RegisterDomain operation.
func (c *Route53Domains) RegisterDomainRequest(input *RegisterDomainInput) (req *aws.Request, output *RegisterDomainOutput) {
op := &aws.Operation{
Name: opRegisterDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RegisterDomainInput{}
}
req = c.newRequest(op, input, output)
output = &RegisterDomainOutput{}
req.Data = output
return
}
// This operation registers a domain. Domains are registered by the AWS registrar
// partner, Gandi. For some top-level domains (TLDs), this operation requires
// extra parameters.
//
// When you register a domain, Amazon Route 53 does the following:
//
// Creates a Amazon Route 53 hosted zone that has the same name as the domain.
// Amazon Route 53 assigns four name servers to your hosted zone and automatically
// updates your domain registration with the names of these name servers. Enables
// autorenew, so your domain registration will renew automatically each year.
// We'll notify you in advance of the renewal date so you can choose whether
// to renew the registration. Optionally enables privacy protection, so WHOIS
// queries return contact information for our registrar partner, Gandi, instead
// of the information you entered for registrant, admin, and tech contacts.
// If registration is successful, returns an operation ID that you can use to
// track the progress and completion of the action. If the request is not completed
// successfully, the domain registrant is notified by email. Charges your AWS
// account an amount based on the top-level domain. For more information, see
// Amazon Route 53 Pricing (http://aws.amazon.com/route53/pricing/).
func (c *Route53Domains) RegisterDomain(input *RegisterDomainInput) (*RegisterDomainOutput, error) {
req, out := c.RegisterDomainRequest(input)
err := req.Send()
return out, err
}
const opRetrieveDomainAuthCode = "RetrieveDomainAuthCode"
// RetrieveDomainAuthCodeRequest generates a request for the RetrieveDomainAuthCode operation.
func (c *Route53Domains) RetrieveDomainAuthCodeRequest(input *RetrieveDomainAuthCodeInput) (req *aws.Request, output *RetrieveDomainAuthCodeOutput) {
op := &aws.Operation{
Name: opRetrieveDomainAuthCode,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &RetrieveDomainAuthCodeInput{}
}
req = c.newRequest(op, input, output)
output = &RetrieveDomainAuthCodeOutput{}
req.Data = output
return
}
// This operation returns the AuthCode for the domain. To transfer a domain
// to another registrar, you provide this value to the new registrar.
func (c *Route53Domains) RetrieveDomainAuthCode(input *RetrieveDomainAuthCodeInput) (*RetrieveDomainAuthCodeOutput, error) {
req, out := c.RetrieveDomainAuthCodeRequest(input)
err := req.Send()
return out, err
}
const opTransferDomain = "TransferDomain"
// TransferDomainRequest generates a request for the TransferDomain operation.
func (c *Route53Domains) TransferDomainRequest(input *TransferDomainInput) (req *aws.Request, output *TransferDomainOutput) {
op := &aws.Operation{
Name: opTransferDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &TransferDomainInput{}
}
req = c.newRequest(op, input, output)
output = &TransferDomainOutput{}
req.Data = output
return
}
// This operation transfers a domain from another registrar to Amazon Route
// 53. When the transfer is complete, the domain is registered with the AWS
// registrar partner, Gandi.
//
// For transfer requirements, a detailed procedure, and information about viewing
// the status of a domain transfer, see Transferring Registration for a Domain
// to Amazon Route 53 (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html)
// in the Amazon Route 53 Developer Guide.
//
// If the registrar for your domain is also the DNS service provider for the
// domain, we highly recommend that you consider transferring your DNS service
// to Amazon Route 53 or to another DNS service provider before you transfer
// your registration. Some registrars provide free DNS service when you purchase
// a domain registration. When you transfer the registration, the previous registrar
// will not renew your domain registration and could end your DNS service at
// any time.
//
// Caution! If the registrar for your domain is also the DNS service provider
// for the domain and you don't transfer DNS service to another provider, your
// website, email, and the web applications associated with the domain might
// become unavailable. If the transfer is successful, this method returns an
// operation ID that you can use to track the progress and completion of the
// action. If the transfer doesn't complete successfully, the domain registrant
// will be notified by email.
func (c *Route53Domains) TransferDomain(input *TransferDomainInput) (*TransferDomainOutput, error) {
req, out := c.TransferDomainRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainContact = "UpdateDomainContact"
// UpdateDomainContactRequest generates a request for the UpdateDomainContact operation.
func (c *Route53Domains) UpdateDomainContactRequest(input *UpdateDomainContactInput) (req *aws.Request, output *UpdateDomainContactOutput) {
op := &aws.Operation{
Name: opUpdateDomainContact,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainContactInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainContactOutput{}
req.Data = output
return
}
// This operation updates the contact information for a particular domain. Information
// for at least one contact (registrant, administrator, or technical) must be
// supplied for update.
//
// If the update is successful, this method returns an operation ID that you
// can use to track the progress and completion of the action. If the request
// is not completed successfully, the domain registrant will be notified by
// email.
func (c *Route53Domains) UpdateDomainContact(input *UpdateDomainContactInput) (*UpdateDomainContactOutput, error) {
req, out := c.UpdateDomainContactRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainContactPrivacy = "UpdateDomainContactPrivacy"
// UpdateDomainContactPrivacyRequest generates a request for the UpdateDomainContactPrivacy operation.
func (c *Route53Domains) UpdateDomainContactPrivacyRequest(input *UpdateDomainContactPrivacyInput) (req *aws.Request, output *UpdateDomainContactPrivacyOutput) {
op := &aws.Operation{
Name: opUpdateDomainContactPrivacy,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainContactPrivacyInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainContactPrivacyOutput{}
req.Data = output
return
}
// This operation updates the specified domain contact's privacy setting. When
// the privacy option is enabled, personal information such as postal or email
// address is hidden from the results of a public WHOIS query. The privacy services
// are provided by the AWS registrar, Gandi. For more information, see the Gandi
// privacy features (http://www.gandi.net/domain/whois/?currency=USD&lang=en).
//
// This operation only affects the privacy of the specified contact type (registrant,
// administrator, or tech). Successful acceptance returns an operation ID that
// you can use with GetOperationDetail to track the progress and completion
// of the action. If the request is not completed successfully, the domain registrant
// will be notified by email.
func (c *Route53Domains) UpdateDomainContactPrivacy(input *UpdateDomainContactPrivacyInput) (*UpdateDomainContactPrivacyOutput, error) {
req, out := c.UpdateDomainContactPrivacyRequest(input)
err := req.Send()
return out, err
}
const opUpdateDomainNameservers = "UpdateDomainNameservers"
// UpdateDomainNameserversRequest generates a request for the UpdateDomainNameservers operation.
func (c *Route53Domains) UpdateDomainNameserversRequest(input *UpdateDomainNameserversInput) (req *aws.Request, output *UpdateDomainNameserversOutput) {
op := &aws.Operation{
Name: opUpdateDomainNameservers,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateDomainNameserversInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateDomainNameserversOutput{}
req.Data = output
return
}
// This operation replaces the current set of name servers for the domain with
// the specified set of name servers. If you use Amazon Route 53 as your DNS
// service, specify the four name servers in the delegation set for the hosted
// zone for the domain.
//
// If successful, this operation returns an operation ID that you can use to
// track the progress and completion of the action. If the request is not completed
// successfully, the domain registrant will be notified by email.
func (c *Route53Domains) UpdateDomainNameservers(input *UpdateDomainNameserversInput) (*UpdateDomainNameserversOutput, error) {
req, out := c.UpdateDomainNameserversRequest(input)
err := req.Send()
return out, err
}
const opUpdateTagsForDomain = "UpdateTagsForDomain"
// UpdateTagsForDomainRequest generates a request for the UpdateTagsForDomain operation.
func (c *Route53Domains) UpdateTagsForDomainRequest(input *UpdateTagsForDomainInput) (req *aws.Request, output *UpdateTagsForDomainOutput) {
op := &aws.Operation{
Name: opUpdateTagsForDomain,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateTagsForDomainInput{}
}
req = c.newRequest(op, input, output)
output = &UpdateTagsForDomainOutput{}
req.Data = output
return
}
// This operation adds or updates tags for a specified domain.
//
// All tag operations are eventually consistent; subsequent operations may
// not immediately represent all issued operations.
func (c *Route53Domains) UpdateTagsForDomain(input *UpdateTagsForDomainInput) (*UpdateTagsForDomainOutput, error) {
req, out := c.UpdateTagsForDomainRequest(input)
err := req.Send()
return out, err
}
// The CheckDomainAvailability request contains the following elements.
type CheckDomainAvailabilityInput struct {
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Internationalized Domain Names are not
// supported.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// Reserved for future use.
IDNLangCode *string `locationName:"IdnLangCode" type:"string"`
metadataCheckDomainAvailabilityInput `json:"-" xml:"-"`
}
type metadataCheckDomainAvailabilityInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CheckDomainAvailabilityInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CheckDomainAvailabilityInput) GoString() string {
return s.String()
}
// The CheckDomainAvailability response includes the following elements.
type CheckDomainAvailabilityOutput struct {
// Whether the domain name is available for registering.
//
// You can only register domains designated as AVAILABLE.
//
// Type: String
//
// Valid values:
//
// AVAILABLE – The domain name is available. AVAILABLE_RESERVED – The domain
// name is reserved under specific conditions. AVAILABLE_PREORDER – The domain
// name is available and can be preordered. UNAVAILABLE – The domain name is
// not available. UNAVAILABLE_PREMIUM – The domain name is not available.
// UNAVAILABLE_RESTRICTED – The domain name is forbidden. RESERVED – The domain
// name has been reserved for another person or organization. DONT_KNOW – The
// TLD registry didn't reply with a definitive answer about whether the domain
// name is available. Amazon Route 53 can return this response for a variety
// of reasons, for example, the registry is performing maintenance. Try again
// later.
Availability *string `type:"string" required:"true" enum:"DomainAvailability"`
metadataCheckDomainAvailabilityOutput `json:"-" xml:"-"`
}
type metadataCheckDomainAvailabilityOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s CheckDomainAvailabilityOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s CheckDomainAvailabilityOutput) GoString() string {
return s.String()
}
// ContactDetail includes the following elements.
type ContactDetail struct {
// First line of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
AddressLine1 *string `type:"string"`
// Second line of contact's address, if any.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
AddressLine2 *string `type:"string"`
// The city of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
City *string `type:"string"`
// Indicates whether the contact is a person, company, association, or public
// organization. If you choose an option other than PERSON, you must enter an
// organization name, and you can't enable privacy protection for the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Valid values: PERSON | COMPANY | ASSOCIATION | PUBLIC_BODY
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
ContactType *string `type:"string" enum:"ContactType"`
// Code for the country of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
CountryCode *string `type:"string" enum:"CountryCode"`
// Email address of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 254 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
Email *string `type:"string"`
// A list of name-value pairs for parameters required by certain top-level domains.
//
// Type: Complex
//
// Default: None
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Children: Name, Value
//
// Required: No
ExtraParams []*ExtraParam `type:"list"`
// Fax number of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Phone number must be specified in the format "+[country dialing
// code].[number including any area code]". For example, a US phone number might
// appear as "+1.1234567890".
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
Fax *string `type:"string"`
// First name of contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
FirstName *string `type:"string"`
// Last name of contact.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
LastName *string `type:"string"`
// Name of the organization for contact types other than PERSON.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters. Contact type must not be PERSON.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
OrganizationName *string `type:"string"`
// The phone number of the contact.
//
// Type: String
//
// Default: None
//
// Constraints: Phone number must be specified in the format "+[country dialing
// code].[number including any area code>]". For example, a US phone number
// might appear as "+1.1234567890".
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: Yes
PhoneNumber *string `type:"string"`
// The state or province of the contact's city.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
State *string `type:"string"`
// The zip or postal code of the contact's address.
//
// Type: String
//
// Default: None
//
// Constraints: Maximum 255 characters.
//
// Parents: RegistrantContact, AdminContact, TechContact
//
// Required: No
ZipCode *string `type:"string"`
metadataContactDetail `json:"-" xml:"-"`
}
type metadataContactDetail struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s ContactDetail) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s ContactDetail) GoString() string {
return s.String()
}
// The DeleteTagsForDomainRequest includes the following elements.
type DeleteTagsForDomainInput struct {
// The domain for which you want to delete one or more tags.
//
// The name of a domain.
//
// Type: String
//
// Default: None
//
// Constraints: The domain name can contain only the letters a through z, the
// numbers 0 through 9, and hyphen (-). Hyphens are allowed only when theyaposre
// surrounded by letters, numbers, or other hyphens. You canapost specify a
// hyphen at the beginning or end of a label. To specify an Internationalized
// Domain Name, you must convert the name to Punycode.
//
// Required: Yes
DomainName *string `type:"string" required:"true"`
// A list of tag keys to delete.
//
// Type: A list that contains the keys of the tags that you want to delete.
//
// Default: None
//
// Required: No
//
// '>
TagsToDelete []*string `type:"list" required:"true"`
metadataDeleteTagsForDomainInput `json:"-" xml:"-"`
}
type metadataDeleteTagsForDomainInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DeleteTagsForDomainInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteTagsForDomainInput) GoString() string {
return s.String()
}
type DeleteTagsForDomainOutput struct {
metadataDeleteTagsForDomainOutput `json:"-" xml:"-"`
}
type metadataDeleteTagsForDomainOutput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DeleteTagsForDomainOutput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DeleteTagsForDomainOutput) GoString() string {
return s.String()
}
type DisableDomainAutoRenewInput struct {
DomainName *string `type:"string" required:"true"`
metadataDisableDomainAutoRenewInput `json:"-" xml:"-"`
}
type metadataDisableDomainAutoRenewInput struct {
SDKShapeTraits bool `type:"structure"`
}
// String returns the string representation
func (s DisableDomainAutoRenewInput) String() string {
return awsutil.Prettify(s)
}
// GoString returns the string representation
func (s DisableDomainAutoRenewInput) GoString() string {
return s.String()
}
type DisableDomainAutoRenewOutput struct {
metadataDisableDomainAutoRenewOutput `json:"-" xml:"-"`