aws-sdk-route53domains 1.19.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-route53domains.rb +4 -2
- data/lib/aws-sdk-route53domains/client.rb +475 -110
- data/lib/aws-sdk-route53domains/client_api.rb +81 -0
- data/lib/aws-sdk-route53domains/customizations.rb +1 -0
- data/lib/aws-sdk-route53domains/errors.rb +2 -0
- data/lib/aws-sdk-route53domains/resource.rb +3 -7
- data/lib/aws-sdk-route53domains/types.rb +859 -117
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -11,10 +13,15 @@ module Aws::Route53Domains
|
|
11
13
|
|
12
14
|
include Seahorse::Model
|
13
15
|
|
16
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'AcceptDomainTransferFromAnotherAwsAccountRequest')
|
17
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'AcceptDomainTransferFromAnotherAwsAccountResponse')
|
18
|
+
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
14
19
|
AddressLine = Shapes::StringShape.new(name: 'AddressLine')
|
15
20
|
BillingRecord = Shapes::StructureShape.new(name: 'BillingRecord')
|
16
21
|
BillingRecords = Shapes::ListShape.new(name: 'BillingRecords')
|
17
22
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
23
|
+
CancelDomainTransferToAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'CancelDomainTransferToAnotherAwsAccountRequest')
|
24
|
+
CancelDomainTransferToAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'CancelDomainTransferToAnotherAwsAccountResponse')
|
18
25
|
CheckDomainAvailabilityRequest = Shapes::StructureShape.new(name: 'CheckDomainAvailabilityRequest')
|
19
26
|
CheckDomainAvailabilityResponse = Shapes::StructureShape.new(name: 'CheckDomainAvailabilityResponse')
|
20
27
|
CheckDomainTransferabilityRequest = Shapes::StructureShape.new(name: 'CheckDomainTransferabilityRequest')
|
@@ -96,6 +103,8 @@ module Aws::Route53Domains
|
|
96
103
|
RegistrarUrl = Shapes::StringShape.new(name: 'RegistrarUrl')
|
97
104
|
RegistrarWhoIsServer = Shapes::StringShape.new(name: 'RegistrarWhoIsServer')
|
98
105
|
RegistryDomainId = Shapes::StringShape.new(name: 'RegistryDomainId')
|
106
|
+
RejectDomainTransferFromAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'RejectDomainTransferFromAnotherAwsAccountRequest')
|
107
|
+
RejectDomainTransferFromAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'RejectDomainTransferFromAnotherAwsAccountResponse')
|
99
108
|
RenewDomainRequest = Shapes::StructureShape.new(name: 'RenewDomainRequest')
|
100
109
|
RenewDomainResponse = Shapes::StructureShape.new(name: 'RenewDomainResponse')
|
101
110
|
Reseller = Shapes::StringShape.new(name: 'Reseller')
|
@@ -114,6 +123,8 @@ module Aws::Route53Domains
|
|
114
123
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
115
124
|
TransferDomainRequest = Shapes::StructureShape.new(name: 'TransferDomainRequest')
|
116
125
|
TransferDomainResponse = Shapes::StructureShape.new(name: 'TransferDomainResponse')
|
126
|
+
TransferDomainToAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'TransferDomainToAnotherAwsAccountRequest')
|
127
|
+
TransferDomainToAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'TransferDomainToAnotherAwsAccountResponse')
|
117
128
|
Transferable = Shapes::StringShape.new(name: 'Transferable')
|
118
129
|
UnsupportedTLD = Shapes::StructureShape.new(name: 'UnsupportedTLD')
|
119
130
|
UpdateDomainContactPrivacyRequest = Shapes::StructureShape.new(name: 'UpdateDomainContactPrivacyRequest')
|
@@ -128,6 +139,13 @@ module Aws::Route53Domains
|
|
128
139
|
ViewBillingResponse = Shapes::StructureShape.new(name: 'ViewBillingResponse')
|
129
140
|
ZipCode = Shapes::StringShape.new(name: 'ZipCode')
|
130
141
|
|
142
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
143
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:password, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Password"))
|
144
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.struct_class = Types::AcceptDomainTransferFromAnotherAwsAccountRequest
|
145
|
+
|
146
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
147
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse.struct_class = Types::AcceptDomainTransferFromAnotherAwsAccountResponse
|
148
|
+
|
131
149
|
BillingRecord.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
|
132
150
|
BillingRecord.add_member(:operation, Shapes::ShapeRef.new(shape: OperationType, location_name: "Operation"))
|
133
151
|
BillingRecord.add_member(:invoice_id, Shapes::ShapeRef.new(shape: InvoiceId, location_name: "InvoiceId"))
|
@@ -137,6 +155,12 @@ module Aws::Route53Domains
|
|
137
155
|
|
138
156
|
BillingRecords.member = Shapes::ShapeRef.new(shape: BillingRecord)
|
139
157
|
|
158
|
+
CancelDomainTransferToAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
159
|
+
CancelDomainTransferToAnotherAwsAccountRequest.struct_class = Types::CancelDomainTransferToAnotherAwsAccountRequest
|
160
|
+
|
161
|
+
CancelDomainTransferToAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
162
|
+
CancelDomainTransferToAnotherAwsAccountResponse.struct_class = Types::CancelDomainTransferToAnotherAwsAccountResponse
|
163
|
+
|
140
164
|
CheckDomainAvailabilityRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
141
165
|
CheckDomainAvailabilityRequest.add_member(:idn_lang_code, Shapes::ShapeRef.new(shape: LangCode, location_name: "IdnLangCode"))
|
142
166
|
CheckDomainAvailabilityRequest.struct_class = Types::CheckDomainAvailabilityRequest
|
@@ -338,6 +362,12 @@ module Aws::Route53Domains
|
|
338
362
|
RegisterDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "OperationId"))
|
339
363
|
RegisterDomainResponse.struct_class = Types::RegisterDomainResponse
|
340
364
|
|
365
|
+
RejectDomainTransferFromAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
366
|
+
RejectDomainTransferFromAnotherAwsAccountRequest.struct_class = Types::RejectDomainTransferFromAnotherAwsAccountRequest
|
367
|
+
|
368
|
+
RejectDomainTransferFromAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
369
|
+
RejectDomainTransferFromAnotherAwsAccountResponse.struct_class = Types::RejectDomainTransferFromAnotherAwsAccountResponse
|
370
|
+
|
341
371
|
RenewDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
342
372
|
RenewDomainRequest.add_member(:duration_in_years, Shapes::ShapeRef.new(shape: DurationInYears, location_name: "DurationInYears"))
|
343
373
|
RenewDomainRequest.add_member(:current_expiry_year, Shapes::ShapeRef.new(shape: CurrentExpiryYear, required: true, location_name: "CurrentExpiryYear"))
|
@@ -388,6 +418,14 @@ module Aws::Route53Domains
|
|
388
418
|
TransferDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "OperationId"))
|
389
419
|
TransferDomainResponse.struct_class = Types::TransferDomainResponse
|
390
420
|
|
421
|
+
TransferDomainToAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
422
|
+
TransferDomainToAnotherAwsAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AccountId"))
|
423
|
+
TransferDomainToAnotherAwsAccountRequest.struct_class = Types::TransferDomainToAnotherAwsAccountRequest
|
424
|
+
|
425
|
+
TransferDomainToAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
426
|
+
TransferDomainToAnotherAwsAccountResponse.add_member(:password, Shapes::ShapeRef.new(shape: String, location_name: "Password"))
|
427
|
+
TransferDomainToAnotherAwsAccountResponse.struct_class = Types::TransferDomainToAnotherAwsAccountResponse
|
428
|
+
|
391
429
|
UnsupportedTLD.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
392
430
|
UnsupportedTLD.struct_class = Types::UnsupportedTLD
|
393
431
|
|
@@ -445,11 +483,33 @@ module Aws::Route53Domains
|
|
445
483
|
"jsonVersion" => "1.1",
|
446
484
|
"protocol" => "json",
|
447
485
|
"serviceFullName" => "Amazon Route 53 Domains",
|
486
|
+
"serviceId" => "Route 53 Domains",
|
448
487
|
"signatureVersion" => "v4",
|
449
488
|
"targetPrefix" => "Route53Domains_v20140515",
|
450
489
|
"uid" => "route53domains-2014-05-15",
|
451
490
|
}
|
452
491
|
|
492
|
+
api.add_operation(:accept_domain_transfer_from_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
493
|
+
o.name = "AcceptDomainTransferFromAnotherAwsAccount"
|
494
|
+
o.http_method = "POST"
|
495
|
+
o.http_request_uri = "/"
|
496
|
+
o.input = Shapes::ShapeRef.new(shape: AcceptDomainTransferFromAnotherAwsAccountRequest)
|
497
|
+
o.output = Shapes::ShapeRef.new(shape: AcceptDomainTransferFromAnotherAwsAccountResponse)
|
498
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
499
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
500
|
+
o.errors << Shapes::ShapeRef.new(shape: DomainLimitExceeded)
|
501
|
+
end)
|
502
|
+
|
503
|
+
api.add_operation(:cancel_domain_transfer_to_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
504
|
+
o.name = "CancelDomainTransferToAnotherAwsAccount"
|
505
|
+
o.http_method = "POST"
|
506
|
+
o.http_request_uri = "/"
|
507
|
+
o.input = Shapes::ShapeRef.new(shape: CancelDomainTransferToAnotherAwsAccountRequest)
|
508
|
+
o.output = Shapes::ShapeRef.new(shape: CancelDomainTransferToAnotherAwsAccountResponse)
|
509
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
510
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
511
|
+
end)
|
512
|
+
|
453
513
|
api.add_operation(:check_domain_availability, Seahorse::Model::Operation.new.tap do |o|
|
454
514
|
o.name = "CheckDomainAvailability"
|
455
515
|
o.http_method = "POST"
|
@@ -623,6 +683,16 @@ module Aws::Route53Domains
|
|
623
683
|
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
624
684
|
end)
|
625
685
|
|
686
|
+
api.add_operation(:reject_domain_transfer_from_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
687
|
+
o.name = "RejectDomainTransferFromAnotherAwsAccount"
|
688
|
+
o.http_method = "POST"
|
689
|
+
o.http_request_uri = "/"
|
690
|
+
o.input = Shapes::ShapeRef.new(shape: RejectDomainTransferFromAnotherAwsAccountRequest)
|
691
|
+
o.output = Shapes::ShapeRef.new(shape: RejectDomainTransferFromAnotherAwsAccountResponse)
|
692
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
693
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
694
|
+
end)
|
695
|
+
|
626
696
|
api.add_operation(:renew_domain, Seahorse::Model::Operation.new.tap do |o|
|
627
697
|
o.name = "RenewDomain"
|
628
698
|
o.http_method = "POST"
|
@@ -671,6 +741,17 @@ module Aws::Route53Domains
|
|
671
741
|
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
672
742
|
end)
|
673
743
|
|
744
|
+
api.add_operation(:transfer_domain_to_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
745
|
+
o.name = "TransferDomainToAnotherAwsAccount"
|
746
|
+
o.http_method = "POST"
|
747
|
+
o.http_request_uri = "/"
|
748
|
+
o.input = Shapes::ShapeRef.new(shape: TransferDomainToAnotherAwsAccountRequest)
|
749
|
+
o.output = Shapes::ShapeRef.new(shape: TransferDomainToAnotherAwsAccountResponse)
|
750
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
751
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
752
|
+
o.errors << Shapes::ShapeRef.new(shape: DuplicateRequest)
|
753
|
+
end)
|
754
|
+
|
674
755
|
api.add_operation(:update_domain_contact, Seahorse::Model::Operation.new.tap do |o|
|
675
756
|
o.name = "UpdateDomainContact"
|
676
757
|
o.http_method = "POST"
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Route53Domains
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Route53Domains::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Route53Domains::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Route53Domains::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -8,6 +10,64 @@
|
|
8
10
|
module Aws::Route53Domains
|
9
11
|
module Types
|
10
12
|
|
13
|
+
# The AcceptDomainTransferFromAnotherAwsAccount request includes the
|
14
|
+
# following elements.
|
15
|
+
#
|
16
|
+
# @note When making an API call, you may pass AcceptDomainTransferFromAnotherAwsAccountRequest
|
17
|
+
# data as a hash:
|
18
|
+
#
|
19
|
+
# {
|
20
|
+
# domain_name: "DomainName", # required
|
21
|
+
# password: "String", # required
|
22
|
+
# }
|
23
|
+
#
|
24
|
+
# @!attribute [rw] domain_name
|
25
|
+
# The name of the domain that was specified when another AWS account
|
26
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
27
|
+
#
|
28
|
+
#
|
29
|
+
#
|
30
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] password
|
34
|
+
# The password that was returned by the
|
35
|
+
# [TransferDomainToAnotherAwsAccount][1] request.
|
36
|
+
#
|
37
|
+
#
|
38
|
+
#
|
39
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
40
|
+
# @return [String]
|
41
|
+
#
|
42
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccountRequest AWS API Documentation
|
43
|
+
#
|
44
|
+
class AcceptDomainTransferFromAnotherAwsAccountRequest < Struct.new(
|
45
|
+
:domain_name,
|
46
|
+
:password)
|
47
|
+
SENSITIVE = []
|
48
|
+
include Aws::Structure
|
49
|
+
end
|
50
|
+
|
51
|
+
# The AcceptDomainTransferFromAnotherAwsAccount response includes the
|
52
|
+
# following element.
|
53
|
+
#
|
54
|
+
# @!attribute [rw] operation_id
|
55
|
+
# Identifier for tracking the progress of the request. To query the
|
56
|
+
# operation status, use [GetOperationDetail][1].
|
57
|
+
#
|
58
|
+
#
|
59
|
+
#
|
60
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
61
|
+
# @return [String]
|
62
|
+
#
|
63
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccountResponse AWS API Documentation
|
64
|
+
#
|
65
|
+
class AcceptDomainTransferFromAnotherAwsAccountResponse < Struct.new(
|
66
|
+
:operation_id)
|
67
|
+
SENSITIVE = []
|
68
|
+
include Aws::Structure
|
69
|
+
end
|
70
|
+
|
11
71
|
# Information for one billing record.
|
12
72
|
#
|
13
73
|
# @!attribute [rw] domain_name
|
@@ -15,11 +75,11 @@ module Aws::Route53Domains
|
|
15
75
|
# domain name contains characters other than a-z, 0-9, and - (hyphen),
|
16
76
|
# such as an internationalized domain name, then this value is in
|
17
77
|
# Punycode. For more information, see [DNS Domain Name Format][1] in
|
18
|
-
# the *Amazon Route 53 Developer
|
78
|
+
# the *Amazon Route 53 Developer Guide*.
|
19
79
|
#
|
20
80
|
#
|
21
81
|
#
|
22
|
-
# [1]:
|
82
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
|
23
83
|
# @return [String]
|
24
84
|
#
|
25
85
|
# @!attribute [rw] operation
|
@@ -48,6 +108,48 @@ module Aws::Route53Domains
|
|
48
108
|
:invoice_id,
|
49
109
|
:bill_date,
|
50
110
|
:price)
|
111
|
+
SENSITIVE = []
|
112
|
+
include Aws::Structure
|
113
|
+
end
|
114
|
+
|
115
|
+
# The CancelDomainTransferToAnotherAwsAccount request includes the
|
116
|
+
# following element.
|
117
|
+
#
|
118
|
+
# @note When making an API call, you may pass CancelDomainTransferToAnotherAwsAccountRequest
|
119
|
+
# data as a hash:
|
120
|
+
#
|
121
|
+
# {
|
122
|
+
# domain_name: "DomainName", # required
|
123
|
+
# }
|
124
|
+
#
|
125
|
+
# @!attribute [rw] domain_name
|
126
|
+
# The name of the domain for which you want to cancel the transfer to
|
127
|
+
# another AWS account.
|
128
|
+
# @return [String]
|
129
|
+
#
|
130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccountRequest AWS API Documentation
|
131
|
+
#
|
132
|
+
class CancelDomainTransferToAnotherAwsAccountRequest < Struct.new(
|
133
|
+
:domain_name)
|
134
|
+
SENSITIVE = []
|
135
|
+
include Aws::Structure
|
136
|
+
end
|
137
|
+
|
138
|
+
# The `CancelDomainTransferToAnotherAwsAccount` response includes the
|
139
|
+
# following element.
|
140
|
+
#
|
141
|
+
# @!attribute [rw] operation_id
|
142
|
+
# The identifier that `TransferDomainToAnotherAwsAccount` returned to
|
143
|
+
# track the progress of the request. Because the transfer request was
|
144
|
+
# canceled, the value is no longer valid, and you can't use
|
145
|
+
# `GetOperationDetail` to query the operation status.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccountResponse AWS API Documentation
|
149
|
+
#
|
150
|
+
class CancelDomainTransferToAnotherAwsAccountResponse < Struct.new(
|
151
|
+
:operation_id)
|
152
|
+
SENSITIVE = []
|
51
153
|
include Aws::Structure
|
52
154
|
end
|
53
155
|
|
@@ -62,11 +164,34 @@ module Aws::Route53Domains
|
|
62
164
|
# }
|
63
165
|
#
|
64
166
|
# @!attribute [rw] domain_name
|
65
|
-
# The name of the domain that you want to get availability for.
|
167
|
+
# The name of the domain that you want to get availability for. The
|
168
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
169
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
170
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
171
|
+
# Guide*.
|
172
|
+
#
|
173
|
+
# The domain name can contain only the following characters:
|
174
|
+
#
|
175
|
+
# * Letters a through z. Domain names are not case sensitive.
|
176
|
+
#
|
177
|
+
# * Numbers 0 through 9.
|
66
178
|
#
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
179
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
180
|
+
# a label.
|
181
|
+
#
|
182
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
183
|
+
# `example.com`.
|
184
|
+
#
|
185
|
+
# Internationalized domain names are not supported for some top-level
|
186
|
+
# domains. To determine whether the TLD that you want to use supports
|
187
|
+
# internationalized domain names, see [Domains that You Can Register
|
188
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
189
|
+
# Internationalized Domain Names][2].
|
190
|
+
#
|
191
|
+
#
|
192
|
+
#
|
193
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
194
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
70
195
|
# @return [String]
|
71
196
|
#
|
72
197
|
# @!attribute [rw] idn_lang_code
|
@@ -78,6 +203,7 @@ module Aws::Route53Domains
|
|
78
203
|
class CheckDomainAvailabilityRequest < Struct.new(
|
79
204
|
:domain_name,
|
80
205
|
:idn_lang_code)
|
206
|
+
SENSITIVE = []
|
81
207
|
include Aws::Structure
|
82
208
|
end
|
83
209
|
|
@@ -107,9 +233,9 @@ module Aws::Route53Domains
|
|
107
233
|
# DONT\_KNOW
|
108
234
|
#
|
109
235
|
# : The TLD registry didn't reply with a definitive answer about
|
110
|
-
# whether the domain name is available.
|
111
|
-
#
|
112
|
-
#
|
236
|
+
# whether the domain name is available. Route 53 can return this
|
237
|
+
# response for a variety of reasons, for example, the registry is
|
238
|
+
# performing maintenance. Try again later.
|
113
239
|
#
|
114
240
|
# PENDING
|
115
241
|
#
|
@@ -139,6 +265,7 @@ module Aws::Route53Domains
|
|
139
265
|
#
|
140
266
|
class CheckDomainAvailabilityResponse < Struct.new(
|
141
267
|
:availability)
|
268
|
+
SENSITIVE = []
|
142
269
|
include Aws::Structure
|
143
270
|
end
|
144
271
|
|
@@ -154,11 +281,27 @@ module Aws::Route53Domains
|
|
154
281
|
# }
|
155
282
|
#
|
156
283
|
# @!attribute [rw] domain_name
|
157
|
-
# The name of the domain that you want to transfer to
|
284
|
+
# The name of the domain that you want to transfer to Route 53. The
|
285
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
286
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
287
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
288
|
+
# Guide*.
|
289
|
+
#
|
290
|
+
# The domain name can contain only the following characters:
|
291
|
+
#
|
292
|
+
# * Letters a through z. Domain names are not case sensitive.
|
293
|
+
#
|
294
|
+
# * Numbers 0 through 9.
|
295
|
+
#
|
296
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
297
|
+
# a label.
|
298
|
+
#
|
299
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
300
|
+
# `example.com`.
|
158
301
|
#
|
159
|
-
#
|
160
|
-
#
|
161
|
-
#
|
302
|
+
#
|
303
|
+
#
|
304
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
162
305
|
# @return [String]
|
163
306
|
#
|
164
307
|
# @!attribute [rw] auth_code
|
@@ -172,6 +315,7 @@ module Aws::Route53Domains
|
|
172
315
|
class CheckDomainTransferabilityRequest < Struct.new(
|
173
316
|
:domain_name,
|
174
317
|
:auth_code)
|
318
|
+
SENSITIVE = [:auth_code]
|
175
319
|
include Aws::Structure
|
176
320
|
end
|
177
321
|
|
@@ -180,13 +324,14 @@ module Aws::Route53Domains
|
|
180
324
|
#
|
181
325
|
# @!attribute [rw] transferability
|
182
326
|
# A complex type that contains information about whether the specified
|
183
|
-
# domain can be transferred to
|
327
|
+
# domain can be transferred to Route 53.
|
184
328
|
# @return [Types::DomainTransferability]
|
185
329
|
#
|
186
330
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainTransferabilityResponse AWS API Documentation
|
187
331
|
#
|
188
332
|
class CheckDomainTransferabilityResponse < Struct.new(
|
189
333
|
:transferability)
|
334
|
+
SENSITIVE = []
|
190
335
|
include Aws::Structure
|
191
336
|
end
|
192
337
|
|
@@ -211,7 +356,7 @@ module Aws::Route53Domains
|
|
211
356
|
# fax: "ContactNumber",
|
212
357
|
# extra_params: [
|
213
358
|
# {
|
214
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
359
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
215
360
|
# value: "ExtraParamValue", # required
|
216
361
|
# },
|
217
362
|
# ],
|
@@ -227,9 +372,23 @@ module Aws::Route53Domains
|
|
227
372
|
#
|
228
373
|
# @!attribute [rw] contact_type
|
229
374
|
# Indicates whether the contact is a person, company, association, or
|
230
|
-
# public organization.
|
231
|
-
#
|
232
|
-
#
|
375
|
+
# public organization. Note the following:
|
376
|
+
#
|
377
|
+
# * If you specify a value other than `PERSON`, you must also specify
|
378
|
+
# a value for `OrganizationName`.
|
379
|
+
#
|
380
|
+
# * For some TLDs, the privacy protection available depends on the
|
381
|
+
# value that you specify for `Contact Type`. For the privacy
|
382
|
+
# protection settings for your TLD, see [Domains that You Can
|
383
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53
|
384
|
+
# Developer Guide*
|
385
|
+
#
|
386
|
+
# * For .es domains, if you specify `PERSON`, you must specify
|
387
|
+
# `INDIVIDUAL` for the value of `ES_LEGAL_FORM`.
|
388
|
+
#
|
389
|
+
#
|
390
|
+
#
|
391
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
233
392
|
# @return [String]
|
234
393
|
#
|
235
394
|
# @!attribute [rw] organization_name
|
@@ -303,6 +462,7 @@ module Aws::Route53Domains
|
|
303
462
|
:email,
|
304
463
|
:fax,
|
305
464
|
:extra_params)
|
465
|
+
SENSITIVE = []
|
306
466
|
include Aws::Structure
|
307
467
|
end
|
308
468
|
|
@@ -329,6 +489,7 @@ module Aws::Route53Domains
|
|
329
489
|
class DeleteTagsForDomainRequest < Struct.new(
|
330
490
|
:domain_name,
|
331
491
|
:tags_to_delete)
|
492
|
+
SENSITIVE = []
|
332
493
|
include Aws::Structure
|
333
494
|
end
|
334
495
|
|
@@ -352,6 +513,7 @@ module Aws::Route53Domains
|
|
352
513
|
#
|
353
514
|
class DisableDomainAutoRenewRequest < Struct.new(
|
354
515
|
:domain_name)
|
516
|
+
SENSITIVE = []
|
355
517
|
include Aws::Structure
|
356
518
|
end
|
357
519
|
|
@@ -377,20 +539,26 @@ module Aws::Route53Domains
|
|
377
539
|
#
|
378
540
|
class DisableDomainTransferLockRequest < Struct.new(
|
379
541
|
:domain_name)
|
542
|
+
SENSITIVE = []
|
380
543
|
include Aws::Structure
|
381
544
|
end
|
382
545
|
|
383
546
|
# The DisableDomainTransferLock response includes the following element.
|
384
547
|
#
|
385
548
|
# @!attribute [rw] operation_id
|
386
|
-
# Identifier for tracking the progress of the request. To
|
387
|
-
#
|
549
|
+
# Identifier for tracking the progress of the request. To query the
|
550
|
+
# operation status, use [GetOperationDetail][1].
|
551
|
+
#
|
552
|
+
#
|
553
|
+
#
|
554
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
388
555
|
# @return [String]
|
389
556
|
#
|
390
557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainTransferLockResponse AWS API Documentation
|
391
558
|
#
|
392
559
|
class DisableDomainTransferLockResponse < Struct.new(
|
393
560
|
:operation_id)
|
561
|
+
SENSITIVE = []
|
394
562
|
include Aws::Structure
|
395
563
|
end
|
396
564
|
|
@@ -406,6 +574,7 @@ module Aws::Route53Domains
|
|
406
574
|
#
|
407
575
|
class DomainLimitExceeded < Struct.new(
|
408
576
|
:message)
|
577
|
+
SENSITIVE = []
|
409
578
|
include Aws::Structure
|
410
579
|
end
|
411
580
|
|
@@ -440,9 +609,9 @@ module Aws::Route53Domains
|
|
440
609
|
# DONT\_KNOW
|
441
610
|
#
|
442
611
|
# : The TLD registry didn't reply with a definitive answer about
|
443
|
-
# whether the domain name is available.
|
444
|
-
#
|
445
|
-
#
|
612
|
+
# whether the domain name is available. Route 53 can return this
|
613
|
+
# response for a variety of reasons, for example, the registry is
|
614
|
+
# performing maintenance. Try again later.
|
446
615
|
#
|
447
616
|
# PENDING
|
448
617
|
#
|
@@ -473,6 +642,7 @@ module Aws::Route53Domains
|
|
473
642
|
class DomainSuggestion < Struct.new(
|
474
643
|
:domain_name,
|
475
644
|
:availability)
|
645
|
+
SENSITIVE = []
|
476
646
|
include Aws::Structure
|
477
647
|
end
|
478
648
|
|
@@ -493,7 +663,8 @@ module Aws::Route53Domains
|
|
493
663
|
# @return [Boolean]
|
494
664
|
#
|
495
665
|
# @!attribute [rw] expiry
|
496
|
-
# Expiration date of the domain in
|
666
|
+
# Expiration date of the domain in Unix time format and Coordinated
|
667
|
+
# Universal Time (UTC).
|
497
668
|
# @return [Time]
|
498
669
|
#
|
499
670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DomainSummary AWS API Documentation
|
@@ -503,14 +674,15 @@ module Aws::Route53Domains
|
|
503
674
|
:auto_renew,
|
504
675
|
:transfer_lock,
|
505
676
|
:expiry)
|
677
|
+
SENSITIVE = []
|
506
678
|
include Aws::Structure
|
507
679
|
end
|
508
680
|
|
509
681
|
# A complex type that contains information about whether the specified
|
510
|
-
# domain can be transferred to
|
682
|
+
# domain can be transferred to Route 53.
|
511
683
|
#
|
512
684
|
# @!attribute [rw] transferable
|
513
|
-
# Whether the domain name can be transferred to
|
685
|
+
# Whether the domain name can be transferred to Route 53.
|
514
686
|
#
|
515
687
|
# <note markdown="1"> You can transfer only domains that have a value of `TRANSFERABLE`
|
516
688
|
# for `Transferable`.
|
@@ -521,11 +693,11 @@ module Aws::Route53Domains
|
|
521
693
|
#
|
522
694
|
# TRANSFERABLE
|
523
695
|
#
|
524
|
-
# : The domain name can be transferred to
|
696
|
+
# : The domain name can be transferred to Route 53.
|
525
697
|
#
|
526
698
|
# UNTRANSFERRABLE
|
527
699
|
#
|
528
|
-
# : The domain name can't be transferred to
|
700
|
+
# : The domain name can't be transferred to Route 53.
|
529
701
|
#
|
530
702
|
# DONT\_KNOW
|
531
703
|
#
|
@@ -536,6 +708,7 @@ module Aws::Route53Domains
|
|
536
708
|
#
|
537
709
|
class DomainTransferability < Struct.new(
|
538
710
|
:transferable)
|
711
|
+
SENSITIVE = []
|
539
712
|
include Aws::Structure
|
540
713
|
end
|
541
714
|
|
@@ -549,6 +722,7 @@ module Aws::Route53Domains
|
|
549
722
|
#
|
550
723
|
class DuplicateRequest < Struct.new(
|
551
724
|
:message)
|
725
|
+
SENSITIVE = []
|
552
726
|
include Aws::Structure
|
553
727
|
end
|
554
728
|
|
@@ -568,6 +742,7 @@ module Aws::Route53Domains
|
|
568
742
|
#
|
569
743
|
class EnableDomainAutoRenewRequest < Struct.new(
|
570
744
|
:domain_name)
|
745
|
+
SENSITIVE = []
|
571
746
|
include Aws::Structure
|
572
747
|
end
|
573
748
|
|
@@ -592,6 +767,7 @@ module Aws::Route53Domains
|
|
592
767
|
#
|
593
768
|
class EnableDomainTransferLockRequest < Struct.new(
|
594
769
|
:domain_name)
|
770
|
+
SENSITIVE = []
|
595
771
|
include Aws::Structure
|
596
772
|
end
|
597
773
|
|
@@ -606,6 +782,7 @@ module Aws::Route53Domains
|
|
606
782
|
#
|
607
783
|
class EnableDomainTransferLockResponse < Struct.new(
|
608
784
|
:operation_id)
|
785
|
+
SENSITIVE = []
|
609
786
|
include Aws::Structure
|
610
787
|
end
|
611
788
|
|
@@ -615,47 +792,367 @@ module Aws::Route53Domains
|
|
615
792
|
# data as a hash:
|
616
793
|
#
|
617
794
|
# {
|
618
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
795
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
619
796
|
# value: "ExtraParamValue", # required
|
620
797
|
# }
|
621
798
|
#
|
622
799
|
# @!attribute [rw] name
|
623
|
-
#
|
624
|
-
# Here are the top-level domains that require additional
|
625
|
-
# and
|
800
|
+
# The name of an additional parameter that is required by a top-level
|
801
|
+
# domain. Here are the top-level domains that require additional
|
802
|
+
# parameters and the names of the parameters that they require:
|
803
|
+
#
|
804
|
+
# .com.au and .net.au
|
805
|
+
# : * `AU_ID_NUMBER`
|
806
|
+
#
|
807
|
+
# * `AU_ID_TYPE`
|
808
|
+
#
|
809
|
+
# Valid values include the following:
|
810
|
+
#
|
811
|
+
# * `ABN` (Australian business number)
|
812
|
+
#
|
813
|
+
# * `ACN` (Australian company number)
|
814
|
+
#
|
815
|
+
# * `TM` (Trademark number)
|
816
|
+
#
|
817
|
+
# .ca
|
818
|
+
# : * `BRAND_NUMBER`
|
819
|
+
#
|
820
|
+
# * `CA_BUSINESS_ENTITY_TYPE`
|
821
|
+
#
|
822
|
+
# Valid values include the following:
|
823
|
+
#
|
824
|
+
# * `BANK` (Bank)
|
825
|
+
#
|
826
|
+
# * `COMMERCIAL_COMPANY` (Commercial company)
|
827
|
+
#
|
828
|
+
# * `COMPANY` (Company)
|
829
|
+
#
|
830
|
+
# * `COOPERATION` (Cooperation)
|
831
|
+
#
|
832
|
+
# * `COOPERATIVE` (Cooperative)
|
833
|
+
#
|
834
|
+
# * `COOPRIX` (Cooprix)
|
835
|
+
#
|
836
|
+
# * `CORP` (Corporation)
|
837
|
+
#
|
838
|
+
# * `CREDIT_UNION` (Credit union)
|
839
|
+
#
|
840
|
+
# * `FOMIA` (Federation of mutual insurance associations)
|
841
|
+
#
|
842
|
+
# * `INC` (Incorporated)
|
843
|
+
#
|
844
|
+
# * `LTD` (Limited)
|
845
|
+
#
|
846
|
+
# * `LTEE` (Limitée)
|
847
|
+
#
|
848
|
+
# * `LLC` (Limited liability corporation)
|
849
|
+
#
|
850
|
+
# * `LLP` (Limited liability partnership)
|
851
|
+
#
|
852
|
+
# * `LTE` (Lte.)
|
853
|
+
#
|
854
|
+
# * `MBA` (Mutual benefit association)
|
855
|
+
#
|
856
|
+
# * `MIC` (Mutual insurance company)
|
857
|
+
#
|
858
|
+
# * `NFP` (Not-for-profit corporation)
|
859
|
+
#
|
860
|
+
# * `SA` (S.A.)
|
861
|
+
#
|
862
|
+
# * `SAVINGS_COMPANY` (Savings company)
|
863
|
+
#
|
864
|
+
# * `SAVINGS_UNION` (Savings union)
|
865
|
+
#
|
866
|
+
# * `SARL` (Société à responsabilité limitée)
|
867
|
+
#
|
868
|
+
# * `TRUST` (Trust)
|
869
|
+
#
|
870
|
+
# * `ULC` (Unlimited liability corporation)
|
871
|
+
#
|
872
|
+
# * `CA_LEGAL_TYPE`
|
873
|
+
#
|
874
|
+
# When `ContactType` is `PERSON`, valid values include the
|
875
|
+
# following:
|
876
|
+
#
|
877
|
+
# * `ABO` (Aboriginal Peoples indigenous to Canada)
|
878
|
+
#
|
879
|
+
# * `CCT` (Canadian citizen)
|
880
|
+
#
|
881
|
+
# * `LGR` (Legal Representative of a Canadian Citizen or Permanent
|
882
|
+
# Resident)
|
883
|
+
#
|
884
|
+
# * `RES` (Permanent resident of Canada)
|
885
|
+
#
|
886
|
+
# When `ContactType` is a value other than `PERSON`, valid values
|
887
|
+
# include the following:
|
888
|
+
#
|
889
|
+
# * `ASS` (Canadian unincorporated association)
|
890
|
+
#
|
891
|
+
# * `CCO` (Canadian corporation)
|
892
|
+
#
|
893
|
+
# * `EDU` (Canadian educational institution)
|
894
|
+
#
|
895
|
+
# * `GOV` (Government or government entity in Canada)
|
896
|
+
#
|
897
|
+
# * `HOP` (Canadian Hospital)
|
898
|
+
#
|
899
|
+
# * `INB` (Indian Band recognized by the Indian Act of Canada)
|
900
|
+
#
|
901
|
+
# * `LAM` (Canadian Library, Archive, or Museum)
|
902
|
+
#
|
903
|
+
# * `MAJ` (Her/His Majesty the Queen/King)
|
904
|
+
#
|
905
|
+
# * `OMK` (Official mark registered in Canada)
|
906
|
+
#
|
907
|
+
# * `PLT` (Canadian Political Party)
|
908
|
+
#
|
909
|
+
# * `PRT` (Partnership Registered in Canada)
|
910
|
+
#
|
911
|
+
# * `TDM` (Trademark registered in Canada)
|
912
|
+
#
|
913
|
+
# * `TRD` (Canadian Trade Union)
|
914
|
+
#
|
915
|
+
# * `TRS` (Trust established in Canada)
|
916
|
+
#
|
917
|
+
# .es
|
918
|
+
# : * `ES_IDENTIFICATION`
|
919
|
+
#
|
920
|
+
# Specify the applicable value:
|
921
|
+
#
|
922
|
+
# * **For contacts inside Spain:** Enter your passport ID.
|
923
|
+
#
|
924
|
+
# * **For contacts outside of Spain:** Enter the VAT
|
925
|
+
# identification number for the company.
|
926
|
+
#
|
927
|
+
# <note markdown="1"> For .es domains, the value of `ContactType` must be `PERSON`.
|
928
|
+
#
|
929
|
+
# </note>
|
930
|
+
#
|
931
|
+
# * `ES_IDENTIFICATION_TYPE`
|
932
|
+
#
|
933
|
+
# Valid values include the following:
|
934
|
+
#
|
935
|
+
# * `DNI_AND_NIF` (For Spanish contacts)
|
936
|
+
#
|
937
|
+
# * `NIE` (For foreigners with legal residence)
|
938
|
+
#
|
939
|
+
# * `OTHER` (For contacts outside of Spain)
|
940
|
+
#
|
941
|
+
# * `ES_LEGAL_FORM`
|
942
|
+
#
|
943
|
+
# Valid values include the following:
|
944
|
+
#
|
945
|
+
# * `ASSOCIATION`
|
946
|
+
#
|
947
|
+
# * `CENTRAL_GOVERNMENT_BODY`
|
948
|
+
#
|
949
|
+
# * `CIVIL_SOCIETY`
|
950
|
+
#
|
951
|
+
# * `COMMUNITY_OF_OWNERS`
|
952
|
+
#
|
953
|
+
# * `COMMUNITY_PROPERTY`
|
954
|
+
#
|
955
|
+
# * `CONSULATE`
|
956
|
+
#
|
957
|
+
# * `COOPERATIVE`
|
958
|
+
#
|
959
|
+
# * `DESIGNATION_OF_ORIGIN_SUPERVISORY_COUNCIL`
|
960
|
+
#
|
961
|
+
# * `ECONOMIC_INTEREST_GROUP`
|
962
|
+
#
|
963
|
+
# * `EMBASSY`
|
964
|
+
#
|
965
|
+
# * `ENTITY_MANAGING_NATURAL_AREAS`
|
966
|
+
#
|
967
|
+
# * `FARM_PARTNERSHIP`
|
968
|
+
#
|
969
|
+
# * `FOUNDATION`
|
970
|
+
#
|
971
|
+
# * `GENERAL_AND_LIMITED_PARTNERSHIP`
|
972
|
+
#
|
973
|
+
# * `GENERAL_PARTNERSHIP`
|
974
|
+
#
|
975
|
+
# * `INDIVIDUAL`
|
976
|
+
#
|
977
|
+
# * `LIMITED_COMPANY`
|
978
|
+
#
|
979
|
+
# * `LOCAL_AUTHORITY`
|
980
|
+
#
|
981
|
+
# * `LOCAL_PUBLIC_ENTITY`
|
982
|
+
#
|
983
|
+
# * `MUTUAL_INSURANCE_COMPANY`
|
984
|
+
#
|
985
|
+
# * `NATIONAL_PUBLIC_ENTITY`
|
986
|
+
#
|
987
|
+
# * `ORDER_OR_RELIGIOUS_INSTITUTION`
|
988
|
+
#
|
989
|
+
# * `OTHERS (Only for contacts outside of Spain)`
|
990
|
+
#
|
991
|
+
# * `POLITICAL_PARTY`
|
992
|
+
#
|
993
|
+
# * `PROFESSIONAL_ASSOCIATION`
|
994
|
+
#
|
995
|
+
# * `PUBLIC_LAW_ASSOCIATION`
|
996
|
+
#
|
997
|
+
# * `PUBLIC_LIMITED_COMPANY`
|
998
|
+
#
|
999
|
+
# * `REGIONAL_GOVERNMENT_BODY`
|
1000
|
+
#
|
1001
|
+
# * `REGIONAL_PUBLIC_ENTITY`
|
1002
|
+
#
|
1003
|
+
# * `SAVINGS_BANK`
|
626
1004
|
#
|
627
|
-
#
|
1005
|
+
# * `SPANISH_OFFICE`
|
628
1006
|
#
|
629
|
-
#
|
630
|
-
# `CA_BUSINESS_ENTITY_TYPE`
|
1007
|
+
# * `SPORTS_ASSOCIATION`
|
631
1008
|
#
|
632
|
-
#
|
633
|
-
# `ES_LEGAL_FORM`
|
1009
|
+
# * `SPORTS_FEDERATION`
|
634
1010
|
#
|
635
|
-
#
|
636
|
-
# `FI_ID_NUMBER`, `FI_NATIONALITY`, and `FI_ORGANIZATION_TYPE`
|
1011
|
+
# * `SPORTS_LIMITED_COMPANY`
|
637
1012
|
#
|
638
|
-
#
|
639
|
-
# `BIRTH_DATE_IN_YYYY_MM_DD`, `BIRTH_COUNTRY`, and `BIRTH_CITY`
|
1013
|
+
# * `TEMPORARY_ALLIANCE_OF_ENTERPRISES`
|
640
1014
|
#
|
641
|
-
#
|
642
|
-
# `IT_REGISTRANT_ENTITY_TYPE`
|
1015
|
+
# * `TRADE_UNION`
|
643
1016
|
#
|
644
|
-
#
|
1017
|
+
# * `WORKER_OWNED_COMPANY`
|
645
1018
|
#
|
646
|
-
#
|
1019
|
+
# * `WORKER_OWNED_LIMITED_COMPANY`
|
647
1020
|
#
|
648
|
-
#
|
1021
|
+
# .fi
|
1022
|
+
# : * `BIRTH_DATE_IN_YYYY_MM_DD`
|
649
1023
|
#
|
650
|
-
#
|
651
|
-
# `UK_COMPANY_NUMBER`
|
1024
|
+
# * `FI_BUSINESS_NUMBER`
|
652
1025
|
#
|
653
|
-
#
|
1026
|
+
# * `FI_ID_NUMBER`
|
1027
|
+
#
|
1028
|
+
# * `FI_NATIONALITY`
|
1029
|
+
#
|
1030
|
+
# Valid values include the following:
|
1031
|
+
#
|
1032
|
+
# * `FINNISH`
|
1033
|
+
#
|
1034
|
+
# * `NOT_FINNISH`
|
1035
|
+
#
|
1036
|
+
# * `FI_ORGANIZATION_TYPE`
|
1037
|
+
#
|
1038
|
+
# Valid values include the following:
|
1039
|
+
#
|
1040
|
+
# * `COMPANY`
|
1041
|
+
#
|
1042
|
+
# * `CORPORATION`
|
1043
|
+
#
|
1044
|
+
# * `GOVERNMENT`
|
1045
|
+
#
|
1046
|
+
# * `INSTITUTION`
|
1047
|
+
#
|
1048
|
+
# * `POLITICAL_PARTY`
|
1049
|
+
#
|
1050
|
+
# * `PUBLIC_COMMUNITY`
|
1051
|
+
#
|
1052
|
+
# * `TOWNSHIP`
|
1053
|
+
#
|
1054
|
+
# .fr
|
1055
|
+
# : * `BIRTH_CITY`
|
1056
|
+
#
|
1057
|
+
# * `BIRTH_COUNTRY`
|
1058
|
+
#
|
1059
|
+
# * `BIRTH_DATE_IN_YYYY_MM_DD`
|
1060
|
+
#
|
1061
|
+
# * `BIRTH_DEPARTMENT`\: Specify the INSEE code that corresponds
|
1062
|
+
# with the department where the contact was born. If the contact
|
1063
|
+
# was born somewhere other than France or its overseas
|
1064
|
+
# departments, specify `99`. For more information, including a
|
1065
|
+
# list of departments and the corresponding INSEE numbers, see the
|
1066
|
+
# Wikipedia entry [Departments of France][1].
|
1067
|
+
#
|
1068
|
+
# * `BRAND_NUMBER`
|
1069
|
+
#
|
1070
|
+
# .it
|
1071
|
+
# : * `IT_NATIONALITY`
|
1072
|
+
#
|
1073
|
+
# * `IT_PIN`
|
1074
|
+
#
|
1075
|
+
# * `IT_REGISTRANT_ENTITY_TYPE`
|
1076
|
+
#
|
1077
|
+
# Valid values include the following:
|
1078
|
+
#
|
1079
|
+
# * `FOREIGNERS`
|
1080
|
+
#
|
1081
|
+
# * `FREELANCE_WORKERS` (Freelance workers and professionals)
|
1082
|
+
#
|
1083
|
+
# * `ITALIAN_COMPANIES` (Italian companies and one-person
|
1084
|
+
# companies)
|
1085
|
+
#
|
1086
|
+
# * `NON_PROFIT_ORGANIZATIONS`
|
1087
|
+
#
|
1088
|
+
# * `OTHER_SUBJECTS`
|
1089
|
+
#
|
1090
|
+
# * `PUBLIC_ORGANIZATIONS`
|
1091
|
+
#
|
1092
|
+
# .ru
|
1093
|
+
# : * `BIRTH_DATE_IN_YYYY_MM_DD`
|
1094
|
+
#
|
1095
|
+
# * `RU_PASSPORT_DATA`
|
1096
|
+
#
|
1097
|
+
# .se
|
1098
|
+
# : * `BIRTH_COUNTRY`
|
1099
|
+
#
|
1100
|
+
# * `SE_ID_NUMBER`
|
1101
|
+
#
|
1102
|
+
# .sg
|
1103
|
+
# : * `SG_ID_NUMBER`
|
1104
|
+
#
|
1105
|
+
# ^
|
1106
|
+
#
|
1107
|
+
# .co.uk, .me.uk, and .org.uk
|
1108
|
+
# : * `UK_CONTACT_TYPE`
|
1109
|
+
#
|
1110
|
+
# Valid values include the following:
|
1111
|
+
#
|
1112
|
+
# * `CRC` (UK Corporation by Royal Charter)
|
1113
|
+
#
|
1114
|
+
# * `FCORP` (Non-UK Corporation)
|
1115
|
+
#
|
1116
|
+
# * `FIND` (Non-UK Individual, representing self)
|
1117
|
+
#
|
1118
|
+
# * `FOTHER` (Non-UK Entity that does not fit into any other
|
1119
|
+
# category)
|
1120
|
+
#
|
1121
|
+
# * `GOV` (UK Government Body)
|
1122
|
+
#
|
1123
|
+
# * `IND` (UK Individual (representing self))
|
1124
|
+
#
|
1125
|
+
# * `IP` (UK Industrial/Provident Registered Company)
|
1126
|
+
#
|
1127
|
+
# * `LLP` (UK Limited Liability Partnership)
|
1128
|
+
#
|
1129
|
+
# * `LTD` (UK Limited Company)
|
1130
|
+
#
|
1131
|
+
# * `OTHER` (UK Entity that does not fit into any other category)
|
1132
|
+
#
|
1133
|
+
# * `PLC` (UK Public Limited Company)
|
1134
|
+
#
|
1135
|
+
# * `PTNR` (UK Partnership)
|
1136
|
+
#
|
1137
|
+
# * `RCHAR` (UK Registered Charity)
|
1138
|
+
#
|
1139
|
+
# * `SCH` (UK School)
|
1140
|
+
#
|
1141
|
+
# * `STAT` (UK Statutory Body)
|
1142
|
+
#
|
1143
|
+
# * `STRA` (UK Sole Trader)
|
1144
|
+
#
|
1145
|
+
# * `UK_COMPANY_NUMBER`
|
1146
|
+
#
|
1147
|
+
# In addition, many TLDs require a `VAT_NUMBER`.
|
1148
|
+
#
|
1149
|
+
#
|
1150
|
+
#
|
1151
|
+
# [1]: https://en.wikipedia.org/wiki/Departments_of_France
|
654
1152
|
# @return [String]
|
655
1153
|
#
|
656
1154
|
# @!attribute [rw] value
|
657
|
-
#
|
658
|
-
# some top-level domains.
|
1155
|
+
# The value that corresponds with the name of an extra parameter.
|
659
1156
|
# @return [String]
|
660
1157
|
#
|
661
1158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ExtraParam AWS API Documentation
|
@@ -663,6 +1160,7 @@ module Aws::Route53Domains
|
|
663
1160
|
class ExtraParam < Struct.new(
|
664
1161
|
:name,
|
665
1162
|
:value)
|
1163
|
+
SENSITIVE = []
|
666
1164
|
include Aws::Structure
|
667
1165
|
end
|
668
1166
|
|
@@ -682,6 +1180,7 @@ module Aws::Route53Domains
|
|
682
1180
|
#
|
683
1181
|
class GetContactReachabilityStatusRequest < Struct.new(
|
684
1182
|
:domain_name)
|
1183
|
+
SENSITIVE = []
|
685
1184
|
include Aws::Structure
|
686
1185
|
end
|
687
1186
|
|
@@ -713,6 +1212,7 @@ module Aws::Route53Domains
|
|
713
1212
|
class GetContactReachabilityStatusResponse < Struct.new(
|
714
1213
|
:domain_name,
|
715
1214
|
:status)
|
1215
|
+
SENSITIVE = []
|
716
1216
|
include Aws::Structure
|
717
1217
|
end
|
718
1218
|
|
@@ -734,6 +1234,7 @@ module Aws::Route53Domains
|
|
734
1234
|
#
|
735
1235
|
class GetDomainDetailRequest < Struct.new(
|
736
1236
|
:domain_name)
|
1237
|
+
SENSITIVE = []
|
737
1238
|
include Aws::Structure
|
738
1239
|
end
|
739
1240
|
|
@@ -825,24 +1326,25 @@ module Aws::Route53Domains
|
|
825
1326
|
#
|
826
1327
|
# @!attribute [rw] creation_date
|
827
1328
|
# The date when the domain was created as found in the response to a
|
828
|
-
# WHOIS query. The date and time is in
|
829
|
-
# (UTC).
|
1329
|
+
# WHOIS query. The date and time is in Unix time format and
|
1330
|
+
# Coordinated Universal time (UTC).
|
830
1331
|
# @return [Time]
|
831
1332
|
#
|
832
1333
|
# @!attribute [rw] updated_date
|
833
1334
|
# The last updated date of the domain as found in the response to a
|
834
|
-
# WHOIS query. The date and time is in
|
835
|
-
# (UTC).
|
1335
|
+
# WHOIS query. The date and time is in Unix time format and
|
1336
|
+
# Coordinated Universal time (UTC).
|
836
1337
|
# @return [Time]
|
837
1338
|
#
|
838
1339
|
# @!attribute [rw] expiration_date
|
839
1340
|
# The date when the registration for the domain is set to expire. The
|
840
|
-
# date and time is in Coordinated Universal time
|
1341
|
+
# date and time is in Unix time format and Coordinated Universal time
|
1342
|
+
# (UTC).
|
841
1343
|
# @return [Time]
|
842
1344
|
#
|
843
1345
|
# @!attribute [rw] reseller
|
844
1346
|
# Reseller of the domain. Domains registered or transferred using
|
845
|
-
#
|
1347
|
+
# Route 53 domains will have `"Amazon"` as the reseller.
|
846
1348
|
# @return [String]
|
847
1349
|
#
|
848
1350
|
# @!attribute [rw] dns_sec
|
@@ -894,6 +1396,7 @@ module Aws::Route53Domains
|
|
894
1396
|
:reseller,
|
895
1397
|
:dns_sec,
|
896
1398
|
:status_list)
|
1399
|
+
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
897
1400
|
include Aws::Structure
|
898
1401
|
end
|
899
1402
|
|
@@ -908,28 +1411,44 @@ module Aws::Route53Domains
|
|
908
1411
|
#
|
909
1412
|
# @!attribute [rw] domain_name
|
910
1413
|
# A domain name that you want to use as the basis for a list of
|
911
|
-
# possible domain names. The domain
|
912
|
-
#
|
913
|
-
#
|
914
|
-
#
|
1414
|
+
# possible domain names. The top-level domain (TLD), such as .com,
|
1415
|
+
# must be a TLD that Route 53 supports. For a list of supported TLDs,
|
1416
|
+
# see [Domains that You Can Register with Amazon Route 53][1] in the
|
1417
|
+
# *Amazon Route 53 Developer Guide*.
|
1418
|
+
#
|
1419
|
+
# The domain name can contain only the following characters:
|
1420
|
+
#
|
1421
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1422
|
+
#
|
1423
|
+
# * Numbers 0 through 9.
|
1424
|
+
#
|
1425
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
1426
|
+
# a label.
|
915
1427
|
#
|
1428
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1429
|
+
# `example.com`.
|
916
1430
|
#
|
1431
|
+
# Internationalized domain names are not supported for some top-level
|
1432
|
+
# domains. To determine whether the TLD that you want to use supports
|
1433
|
+
# internationalized domain names, see [Domains that You Can Register
|
1434
|
+
# with Amazon Route 53][1].
|
917
1435
|
#
|
918
|
-
#
|
1436
|
+
#
|
1437
|
+
#
|
1438
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
919
1439
|
# @return [String]
|
920
1440
|
#
|
921
1441
|
# @!attribute [rw] suggestion_count
|
922
|
-
# The number of suggested domain names that you want
|
923
|
-
#
|
1442
|
+
# The number of suggested domain names that you want Route 53 to
|
1443
|
+
# return. Specify a value between 1 and 50.
|
924
1444
|
# @return [Integer]
|
925
1445
|
#
|
926
1446
|
# @!attribute [rw] only_available
|
927
|
-
# If `OnlyAvailable` is `true`,
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
932
|
-
# suggestion.
|
1447
|
+
# If `OnlyAvailable` is `true`, Route 53 returns only domain names
|
1448
|
+
# that are available. If `OnlyAvailable` is `false`, Route 53 returns
|
1449
|
+
# domain names without checking whether they're available to be
|
1450
|
+
# registered. To determine whether the domain is available, you can
|
1451
|
+
# call `checkDomainAvailability` for each suggestion.
|
933
1452
|
# @return [Boolean]
|
934
1453
|
#
|
935
1454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainSuggestionsRequest AWS API Documentation
|
@@ -938,6 +1457,7 @@ module Aws::Route53Domains
|
|
938
1457
|
:domain_name,
|
939
1458
|
:suggestion_count,
|
940
1459
|
:only_available)
|
1460
|
+
SENSITIVE = []
|
941
1461
|
include Aws::Structure
|
942
1462
|
end
|
943
1463
|
|
@@ -951,10 +1471,15 @@ module Aws::Route53Domains
|
|
951
1471
|
#
|
952
1472
|
class GetDomainSuggestionsResponse < Struct.new(
|
953
1473
|
:suggestions_list)
|
1474
|
+
SENSITIVE = []
|
954
1475
|
include Aws::Structure
|
955
1476
|
end
|
956
1477
|
|
957
|
-
# The GetOperationDetail request includes the following element.
|
1478
|
+
# The [GetOperationDetail][1] request includes the following element.
|
1479
|
+
#
|
1480
|
+
#
|
1481
|
+
#
|
1482
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
958
1483
|
#
|
959
1484
|
# @note When making an API call, you may pass GetOperationDetailRequest
|
960
1485
|
# data as a hash:
|
@@ -965,14 +1490,15 @@ module Aws::Route53Domains
|
|
965
1490
|
#
|
966
1491
|
# @!attribute [rw] operation_id
|
967
1492
|
# The identifier for the operation for which you want to get the
|
968
|
-
# status.
|
969
|
-
#
|
1493
|
+
# status. Route 53 returned the identifier in the response to the
|
1494
|
+
# original request.
|
970
1495
|
# @return [String]
|
971
1496
|
#
|
972
1497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetailRequest AWS API Documentation
|
973
1498
|
#
|
974
1499
|
class GetOperationDetailRequest < Struct.new(
|
975
1500
|
:operation_id)
|
1501
|
+
SENSITIVE = []
|
976
1502
|
include Aws::Structure
|
977
1503
|
end
|
978
1504
|
|
@@ -1011,13 +1537,15 @@ module Aws::Route53Domains
|
|
1011
1537
|
:domain_name,
|
1012
1538
|
:type,
|
1013
1539
|
:submitted_date)
|
1540
|
+
SENSITIVE = []
|
1014
1541
|
include Aws::Structure
|
1015
1542
|
end
|
1016
1543
|
|
1017
|
-
# The requested item is not acceptable. For example, for
|
1018
|
-
#
|
1019
|
-
#
|
1020
|
-
# the
|
1544
|
+
# The requested item is not acceptable. For example, for APIs that
|
1545
|
+
# accept a domain name, the request might specify a domain name that
|
1546
|
+
# doesn't belong to the account that submitted the request. For
|
1547
|
+
# `AcceptDomainTransferFromAnotherAwsAccount`, the password might be
|
1548
|
+
# invalid.
|
1021
1549
|
#
|
1022
1550
|
# @!attribute [rw] message
|
1023
1551
|
# The requested item is not acceptable. For example, for an
|
@@ -1030,6 +1558,7 @@ module Aws::Route53Domains
|
|
1030
1558
|
#
|
1031
1559
|
class InvalidInput < Struct.new(
|
1032
1560
|
:message)
|
1561
|
+
SENSITIVE = []
|
1033
1562
|
include Aws::Structure
|
1034
1563
|
end
|
1035
1564
|
|
@@ -1067,6 +1596,7 @@ module Aws::Route53Domains
|
|
1067
1596
|
class ListDomainsRequest < Struct.new(
|
1068
1597
|
:marker,
|
1069
1598
|
:max_items)
|
1599
|
+
SENSITIVE = []
|
1070
1600
|
include Aws::Structure
|
1071
1601
|
end
|
1072
1602
|
|
@@ -1087,6 +1617,7 @@ module Aws::Route53Domains
|
|
1087
1617
|
class ListDomainsResponse < Struct.new(
|
1088
1618
|
:domains,
|
1089
1619
|
:next_page_marker)
|
1620
|
+
SENSITIVE = []
|
1090
1621
|
include Aws::Structure
|
1091
1622
|
end
|
1092
1623
|
|
@@ -1104,7 +1635,8 @@ module Aws::Route53Domains
|
|
1104
1635
|
# @!attribute [rw] submitted_since
|
1105
1636
|
# An optional parameter that lets you get information about all the
|
1106
1637
|
# operations that you submitted after a specified date and time.
|
1107
|
-
# Specify the date and time in
|
1638
|
+
# Specify the date and time in Unix time format and Coordinated
|
1639
|
+
# Universal time (UTC).
|
1108
1640
|
# @return [Time]
|
1109
1641
|
#
|
1110
1642
|
# @!attribute [rw] marker
|
@@ -1129,6 +1661,7 @@ module Aws::Route53Domains
|
|
1129
1661
|
:submitted_since,
|
1130
1662
|
:marker,
|
1131
1663
|
:max_items)
|
1664
|
+
SENSITIVE = []
|
1132
1665
|
include Aws::Structure
|
1133
1666
|
end
|
1134
1667
|
|
@@ -1149,6 +1682,7 @@ module Aws::Route53Domains
|
|
1149
1682
|
class ListOperationsResponse < Struct.new(
|
1150
1683
|
:operations,
|
1151
1684
|
:next_page_marker)
|
1685
|
+
SENSITIVE = []
|
1152
1686
|
include Aws::Structure
|
1153
1687
|
end
|
1154
1688
|
|
@@ -1169,6 +1703,7 @@ module Aws::Route53Domains
|
|
1169
1703
|
#
|
1170
1704
|
class ListTagsForDomainRequest < Struct.new(
|
1171
1705
|
:domain_name)
|
1706
|
+
SENSITIVE = []
|
1172
1707
|
include Aws::Structure
|
1173
1708
|
end
|
1174
1709
|
|
@@ -1182,6 +1717,7 @@ module Aws::Route53Domains
|
|
1182
1717
|
#
|
1183
1718
|
class ListTagsForDomainResponse < Struct.new(
|
1184
1719
|
:tag_list)
|
1720
|
+
SENSITIVE = []
|
1185
1721
|
include Aws::Structure
|
1186
1722
|
end
|
1187
1723
|
|
@@ -1217,6 +1753,7 @@ module Aws::Route53Domains
|
|
1217
1753
|
class Nameserver < Struct.new(
|
1218
1754
|
:name,
|
1219
1755
|
:glue_ips)
|
1756
|
+
SENSITIVE = []
|
1220
1757
|
include Aws::Structure
|
1221
1758
|
end
|
1222
1759
|
|
@@ -1232,6 +1769,7 @@ module Aws::Route53Domains
|
|
1232
1769
|
#
|
1233
1770
|
class OperationLimitExceeded < Struct.new(
|
1234
1771
|
:message)
|
1772
|
+
SENSITIVE = []
|
1235
1773
|
include Aws::Structure
|
1236
1774
|
end
|
1237
1775
|
|
@@ -1260,6 +1798,7 @@ module Aws::Route53Domains
|
|
1260
1798
|
:status,
|
1261
1799
|
:type,
|
1262
1800
|
:submitted_date)
|
1801
|
+
SENSITIVE = []
|
1263
1802
|
include Aws::Structure
|
1264
1803
|
end
|
1265
1804
|
|
@@ -1289,7 +1828,7 @@ module Aws::Route53Domains
|
|
1289
1828
|
# fax: "ContactNumber",
|
1290
1829
|
# extra_params: [
|
1291
1830
|
# {
|
1292
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1831
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1293
1832
|
# value: "ExtraParamValue", # required
|
1294
1833
|
# },
|
1295
1834
|
# ],
|
@@ -1310,7 +1849,7 @@ module Aws::Route53Domains
|
|
1310
1849
|
# fax: "ContactNumber",
|
1311
1850
|
# extra_params: [
|
1312
1851
|
# {
|
1313
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1852
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1314
1853
|
# value: "ExtraParamValue", # required
|
1315
1854
|
# },
|
1316
1855
|
# ],
|
@@ -1331,7 +1870,7 @@ module Aws::Route53Domains
|
|
1331
1870
|
# fax: "ContactNumber",
|
1332
1871
|
# extra_params: [
|
1333
1872
|
# {
|
1334
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1873
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1335
1874
|
# value: "ExtraParamValue", # required
|
1336
1875
|
# },
|
1337
1876
|
# ],
|
@@ -1342,11 +1881,33 @@ module Aws::Route53Domains
|
|
1342
1881
|
# }
|
1343
1882
|
#
|
1344
1883
|
# @!attribute [rw] domain_name
|
1345
|
-
# The domain name that you want to register.
|
1884
|
+
# The domain name that you want to register. The top-level domain
|
1885
|
+
# (TLD), such as .com, must be a TLD that Route 53 supports. For a
|
1886
|
+
# list of supported TLDs, see [Domains that You Can Register with
|
1887
|
+
# Amazon Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1346
1888
|
#
|
1347
|
-
#
|
1348
|
-
#
|
1349
|
-
#
|
1889
|
+
# The domain name can contain only the following characters:
|
1890
|
+
#
|
1891
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1892
|
+
#
|
1893
|
+
# * Numbers 0 through 9.
|
1894
|
+
#
|
1895
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
1896
|
+
# a label.
|
1897
|
+
#
|
1898
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1899
|
+
# `example.com`.
|
1900
|
+
#
|
1901
|
+
# Internationalized domain names are not supported for some top-level
|
1902
|
+
# domains. To determine whether the TLD that you want to use supports
|
1903
|
+
# internationalized domain names, see [Domains that You Can Register
|
1904
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
1905
|
+
# Internationalized Domain Names][2].
|
1906
|
+
#
|
1907
|
+
#
|
1908
|
+
#
|
1909
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1910
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
1350
1911
|
# @return [String]
|
1351
1912
|
#
|
1352
1913
|
# @!attribute [rw] idn_lang_code
|
@@ -1364,7 +1925,7 @@ module Aws::Route53Domains
|
|
1364
1925
|
#
|
1365
1926
|
#
|
1366
1927
|
#
|
1367
|
-
# [1]:
|
1928
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1368
1929
|
# @return [Integer]
|
1369
1930
|
#
|
1370
1931
|
# @!attribute [rw] auto_renew
|
@@ -1376,15 +1937,30 @@ module Aws::Route53Domains
|
|
1376
1937
|
# @return [Boolean]
|
1377
1938
|
#
|
1378
1939
|
# @!attribute [rw] admin_contact
|
1379
|
-
# Provides detailed contact information.
|
1940
|
+
# Provides detailed contact information. For information about the
|
1941
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1942
|
+
#
|
1943
|
+
#
|
1944
|
+
#
|
1945
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1380
1946
|
# @return [Types::ContactDetail]
|
1381
1947
|
#
|
1382
1948
|
# @!attribute [rw] registrant_contact
|
1383
|
-
# Provides detailed contact information.
|
1949
|
+
# Provides detailed contact information. For information about the
|
1950
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1951
|
+
#
|
1952
|
+
#
|
1953
|
+
#
|
1954
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1384
1955
|
# @return [Types::ContactDetail]
|
1385
1956
|
#
|
1386
1957
|
# @!attribute [rw] tech_contact
|
1387
|
-
# Provides detailed contact information.
|
1958
|
+
# Provides detailed contact information. For information about the
|
1959
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1960
|
+
#
|
1961
|
+
#
|
1962
|
+
#
|
1963
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1388
1964
|
# @return [Types::ContactDetail]
|
1389
1965
|
#
|
1390
1966
|
# @!attribute [rw] privacy_protect_admin_contact
|
@@ -1433,20 +2009,71 @@ module Aws::Route53Domains
|
|
1433
2009
|
:privacy_protect_admin_contact,
|
1434
2010
|
:privacy_protect_registrant_contact,
|
1435
2011
|
:privacy_protect_tech_contact)
|
2012
|
+
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
1436
2013
|
include Aws::Structure
|
1437
2014
|
end
|
1438
2015
|
|
1439
2016
|
# The RegisterDomain response includes the following element.
|
1440
2017
|
#
|
1441
2018
|
# @!attribute [rw] operation_id
|
1442
|
-
# Identifier for tracking the progress of the request. To
|
1443
|
-
#
|
2019
|
+
# Identifier for tracking the progress of the request. To query the
|
2020
|
+
# operation status, use [GetOperationDetail][1].
|
2021
|
+
#
|
2022
|
+
#
|
2023
|
+
#
|
2024
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1444
2025
|
# @return [String]
|
1445
2026
|
#
|
1446
2027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RegisterDomainResponse AWS API Documentation
|
1447
2028
|
#
|
1448
2029
|
class RegisterDomainResponse < Struct.new(
|
1449
2030
|
:operation_id)
|
2031
|
+
SENSITIVE = []
|
2032
|
+
include Aws::Structure
|
2033
|
+
end
|
2034
|
+
|
2035
|
+
# The RejectDomainTransferFromAnotherAwsAccount request includes the
|
2036
|
+
# following element.
|
2037
|
+
#
|
2038
|
+
# @note When making an API call, you may pass RejectDomainTransferFromAnotherAwsAccountRequest
|
2039
|
+
# data as a hash:
|
2040
|
+
#
|
2041
|
+
# {
|
2042
|
+
# domain_name: "DomainName", # required
|
2043
|
+
# }
|
2044
|
+
#
|
2045
|
+
# @!attribute [rw] domain_name
|
2046
|
+
# The name of the domain that was specified when another AWS account
|
2047
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
2048
|
+
#
|
2049
|
+
#
|
2050
|
+
#
|
2051
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
2052
|
+
# @return [String]
|
2053
|
+
#
|
2054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccountRequest AWS API Documentation
|
2055
|
+
#
|
2056
|
+
class RejectDomainTransferFromAnotherAwsAccountRequest < Struct.new(
|
2057
|
+
:domain_name)
|
2058
|
+
SENSITIVE = []
|
2059
|
+
include Aws::Structure
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
# The RejectDomainTransferFromAnotherAwsAccount response includes the
|
2063
|
+
# following element.
|
2064
|
+
#
|
2065
|
+
# @!attribute [rw] operation_id
|
2066
|
+
# The identifier that `TransferDomainToAnotherAwsAccount` returned to
|
2067
|
+
# track the progress of the request. Because the transfer request was
|
2068
|
+
# rejected, the value is no longer valid, and you can't use
|
2069
|
+
# `GetOperationDetail` to query the operation status.
|
2070
|
+
# @return [String]
|
2071
|
+
#
|
2072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccountResponse AWS API Documentation
|
2073
|
+
#
|
2074
|
+
class RejectDomainTransferFromAnotherAwsAccountResponse < Struct.new(
|
2075
|
+
:operation_id)
|
2076
|
+
SENSITIVE = []
|
1450
2077
|
include Aws::Structure
|
1451
2078
|
end
|
1452
2079
|
|
@@ -1477,7 +2104,7 @@ module Aws::Route53Domains
|
|
1477
2104
|
#
|
1478
2105
|
#
|
1479
2106
|
#
|
1480
|
-
# [1]:
|
2107
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1481
2108
|
# @return [Integer]
|
1482
2109
|
#
|
1483
2110
|
# @!attribute [rw] current_expiry_year
|
@@ -1491,18 +2118,24 @@ module Aws::Route53Domains
|
|
1491
2118
|
:domain_name,
|
1492
2119
|
:duration_in_years,
|
1493
2120
|
:current_expiry_year)
|
2121
|
+
SENSITIVE = []
|
1494
2122
|
include Aws::Structure
|
1495
2123
|
end
|
1496
2124
|
|
1497
2125
|
# @!attribute [rw] operation_id
|
1498
|
-
#
|
1499
|
-
#
|
2126
|
+
# Identifier for tracking the progress of the request. To query the
|
2127
|
+
# operation status, use [GetOperationDetail][1].
|
2128
|
+
#
|
2129
|
+
#
|
2130
|
+
#
|
2131
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1500
2132
|
# @return [String]
|
1501
2133
|
#
|
1502
2134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RenewDomainResponse AWS API Documentation
|
1503
2135
|
#
|
1504
2136
|
class RenewDomainResponse < Struct.new(
|
1505
2137
|
:operation_id)
|
2138
|
+
SENSITIVE = []
|
1506
2139
|
include Aws::Structure
|
1507
2140
|
end
|
1508
2141
|
|
@@ -1514,14 +2147,15 @@ module Aws::Route53Domains
|
|
1514
2147
|
# }
|
1515
2148
|
#
|
1516
2149
|
# @!attribute [rw] domain_name
|
1517
|
-
# The name of the domain for which you want
|
1518
|
-
#
|
2150
|
+
# The name of the domain for which you want Route 53 to resend a
|
2151
|
+
# confirmation email to the registrant contact.
|
1519
2152
|
# @return [String]
|
1520
2153
|
#
|
1521
2154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ResendContactReachabilityEmailRequest AWS API Documentation
|
1522
2155
|
#
|
1523
2156
|
class ResendContactReachabilityEmailRequest < Struct.new(
|
1524
2157
|
:domain_name)
|
2158
|
+
SENSITIVE = []
|
1525
2159
|
include Aws::Structure
|
1526
2160
|
end
|
1527
2161
|
|
@@ -1546,6 +2180,7 @@ module Aws::Route53Domains
|
|
1546
2180
|
:domain_name,
|
1547
2181
|
:email_address,
|
1548
2182
|
:is_already_verified)
|
2183
|
+
SENSITIVE = []
|
1549
2184
|
include Aws::Structure
|
1550
2185
|
end
|
1551
2186
|
|
@@ -1569,6 +2204,7 @@ module Aws::Route53Domains
|
|
1569
2204
|
#
|
1570
2205
|
class RetrieveDomainAuthCodeRequest < Struct.new(
|
1571
2206
|
:domain_name)
|
2207
|
+
SENSITIVE = []
|
1572
2208
|
include Aws::Structure
|
1573
2209
|
end
|
1574
2210
|
|
@@ -1582,6 +2218,7 @@ module Aws::Route53Domains
|
|
1582
2218
|
#
|
1583
2219
|
class RetrieveDomainAuthCodeResponse < Struct.new(
|
1584
2220
|
:auth_code)
|
2221
|
+
SENSITIVE = [:auth_code]
|
1585
2222
|
include Aws::Structure
|
1586
2223
|
end
|
1587
2224
|
|
@@ -1595,6 +2232,7 @@ module Aws::Route53Domains
|
|
1595
2232
|
#
|
1596
2233
|
class TLDRulesViolation < Struct.new(
|
1597
2234
|
:message)
|
2235
|
+
SENSITIVE = []
|
1598
2236
|
include Aws::Structure
|
1599
2237
|
end
|
1600
2238
|
|
@@ -1629,6 +2267,7 @@ module Aws::Route53Domains
|
|
1629
2267
|
class Tag < Struct.new(
|
1630
2268
|
:key,
|
1631
2269
|
:value)
|
2270
|
+
SENSITIVE = []
|
1632
2271
|
include Aws::Structure
|
1633
2272
|
end
|
1634
2273
|
|
@@ -1665,7 +2304,7 @@ module Aws::Route53Domains
|
|
1665
2304
|
# fax: "ContactNumber",
|
1666
2305
|
# extra_params: [
|
1667
2306
|
# {
|
1668
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2307
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1669
2308
|
# value: "ExtraParamValue", # required
|
1670
2309
|
# },
|
1671
2310
|
# ],
|
@@ -1686,7 +2325,7 @@ module Aws::Route53Domains
|
|
1686
2325
|
# fax: "ContactNumber",
|
1687
2326
|
# extra_params: [
|
1688
2327
|
# {
|
1689
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2328
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1690
2329
|
# value: "ExtraParamValue", # required
|
1691
2330
|
# },
|
1692
2331
|
# ],
|
@@ -1707,7 +2346,7 @@ module Aws::Route53Domains
|
|
1707
2346
|
# fax: "ContactNumber",
|
1708
2347
|
# extra_params: [
|
1709
2348
|
# {
|
1710
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2349
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1711
2350
|
# value: "ExtraParamValue", # required
|
1712
2351
|
# },
|
1713
2352
|
# ],
|
@@ -1718,11 +2357,27 @@ module Aws::Route53Domains
|
|
1718
2357
|
# }
|
1719
2358
|
#
|
1720
2359
|
# @!attribute [rw] domain_name
|
1721
|
-
# The name of the domain that you want to transfer to
|
2360
|
+
# The name of the domain that you want to transfer to Route 53. The
|
2361
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
2362
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
2363
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
2364
|
+
# Guide*.
|
2365
|
+
#
|
2366
|
+
# The domain name can contain only the following characters:
|
2367
|
+
#
|
2368
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1722
2369
|
#
|
1723
|
-
#
|
1724
|
-
#
|
1725
|
-
#
|
2370
|
+
# * Numbers 0 through 9.
|
2371
|
+
#
|
2372
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
2373
|
+
# a label.
|
2374
|
+
#
|
2375
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
2376
|
+
# `example.com`.
|
2377
|
+
#
|
2378
|
+
#
|
2379
|
+
#
|
2380
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1726
2381
|
# @return [String]
|
1727
2382
|
#
|
1728
2383
|
# @!attribute [rw] idn_lang_code
|
@@ -1814,20 +2469,89 @@ module Aws::Route53Domains
|
|
1814
2469
|
:privacy_protect_admin_contact,
|
1815
2470
|
:privacy_protect_registrant_contact,
|
1816
2471
|
:privacy_protect_tech_contact)
|
2472
|
+
SENSITIVE = [:auth_code, :admin_contact, :registrant_contact, :tech_contact]
|
1817
2473
|
include Aws::Structure
|
1818
2474
|
end
|
1819
2475
|
|
1820
|
-
# The
|
2476
|
+
# The TransferDomain response includes the following element.
|
1821
2477
|
#
|
1822
2478
|
# @!attribute [rw] operation_id
|
1823
|
-
# Identifier for tracking the progress of the request. To
|
1824
|
-
#
|
2479
|
+
# Identifier for tracking the progress of the request. To query the
|
2480
|
+
# operation status, use [GetOperationDetail][1].
|
2481
|
+
#
|
2482
|
+
#
|
2483
|
+
#
|
2484
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1825
2485
|
# @return [String]
|
1826
2486
|
#
|
1827
2487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainResponse AWS API Documentation
|
1828
2488
|
#
|
1829
2489
|
class TransferDomainResponse < Struct.new(
|
1830
2490
|
:operation_id)
|
2491
|
+
SENSITIVE = []
|
2492
|
+
include Aws::Structure
|
2493
|
+
end
|
2494
|
+
|
2495
|
+
# The TransferDomainToAnotherAwsAccount request includes the following
|
2496
|
+
# elements.
|
2497
|
+
#
|
2498
|
+
# @note When making an API call, you may pass TransferDomainToAnotherAwsAccountRequest
|
2499
|
+
# data as a hash:
|
2500
|
+
#
|
2501
|
+
# {
|
2502
|
+
# domain_name: "DomainName", # required
|
2503
|
+
# account_id: "AccountId", # required
|
2504
|
+
# }
|
2505
|
+
#
|
2506
|
+
# @!attribute [rw] domain_name
|
2507
|
+
# The name of the domain that you want to transfer from the current
|
2508
|
+
# AWS account to another account.
|
2509
|
+
# @return [String]
|
2510
|
+
#
|
2511
|
+
# @!attribute [rw] account_id
|
2512
|
+
# The account ID of the AWS account that you want to transfer the
|
2513
|
+
# domain to, for example, `111122223333`.
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccountRequest AWS API Documentation
|
2517
|
+
#
|
2518
|
+
class TransferDomainToAnotherAwsAccountRequest < Struct.new(
|
2519
|
+
:domain_name,
|
2520
|
+
:account_id)
|
2521
|
+
SENSITIVE = []
|
2522
|
+
include Aws::Structure
|
2523
|
+
end
|
2524
|
+
|
2525
|
+
# The `TransferDomainToAnotherAwsAccount` response includes the
|
2526
|
+
# following elements.
|
2527
|
+
#
|
2528
|
+
# @!attribute [rw] operation_id
|
2529
|
+
# Identifier for tracking the progress of the request. To query the
|
2530
|
+
# operation status, use [GetOperationDetail][1].
|
2531
|
+
#
|
2532
|
+
#
|
2533
|
+
#
|
2534
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
2535
|
+
# @return [String]
|
2536
|
+
#
|
2537
|
+
# @!attribute [rw] password
|
2538
|
+
# To finish transferring a domain to another AWS account, the account
|
2539
|
+
# that the domain is being transferred to must submit an
|
2540
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][1] request. The request
|
2541
|
+
# must include the value of the `Password` element that was returned
|
2542
|
+
# in the `TransferDomainToAnotherAwsAccount` response.
|
2543
|
+
#
|
2544
|
+
#
|
2545
|
+
#
|
2546
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
2547
|
+
# @return [String]
|
2548
|
+
#
|
2549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccountResponse AWS API Documentation
|
2550
|
+
#
|
2551
|
+
class TransferDomainToAnotherAwsAccountResponse < Struct.new(
|
2552
|
+
:operation_id,
|
2553
|
+
:password)
|
2554
|
+
SENSITIVE = []
|
1831
2555
|
include Aws::Structure
|
1832
2556
|
end
|
1833
2557
|
|
@@ -1841,6 +2565,7 @@ module Aws::Route53Domains
|
|
1841
2565
|
#
|
1842
2566
|
class UnsupportedTLD < Struct.new(
|
1843
2567
|
:message)
|
2568
|
+
SENSITIVE = []
|
1844
2569
|
include Aws::Structure
|
1845
2570
|
end
|
1846
2571
|
|
@@ -1896,6 +2621,7 @@ module Aws::Route53Domains
|
|
1896
2621
|
:admin_privacy,
|
1897
2622
|
:registrant_privacy,
|
1898
2623
|
:tech_privacy)
|
2624
|
+
SENSITIVE = []
|
1899
2625
|
include Aws::Structure
|
1900
2626
|
end
|
1901
2627
|
|
@@ -1911,6 +2637,7 @@ module Aws::Route53Domains
|
|
1911
2637
|
#
|
1912
2638
|
class UpdateDomainContactPrivacyResponse < Struct.new(
|
1913
2639
|
:operation_id)
|
2640
|
+
SENSITIVE = []
|
1914
2641
|
include Aws::Structure
|
1915
2642
|
end
|
1916
2643
|
|
@@ -1937,7 +2664,7 @@ module Aws::Route53Domains
|
|
1937
2664
|
# fax: "ContactNumber",
|
1938
2665
|
# extra_params: [
|
1939
2666
|
# {
|
1940
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2667
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1941
2668
|
# value: "ExtraParamValue", # required
|
1942
2669
|
# },
|
1943
2670
|
# ],
|
@@ -1958,7 +2685,7 @@ module Aws::Route53Domains
|
|
1958
2685
|
# fax: "ContactNumber",
|
1959
2686
|
# extra_params: [
|
1960
2687
|
# {
|
1961
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2688
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1962
2689
|
# value: "ExtraParamValue", # required
|
1963
2690
|
# },
|
1964
2691
|
# ],
|
@@ -1979,7 +2706,7 @@ module Aws::Route53Domains
|
|
1979
2706
|
# fax: "ContactNumber",
|
1980
2707
|
# extra_params: [
|
1981
2708
|
# {
|
1982
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
2709
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1983
2710
|
# value: "ExtraParamValue", # required
|
1984
2711
|
# },
|
1985
2712
|
# ],
|
@@ -2010,20 +2737,26 @@ module Aws::Route53Domains
|
|
2010
2737
|
:admin_contact,
|
2011
2738
|
:registrant_contact,
|
2012
2739
|
:tech_contact)
|
2740
|
+
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
2013
2741
|
include Aws::Structure
|
2014
2742
|
end
|
2015
2743
|
|
2016
2744
|
# The UpdateDomainContact response includes the following element.
|
2017
2745
|
#
|
2018
2746
|
# @!attribute [rw] operation_id
|
2019
|
-
# Identifier for tracking the progress of the request. To
|
2020
|
-
#
|
2747
|
+
# Identifier for tracking the progress of the request. To query the
|
2748
|
+
# operation status, use [GetOperationDetail][1].
|
2749
|
+
#
|
2750
|
+
#
|
2751
|
+
#
|
2752
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
2021
2753
|
# @return [String]
|
2022
2754
|
#
|
2023
2755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactResponse AWS API Documentation
|
2024
2756
|
#
|
2025
2757
|
class UpdateDomainContactResponse < Struct.new(
|
2026
2758
|
:operation_id)
|
2759
|
+
SENSITIVE = []
|
2027
2760
|
include Aws::Structure
|
2028
2761
|
end
|
2029
2762
|
|
@@ -2069,20 +2802,26 @@ module Aws::Route53Domains
|
|
2069
2802
|
:domain_name,
|
2070
2803
|
:fi_auth_key,
|
2071
2804
|
:nameservers)
|
2805
|
+
SENSITIVE = []
|
2072
2806
|
include Aws::Structure
|
2073
2807
|
end
|
2074
2808
|
|
2075
2809
|
# The UpdateDomainNameservers response includes the following element.
|
2076
2810
|
#
|
2077
2811
|
# @!attribute [rw] operation_id
|
2078
|
-
# Identifier for tracking the progress of the request. To
|
2079
|
-
#
|
2812
|
+
# Identifier for tracking the progress of the request. To query the
|
2813
|
+
# operation status, use [GetOperationDetail][1].
|
2814
|
+
#
|
2815
|
+
#
|
2816
|
+
#
|
2817
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
2080
2818
|
# @return [String]
|
2081
2819
|
#
|
2082
2820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainNameserversResponse AWS API Documentation
|
2083
2821
|
#
|
2084
2822
|
class UpdateDomainNameserversResponse < Struct.new(
|
2085
2823
|
:operation_id)
|
2824
|
+
SENSITIVE = []
|
2086
2825
|
include Aws::Structure
|
2087
2826
|
end
|
2088
2827
|
|
@@ -2116,6 +2855,7 @@ module Aws::Route53Domains
|
|
2116
2855
|
class UpdateTagsForDomainRequest < Struct.new(
|
2117
2856
|
:domain_name,
|
2118
2857
|
:tags_to_update)
|
2858
|
+
SENSITIVE = []
|
2119
2859
|
include Aws::Structure
|
2120
2860
|
end
|
2121
2861
|
|
@@ -2137,14 +2877,14 @@ module Aws::Route53Domains
|
|
2137
2877
|
#
|
2138
2878
|
# @!attribute [rw] start
|
2139
2879
|
# The beginning date and time for the time period for which you want a
|
2140
|
-
# list of billing records. Specify the date and time in
|
2141
|
-
# Universal time (UTC).
|
2880
|
+
# list of billing records. Specify the date and time in Unix time
|
2881
|
+
# format and Coordinated Universal time (UTC).
|
2142
2882
|
# @return [Time]
|
2143
2883
|
#
|
2144
2884
|
# @!attribute [rw] end
|
2145
2885
|
# The end date and time for the time period for which you want a list
|
2146
|
-
# of billing records. Specify the date and time in
|
2147
|
-
# Universal time (UTC).
|
2886
|
+
# of billing records. Specify the date and time in Unix time format
|
2887
|
+
# and Coordinated Universal time (UTC).
|
2148
2888
|
# @return [Time]
|
2149
2889
|
#
|
2150
2890
|
# @!attribute [rw] marker
|
@@ -2173,6 +2913,7 @@ module Aws::Route53Domains
|
|
2173
2913
|
:end,
|
2174
2914
|
:marker,
|
2175
2915
|
:max_items)
|
2916
|
+
SENSITIVE = []
|
2176
2917
|
include Aws::Structure
|
2177
2918
|
end
|
2178
2919
|
|
@@ -2193,6 +2934,7 @@ module Aws::Route53Domains
|
|
2193
2934
|
class ViewBillingResponse < Struct.new(
|
2194
2935
|
:next_page_marker,
|
2195
2936
|
:billing_records)
|
2937
|
+
SENSITIVE = []
|
2196
2938
|
include Aws::Structure
|
2197
2939
|
end
|
2198
2940
|
|