aws-sdk-route53domains 1.19.0 → 1.20.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 +2 -2
- data/lib/aws-sdk-route53domains/client.rb +468 -107
- data/lib/aws-sdk-route53domains/client_api.rb +79 -0
- data/lib/aws-sdk-route53domains/resource.rb +1 -7
- data/lib/aws-sdk-route53domains/types.rb +790 -117
- metadata +3 -3
@@ -11,10 +11,15 @@ module Aws::Route53Domains
|
|
11
11
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'AcceptDomainTransferFromAnotherAwsAccountRequest')
|
15
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'AcceptDomainTransferFromAnotherAwsAccountResponse')
|
16
|
+
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
14
17
|
AddressLine = Shapes::StringShape.new(name: 'AddressLine')
|
15
18
|
BillingRecord = Shapes::StructureShape.new(name: 'BillingRecord')
|
16
19
|
BillingRecords = Shapes::ListShape.new(name: 'BillingRecords')
|
17
20
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
21
|
+
CancelDomainTransferToAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'CancelDomainTransferToAnotherAwsAccountRequest')
|
22
|
+
CancelDomainTransferToAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'CancelDomainTransferToAnotherAwsAccountResponse')
|
18
23
|
CheckDomainAvailabilityRequest = Shapes::StructureShape.new(name: 'CheckDomainAvailabilityRequest')
|
19
24
|
CheckDomainAvailabilityResponse = Shapes::StructureShape.new(name: 'CheckDomainAvailabilityResponse')
|
20
25
|
CheckDomainTransferabilityRequest = Shapes::StructureShape.new(name: 'CheckDomainTransferabilityRequest')
|
@@ -96,6 +101,8 @@ module Aws::Route53Domains
|
|
96
101
|
RegistrarUrl = Shapes::StringShape.new(name: 'RegistrarUrl')
|
97
102
|
RegistrarWhoIsServer = Shapes::StringShape.new(name: 'RegistrarWhoIsServer')
|
98
103
|
RegistryDomainId = Shapes::StringShape.new(name: 'RegistryDomainId')
|
104
|
+
RejectDomainTransferFromAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'RejectDomainTransferFromAnotherAwsAccountRequest')
|
105
|
+
RejectDomainTransferFromAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'RejectDomainTransferFromAnotherAwsAccountResponse')
|
99
106
|
RenewDomainRequest = Shapes::StructureShape.new(name: 'RenewDomainRequest')
|
100
107
|
RenewDomainResponse = Shapes::StructureShape.new(name: 'RenewDomainResponse')
|
101
108
|
Reseller = Shapes::StringShape.new(name: 'Reseller')
|
@@ -114,6 +121,8 @@ module Aws::Route53Domains
|
|
114
121
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
115
122
|
TransferDomainRequest = Shapes::StructureShape.new(name: 'TransferDomainRequest')
|
116
123
|
TransferDomainResponse = Shapes::StructureShape.new(name: 'TransferDomainResponse')
|
124
|
+
TransferDomainToAnotherAwsAccountRequest = Shapes::StructureShape.new(name: 'TransferDomainToAnotherAwsAccountRequest')
|
125
|
+
TransferDomainToAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'TransferDomainToAnotherAwsAccountResponse')
|
117
126
|
Transferable = Shapes::StringShape.new(name: 'Transferable')
|
118
127
|
UnsupportedTLD = Shapes::StructureShape.new(name: 'UnsupportedTLD')
|
119
128
|
UpdateDomainContactPrivacyRequest = Shapes::StructureShape.new(name: 'UpdateDomainContactPrivacyRequest')
|
@@ -128,6 +137,13 @@ module Aws::Route53Domains
|
|
128
137
|
ViewBillingResponse = Shapes::StructureShape.new(name: 'ViewBillingResponse')
|
129
138
|
ZipCode = Shapes::StringShape.new(name: 'ZipCode')
|
130
139
|
|
140
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
141
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:password, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Password"))
|
142
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.struct_class = Types::AcceptDomainTransferFromAnotherAwsAccountRequest
|
143
|
+
|
144
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
145
|
+
AcceptDomainTransferFromAnotherAwsAccountResponse.struct_class = Types::AcceptDomainTransferFromAnotherAwsAccountResponse
|
146
|
+
|
131
147
|
BillingRecord.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
|
132
148
|
BillingRecord.add_member(:operation, Shapes::ShapeRef.new(shape: OperationType, location_name: "Operation"))
|
133
149
|
BillingRecord.add_member(:invoice_id, Shapes::ShapeRef.new(shape: InvoiceId, location_name: "InvoiceId"))
|
@@ -137,6 +153,12 @@ module Aws::Route53Domains
|
|
137
153
|
|
138
154
|
BillingRecords.member = Shapes::ShapeRef.new(shape: BillingRecord)
|
139
155
|
|
156
|
+
CancelDomainTransferToAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
157
|
+
CancelDomainTransferToAnotherAwsAccountRequest.struct_class = Types::CancelDomainTransferToAnotherAwsAccountRequest
|
158
|
+
|
159
|
+
CancelDomainTransferToAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
160
|
+
CancelDomainTransferToAnotherAwsAccountResponse.struct_class = Types::CancelDomainTransferToAnotherAwsAccountResponse
|
161
|
+
|
140
162
|
CheckDomainAvailabilityRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
141
163
|
CheckDomainAvailabilityRequest.add_member(:idn_lang_code, Shapes::ShapeRef.new(shape: LangCode, location_name: "IdnLangCode"))
|
142
164
|
CheckDomainAvailabilityRequest.struct_class = Types::CheckDomainAvailabilityRequest
|
@@ -338,6 +360,12 @@ module Aws::Route53Domains
|
|
338
360
|
RegisterDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "OperationId"))
|
339
361
|
RegisterDomainResponse.struct_class = Types::RegisterDomainResponse
|
340
362
|
|
363
|
+
RejectDomainTransferFromAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
364
|
+
RejectDomainTransferFromAnotherAwsAccountRequest.struct_class = Types::RejectDomainTransferFromAnotherAwsAccountRequest
|
365
|
+
|
366
|
+
RejectDomainTransferFromAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
367
|
+
RejectDomainTransferFromAnotherAwsAccountResponse.struct_class = Types::RejectDomainTransferFromAnotherAwsAccountResponse
|
368
|
+
|
341
369
|
RenewDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
342
370
|
RenewDomainRequest.add_member(:duration_in_years, Shapes::ShapeRef.new(shape: DurationInYears, location_name: "DurationInYears"))
|
343
371
|
RenewDomainRequest.add_member(:current_expiry_year, Shapes::ShapeRef.new(shape: CurrentExpiryYear, required: true, location_name: "CurrentExpiryYear"))
|
@@ -388,6 +416,14 @@ module Aws::Route53Domains
|
|
388
416
|
TransferDomainResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "OperationId"))
|
389
417
|
TransferDomainResponse.struct_class = Types::TransferDomainResponse
|
390
418
|
|
419
|
+
TransferDomainToAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
420
|
+
TransferDomainToAnotherAwsAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AccountId"))
|
421
|
+
TransferDomainToAnotherAwsAccountRequest.struct_class = Types::TransferDomainToAnotherAwsAccountRequest
|
422
|
+
|
423
|
+
TransferDomainToAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
424
|
+
TransferDomainToAnotherAwsAccountResponse.add_member(:password, Shapes::ShapeRef.new(shape: String, location_name: "Password"))
|
425
|
+
TransferDomainToAnotherAwsAccountResponse.struct_class = Types::TransferDomainToAnotherAwsAccountResponse
|
426
|
+
|
391
427
|
UnsupportedTLD.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
392
428
|
UnsupportedTLD.struct_class = Types::UnsupportedTLD
|
393
429
|
|
@@ -445,11 +481,33 @@ module Aws::Route53Domains
|
|
445
481
|
"jsonVersion" => "1.1",
|
446
482
|
"protocol" => "json",
|
447
483
|
"serviceFullName" => "Amazon Route 53 Domains",
|
484
|
+
"serviceId" => "Route 53 Domains",
|
448
485
|
"signatureVersion" => "v4",
|
449
486
|
"targetPrefix" => "Route53Domains_v20140515",
|
450
487
|
"uid" => "route53domains-2014-05-15",
|
451
488
|
}
|
452
489
|
|
490
|
+
api.add_operation(:accept_domain_transfer_from_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
491
|
+
o.name = "AcceptDomainTransferFromAnotherAwsAccount"
|
492
|
+
o.http_method = "POST"
|
493
|
+
o.http_request_uri = "/"
|
494
|
+
o.input = Shapes::ShapeRef.new(shape: AcceptDomainTransferFromAnotherAwsAccountRequest)
|
495
|
+
o.output = Shapes::ShapeRef.new(shape: AcceptDomainTransferFromAnotherAwsAccountResponse)
|
496
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
497
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
498
|
+
o.errors << Shapes::ShapeRef.new(shape: DomainLimitExceeded)
|
499
|
+
end)
|
500
|
+
|
501
|
+
api.add_operation(:cancel_domain_transfer_to_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
502
|
+
o.name = "CancelDomainTransferToAnotherAwsAccount"
|
503
|
+
o.http_method = "POST"
|
504
|
+
o.http_request_uri = "/"
|
505
|
+
o.input = Shapes::ShapeRef.new(shape: CancelDomainTransferToAnotherAwsAccountRequest)
|
506
|
+
o.output = Shapes::ShapeRef.new(shape: CancelDomainTransferToAnotherAwsAccountResponse)
|
507
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
508
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
509
|
+
end)
|
510
|
+
|
453
511
|
api.add_operation(:check_domain_availability, Seahorse::Model::Operation.new.tap do |o|
|
454
512
|
o.name = "CheckDomainAvailability"
|
455
513
|
o.http_method = "POST"
|
@@ -623,6 +681,16 @@ module Aws::Route53Domains
|
|
623
681
|
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
624
682
|
end)
|
625
683
|
|
684
|
+
api.add_operation(:reject_domain_transfer_from_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
685
|
+
o.name = "RejectDomainTransferFromAnotherAwsAccount"
|
686
|
+
o.http_method = "POST"
|
687
|
+
o.http_request_uri = "/"
|
688
|
+
o.input = Shapes::ShapeRef.new(shape: RejectDomainTransferFromAnotherAwsAccountRequest)
|
689
|
+
o.output = Shapes::ShapeRef.new(shape: RejectDomainTransferFromAnotherAwsAccountResponse)
|
690
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
691
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
692
|
+
end)
|
693
|
+
|
626
694
|
api.add_operation(:renew_domain, Seahorse::Model::Operation.new.tap do |o|
|
627
695
|
o.name = "RenewDomain"
|
628
696
|
o.http_method = "POST"
|
@@ -671,6 +739,17 @@ module Aws::Route53Domains
|
|
671
739
|
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
672
740
|
end)
|
673
741
|
|
742
|
+
api.add_operation(:transfer_domain_to_another_aws_account, Seahorse::Model::Operation.new.tap do |o|
|
743
|
+
o.name = "TransferDomainToAnotherAwsAccount"
|
744
|
+
o.http_method = "POST"
|
745
|
+
o.http_request_uri = "/"
|
746
|
+
o.input = Shapes::ShapeRef.new(shape: TransferDomainToAnotherAwsAccountRequest)
|
747
|
+
o.output = Shapes::ShapeRef.new(shape: TransferDomainToAnotherAwsAccountResponse)
|
748
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
749
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationLimitExceeded)
|
750
|
+
o.errors << Shapes::ShapeRef.new(shape: DuplicateRequest)
|
751
|
+
end)
|
752
|
+
|
674
753
|
api.add_operation(:update_domain_contact, Seahorse::Model::Operation.new.tap do |o|
|
675
754
|
o.name = "UpdateDomainContact"
|
676
755
|
o.http_method = "POST"
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
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)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -8,6 +8,62 @@
|
|
8
8
|
module Aws::Route53Domains
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# The AcceptDomainTransferFromAnotherAwsAccount request includes the
|
12
|
+
# following elements.
|
13
|
+
#
|
14
|
+
# @note When making an API call, you may pass AcceptDomainTransferFromAnotherAwsAccountRequest
|
15
|
+
# data as a hash:
|
16
|
+
#
|
17
|
+
# {
|
18
|
+
# domain_name: "DomainName", # required
|
19
|
+
# password: "String", # required
|
20
|
+
# }
|
21
|
+
#
|
22
|
+
# @!attribute [rw] domain_name
|
23
|
+
# The name of the domain that was specified when another AWS account
|
24
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
25
|
+
#
|
26
|
+
#
|
27
|
+
#
|
28
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
29
|
+
# @return [String]
|
30
|
+
#
|
31
|
+
# @!attribute [rw] password
|
32
|
+
# The password that was returned by the
|
33
|
+
# [TransferDomainToAnotherAwsAccount][1] request.
|
34
|
+
#
|
35
|
+
#
|
36
|
+
#
|
37
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
38
|
+
# @return [String]
|
39
|
+
#
|
40
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccountRequest AWS API Documentation
|
41
|
+
#
|
42
|
+
class AcceptDomainTransferFromAnotherAwsAccountRequest < Struct.new(
|
43
|
+
:domain_name,
|
44
|
+
:password)
|
45
|
+
include Aws::Structure
|
46
|
+
end
|
47
|
+
|
48
|
+
# The AcceptDomainTransferFromAnotherAwsAccount response includes the
|
49
|
+
# following element.
|
50
|
+
#
|
51
|
+
# @!attribute [rw] operation_id
|
52
|
+
# Identifier for tracking the progress of the request. To query the
|
53
|
+
# operation status, use [GetOperationDetail][1].
|
54
|
+
#
|
55
|
+
#
|
56
|
+
#
|
57
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
58
|
+
# @return [String]
|
59
|
+
#
|
60
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccountResponse AWS API Documentation
|
61
|
+
#
|
62
|
+
class AcceptDomainTransferFromAnotherAwsAccountResponse < Struct.new(
|
63
|
+
:operation_id)
|
64
|
+
include Aws::Structure
|
65
|
+
end
|
66
|
+
|
11
67
|
# Information for one billing record.
|
12
68
|
#
|
13
69
|
# @!attribute [rw] domain_name
|
@@ -15,11 +71,11 @@ module Aws::Route53Domains
|
|
15
71
|
# domain name contains characters other than a-z, 0-9, and - (hyphen),
|
16
72
|
# such as an internationalized domain name, then this value is in
|
17
73
|
# Punycode. For more information, see [DNS Domain Name Format][1] in
|
18
|
-
# the *Amazon Route 53 Developer
|
74
|
+
# the *Amazon Route 53 Developer Guide*.
|
19
75
|
#
|
20
76
|
#
|
21
77
|
#
|
22
|
-
# [1]:
|
78
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
|
23
79
|
# @return [String]
|
24
80
|
#
|
25
81
|
# @!attribute [rw] operation
|
@@ -51,6 +107,45 @@ module Aws::Route53Domains
|
|
51
107
|
include Aws::Structure
|
52
108
|
end
|
53
109
|
|
110
|
+
# The CancelDomainTransferToAnotherAwsAccount request includes the
|
111
|
+
# following element.
|
112
|
+
#
|
113
|
+
# @note When making an API call, you may pass CancelDomainTransferToAnotherAwsAccountRequest
|
114
|
+
# data as a hash:
|
115
|
+
#
|
116
|
+
# {
|
117
|
+
# domain_name: "DomainName", # required
|
118
|
+
# }
|
119
|
+
#
|
120
|
+
# @!attribute [rw] domain_name
|
121
|
+
# The name of the domain for which you want to cancel the transfer to
|
122
|
+
# another AWS account.
|
123
|
+
# @return [String]
|
124
|
+
#
|
125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccountRequest AWS API Documentation
|
126
|
+
#
|
127
|
+
class CancelDomainTransferToAnotherAwsAccountRequest < Struct.new(
|
128
|
+
:domain_name)
|
129
|
+
include Aws::Structure
|
130
|
+
end
|
131
|
+
|
132
|
+
# The `CancelDomainTransferToAnotherAwsAccount` response includes the
|
133
|
+
# following element.
|
134
|
+
#
|
135
|
+
# @!attribute [rw] operation_id
|
136
|
+
# The identifier that `TransferDomainToAnotherAwsAccount` returned to
|
137
|
+
# track the progress of the request. Because the transfer request was
|
138
|
+
# canceled, the value is no longer valid, and you can't use
|
139
|
+
# `GetOperationDetail` to query the operation status.
|
140
|
+
# @return [String]
|
141
|
+
#
|
142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccountResponse AWS API Documentation
|
143
|
+
#
|
144
|
+
class CancelDomainTransferToAnotherAwsAccountResponse < Struct.new(
|
145
|
+
:operation_id)
|
146
|
+
include Aws::Structure
|
147
|
+
end
|
148
|
+
|
54
149
|
# The CheckDomainAvailability request contains the following elements.
|
55
150
|
#
|
56
151
|
# @note When making an API call, you may pass CheckDomainAvailabilityRequest
|
@@ -62,11 +157,34 @@ module Aws::Route53Domains
|
|
62
157
|
# }
|
63
158
|
#
|
64
159
|
# @!attribute [rw] domain_name
|
65
|
-
# The name of the domain that you want to get availability for.
|
160
|
+
# The name of the domain that you want to get availability for. The
|
161
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
162
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
163
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
164
|
+
# Guide*.
|
165
|
+
#
|
166
|
+
# The domain name can contain only the following characters:
|
167
|
+
#
|
168
|
+
# * Letters a through z. Domain names are not case sensitive.
|
169
|
+
#
|
170
|
+
# * Numbers 0 through 9.
|
171
|
+
#
|
172
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
173
|
+
# a label.
|
66
174
|
#
|
67
|
-
#
|
68
|
-
#
|
69
|
-
#
|
175
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
176
|
+
# `example.com`.
|
177
|
+
#
|
178
|
+
# Internationalized domain names are not supported for some top-level
|
179
|
+
# domains. To determine whether the TLD that you want to use supports
|
180
|
+
# internationalized domain names, see [Domains that You Can Register
|
181
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
182
|
+
# Internationalized Domain Names][2].
|
183
|
+
#
|
184
|
+
#
|
185
|
+
#
|
186
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
187
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
70
188
|
# @return [String]
|
71
189
|
#
|
72
190
|
# @!attribute [rw] idn_lang_code
|
@@ -107,9 +225,9 @@ module Aws::Route53Domains
|
|
107
225
|
# DONT\_KNOW
|
108
226
|
#
|
109
227
|
# : The TLD registry didn't reply with a definitive answer about
|
110
|
-
# whether the domain name is available.
|
111
|
-
#
|
112
|
-
#
|
228
|
+
# whether the domain name is available. Route 53 can return this
|
229
|
+
# response for a variety of reasons, for example, the registry is
|
230
|
+
# performing maintenance. Try again later.
|
113
231
|
#
|
114
232
|
# PENDING
|
115
233
|
#
|
@@ -154,11 +272,27 @@ module Aws::Route53Domains
|
|
154
272
|
# }
|
155
273
|
#
|
156
274
|
# @!attribute [rw] domain_name
|
157
|
-
# The name of the domain that you want to transfer to
|
275
|
+
# The name of the domain that you want to transfer to Route 53. The
|
276
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
277
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
278
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
279
|
+
# Guide*.
|
158
280
|
#
|
159
|
-
#
|
160
|
-
#
|
161
|
-
#
|
281
|
+
# The domain name can contain only the following characters:
|
282
|
+
#
|
283
|
+
# * Letters a through z. Domain names are not case sensitive.
|
284
|
+
#
|
285
|
+
# * Numbers 0 through 9.
|
286
|
+
#
|
287
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
288
|
+
# a label.
|
289
|
+
#
|
290
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
291
|
+
# `example.com`.
|
292
|
+
#
|
293
|
+
#
|
294
|
+
#
|
295
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
162
296
|
# @return [String]
|
163
297
|
#
|
164
298
|
# @!attribute [rw] auth_code
|
@@ -180,7 +314,7 @@ module Aws::Route53Domains
|
|
180
314
|
#
|
181
315
|
# @!attribute [rw] transferability
|
182
316
|
# A complex type that contains information about whether the specified
|
183
|
-
# domain can be transferred to
|
317
|
+
# domain can be transferred to Route 53.
|
184
318
|
# @return [Types::DomainTransferability]
|
185
319
|
#
|
186
320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainTransferabilityResponse AWS API Documentation
|
@@ -211,7 +345,7 @@ module Aws::Route53Domains
|
|
211
345
|
# fax: "ContactNumber",
|
212
346
|
# extra_params: [
|
213
347
|
# {
|
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
|
348
|
+
# 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
349
|
# value: "ExtraParamValue", # required
|
216
350
|
# },
|
217
351
|
# ],
|
@@ -227,9 +361,23 @@ module Aws::Route53Domains
|
|
227
361
|
#
|
228
362
|
# @!attribute [rw] contact_type
|
229
363
|
# Indicates whether the contact is a person, company, association, or
|
230
|
-
# public organization.
|
231
|
-
#
|
232
|
-
#
|
364
|
+
# public organization. Note the following:
|
365
|
+
#
|
366
|
+
# * If you specify a value other than `PERSON`, you must also specify
|
367
|
+
# a value for `OrganizationName`.
|
368
|
+
#
|
369
|
+
# * For some TLDs, the privacy protection available depends on the
|
370
|
+
# value that you specify for `Contact Type`. For the privacy
|
371
|
+
# protection settings for your TLD, see [Domains that You Can
|
372
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53
|
373
|
+
# Developer Guide*
|
374
|
+
#
|
375
|
+
# * For .es domains, if you specify `PERSON`, you must specify
|
376
|
+
# `INDIVIDUAL` for the value of `ES_LEGAL_FORM`.
|
377
|
+
#
|
378
|
+
#
|
379
|
+
#
|
380
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
233
381
|
# @return [String]
|
234
382
|
#
|
235
383
|
# @!attribute [rw] organization_name
|
@@ -383,8 +531,12 @@ module Aws::Route53Domains
|
|
383
531
|
# The DisableDomainTransferLock response includes the following element.
|
384
532
|
#
|
385
533
|
# @!attribute [rw] operation_id
|
386
|
-
# Identifier for tracking the progress of the request. To
|
387
|
-
#
|
534
|
+
# Identifier for tracking the progress of the request. To query the
|
535
|
+
# operation status, use [GetOperationDetail][1].
|
536
|
+
#
|
537
|
+
#
|
538
|
+
#
|
539
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
388
540
|
# @return [String]
|
389
541
|
#
|
390
542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainTransferLockResponse AWS API Documentation
|
@@ -440,9 +592,9 @@ module Aws::Route53Domains
|
|
440
592
|
# DONT\_KNOW
|
441
593
|
#
|
442
594
|
# : The TLD registry didn't reply with a definitive answer about
|
443
|
-
# whether the domain name is available.
|
444
|
-
#
|
445
|
-
#
|
595
|
+
# whether the domain name is available. Route 53 can return this
|
596
|
+
# response for a variety of reasons, for example, the registry is
|
597
|
+
# performing maintenance. Try again later.
|
446
598
|
#
|
447
599
|
# PENDING
|
448
600
|
#
|
@@ -493,7 +645,8 @@ module Aws::Route53Domains
|
|
493
645
|
# @return [Boolean]
|
494
646
|
#
|
495
647
|
# @!attribute [rw] expiry
|
496
|
-
# Expiration date of the domain in
|
648
|
+
# Expiration date of the domain in Unix time format and Coordinated
|
649
|
+
# Universal Time (UTC).
|
497
650
|
# @return [Time]
|
498
651
|
#
|
499
652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DomainSummary AWS API Documentation
|
@@ -507,10 +660,10 @@ module Aws::Route53Domains
|
|
507
660
|
end
|
508
661
|
|
509
662
|
# A complex type that contains information about whether the specified
|
510
|
-
# domain can be transferred to
|
663
|
+
# domain can be transferred to Route 53.
|
511
664
|
#
|
512
665
|
# @!attribute [rw] transferable
|
513
|
-
# Whether the domain name can be transferred to
|
666
|
+
# Whether the domain name can be transferred to Route 53.
|
514
667
|
#
|
515
668
|
# <note markdown="1"> You can transfer only domains that have a value of `TRANSFERABLE`
|
516
669
|
# for `Transferable`.
|
@@ -521,11 +674,11 @@ module Aws::Route53Domains
|
|
521
674
|
#
|
522
675
|
# TRANSFERABLE
|
523
676
|
#
|
524
|
-
# : The domain name can be transferred to
|
677
|
+
# : The domain name can be transferred to Route 53.
|
525
678
|
#
|
526
679
|
# UNTRANSFERRABLE
|
527
680
|
#
|
528
|
-
# : The domain name can't be transferred to
|
681
|
+
# : The domain name can't be transferred to Route 53.
|
529
682
|
#
|
530
683
|
# DONT\_KNOW
|
531
684
|
#
|
@@ -615,47 +768,367 @@ module Aws::Route53Domains
|
|
615
768
|
# data as a hash:
|
616
769
|
#
|
617
770
|
# {
|
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
|
771
|
+
# 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
772
|
# value: "ExtraParamValue", # required
|
620
773
|
# }
|
621
774
|
#
|
622
775
|
# @!attribute [rw] name
|
623
|
-
#
|
624
|
-
# Here are the top-level domains that require additional
|
625
|
-
# and
|
776
|
+
# The name of an additional parameter that is required by a top-level
|
777
|
+
# domain. Here are the top-level domains that require additional
|
778
|
+
# parameters and the names of the parameters that they require:
|
779
|
+
#
|
780
|
+
# .com.au and .net.au
|
781
|
+
# : * `AU_ID_NUMBER`
|
782
|
+
#
|
783
|
+
# * `AU_ID_TYPE`
|
784
|
+
#
|
785
|
+
# Valid values include the following:
|
786
|
+
#
|
787
|
+
# * `ABN` (Australian business number)
|
788
|
+
#
|
789
|
+
# * `ACN` (Australian company number)
|
790
|
+
#
|
791
|
+
# * `TM` (Trademark number)
|
792
|
+
#
|
793
|
+
# .ca
|
794
|
+
# : * `BRAND_NUMBER`
|
795
|
+
#
|
796
|
+
# * `CA_BUSINESS_ENTITY_TYPE`
|
797
|
+
#
|
798
|
+
# Valid values include the following:
|
799
|
+
#
|
800
|
+
# * `BANK` (Bank)
|
801
|
+
#
|
802
|
+
# * `COMMERCIAL_COMPANY` (Commercial company)
|
803
|
+
#
|
804
|
+
# * `COMPANY` (Company)
|
805
|
+
#
|
806
|
+
# * `COOPERATION` (Cooperation)
|
807
|
+
#
|
808
|
+
# * `COOPERATIVE` (Cooperative)
|
809
|
+
#
|
810
|
+
# * `COOPRIX` (Cooprix)
|
811
|
+
#
|
812
|
+
# * `CORP` (Corporation)
|
813
|
+
#
|
814
|
+
# * `CREDIT_UNION` (Credit union)
|
815
|
+
#
|
816
|
+
# * `FOMIA` (Federation of mutual insurance associations)
|
817
|
+
#
|
818
|
+
# * `INC` (Incorporated)
|
819
|
+
#
|
820
|
+
# * `LTD` (Limited)
|
821
|
+
#
|
822
|
+
# * `LTEE` (Limitée)
|
823
|
+
#
|
824
|
+
# * `LLC` (Limited liability corporation)
|
825
|
+
#
|
826
|
+
# * `LLP` (Limited liability partnership)
|
827
|
+
#
|
828
|
+
# * `LTE` (Lte.)
|
829
|
+
#
|
830
|
+
# * `MBA` (Mutual benefit association)
|
831
|
+
#
|
832
|
+
# * `MIC` (Mutual insurance company)
|
833
|
+
#
|
834
|
+
# * `NFP` (Not-for-profit corporation)
|
835
|
+
#
|
836
|
+
# * `SA` (S.A.)
|
837
|
+
#
|
838
|
+
# * `SAVINGS_COMPANY` (Savings company)
|
839
|
+
#
|
840
|
+
# * `SAVINGS_UNION` (Savings union)
|
841
|
+
#
|
842
|
+
# * `SARL` (Société à responsabilité limitée)
|
843
|
+
#
|
844
|
+
# * `TRUST` (Trust)
|
845
|
+
#
|
846
|
+
# * `ULC` (Unlimited liability corporation)
|
847
|
+
#
|
848
|
+
# * `CA_LEGAL_TYPE`
|
849
|
+
#
|
850
|
+
# When `ContactType` is `PERSON`, valid values include the
|
851
|
+
# following:
|
852
|
+
#
|
853
|
+
# * `ABO` (Aboriginal Peoples indigenous to Canada)
|
854
|
+
#
|
855
|
+
# * `CCT` (Canadian citizen)
|
856
|
+
#
|
857
|
+
# * `LGR` (Legal Representative of a Canadian Citizen or Permanent
|
858
|
+
# Resident)
|
859
|
+
#
|
860
|
+
# * `RES` (Permanent resident of Canada)
|
861
|
+
#
|
862
|
+
# When `ContactType` is a value other than `PERSON`, valid values
|
863
|
+
# include the following:
|
864
|
+
#
|
865
|
+
# * `ASS` (Canadian unincorporated association)
|
866
|
+
#
|
867
|
+
# * `CCO` (Canadian corporation)
|
868
|
+
#
|
869
|
+
# * `EDU` (Canadian educational institution)
|
870
|
+
#
|
871
|
+
# * `GOV` (Government or government entity in Canada)
|
872
|
+
#
|
873
|
+
# * `HOP` (Canadian Hospital)
|
874
|
+
#
|
875
|
+
# * `INB` (Indian Band recognized by the Indian Act of Canada)
|
876
|
+
#
|
877
|
+
# * `LAM` (Canadian Library, Archive, or Museum)
|
878
|
+
#
|
879
|
+
# * `MAJ` (Her/His Majesty the Queen/King)
|
880
|
+
#
|
881
|
+
# * `OMK` (Official mark registered in Canada)
|
882
|
+
#
|
883
|
+
# * `PLT` (Canadian Political Party)
|
884
|
+
#
|
885
|
+
# * `PRT` (Partnership Registered in Canada)
|
886
|
+
#
|
887
|
+
# * `TDM` (Trademark registered in Canada)
|
888
|
+
#
|
889
|
+
# * `TRD` (Canadian Trade Union)
|
890
|
+
#
|
891
|
+
# * `TRS` (Trust established in Canada)
|
892
|
+
#
|
893
|
+
# .es
|
894
|
+
# : * `ES_IDENTIFICATION`
|
895
|
+
#
|
896
|
+
# Specify the applicable value:
|
897
|
+
#
|
898
|
+
# * **For contacts inside Spain:** Enter your passport ID.
|
899
|
+
#
|
900
|
+
# * **For contacts outside of Spain:** Enter the VAT
|
901
|
+
# identification number for the company.
|
902
|
+
#
|
903
|
+
# <note markdown="1"> For .es domains, the value of `ContactType` must be `PERSON`.
|
904
|
+
#
|
905
|
+
# </note>
|
906
|
+
#
|
907
|
+
# * `ES_IDENTIFICATION_TYPE`
|
908
|
+
#
|
909
|
+
# Valid values include the following:
|
910
|
+
#
|
911
|
+
# * `DNI_AND_NIF` (For Spanish contacts)
|
912
|
+
#
|
913
|
+
# * `NIE` (For foreigners with legal residence)
|
914
|
+
#
|
915
|
+
# * `OTHER` (For contacts outside of Spain)
|
916
|
+
#
|
917
|
+
# * `ES_LEGAL_FORM`
|
918
|
+
#
|
919
|
+
# Valid values include the following:
|
920
|
+
#
|
921
|
+
# * `ASSOCIATION`
|
922
|
+
#
|
923
|
+
# * `CENTRAL_GOVERNMENT_BODY`
|
924
|
+
#
|
925
|
+
# * `CIVIL_SOCIETY`
|
926
|
+
#
|
927
|
+
# * `COMMUNITY_OF_OWNERS`
|
928
|
+
#
|
929
|
+
# * `COMMUNITY_PROPERTY`
|
930
|
+
#
|
931
|
+
# * `CONSULATE`
|
932
|
+
#
|
933
|
+
# * `COOPERATIVE`
|
934
|
+
#
|
935
|
+
# * `DESIGNATION_OF_ORIGIN_SUPERVISORY_COUNCIL`
|
936
|
+
#
|
937
|
+
# * `ECONOMIC_INTEREST_GROUP`
|
938
|
+
#
|
939
|
+
# * `EMBASSY`
|
940
|
+
#
|
941
|
+
# * `ENTITY_MANAGING_NATURAL_AREAS`
|
942
|
+
#
|
943
|
+
# * `FARM_PARTNERSHIP`
|
944
|
+
#
|
945
|
+
# * `FOUNDATION`
|
946
|
+
#
|
947
|
+
# * `GENERAL_AND_LIMITED_PARTNERSHIP`
|
948
|
+
#
|
949
|
+
# * `GENERAL_PARTNERSHIP`
|
950
|
+
#
|
951
|
+
# * `INDIVIDUAL`
|
952
|
+
#
|
953
|
+
# * `LIMITED_COMPANY`
|
954
|
+
#
|
955
|
+
# * `LOCAL_AUTHORITY`
|
956
|
+
#
|
957
|
+
# * `LOCAL_PUBLIC_ENTITY`
|
958
|
+
#
|
959
|
+
# * `MUTUAL_INSURANCE_COMPANY`
|
960
|
+
#
|
961
|
+
# * `NATIONAL_PUBLIC_ENTITY`
|
962
|
+
#
|
963
|
+
# * `ORDER_OR_RELIGIOUS_INSTITUTION`
|
964
|
+
#
|
965
|
+
# * `OTHERS (Only for contacts outside of Spain)`
|
966
|
+
#
|
967
|
+
# * `POLITICAL_PARTY`
|
968
|
+
#
|
969
|
+
# * `PROFESSIONAL_ASSOCIATION`
|
970
|
+
#
|
971
|
+
# * `PUBLIC_LAW_ASSOCIATION`
|
972
|
+
#
|
973
|
+
# * `PUBLIC_LIMITED_COMPANY`
|
974
|
+
#
|
975
|
+
# * `REGIONAL_GOVERNMENT_BODY`
|
976
|
+
#
|
977
|
+
# * `REGIONAL_PUBLIC_ENTITY`
|
978
|
+
#
|
979
|
+
# * `SAVINGS_BANK`
|
980
|
+
#
|
981
|
+
# * `SPANISH_OFFICE`
|
626
982
|
#
|
627
|
-
#
|
983
|
+
# * `SPORTS_ASSOCIATION`
|
628
984
|
#
|
629
|
-
#
|
630
|
-
# `CA_BUSINESS_ENTITY_TYPE`
|
985
|
+
# * `SPORTS_FEDERATION`
|
631
986
|
#
|
632
|
-
#
|
633
|
-
# `ES_LEGAL_FORM`
|
987
|
+
# * `SPORTS_LIMITED_COMPANY`
|
634
988
|
#
|
635
|
-
#
|
636
|
-
# `FI_ID_NUMBER`, `FI_NATIONALITY`, and `FI_ORGANIZATION_TYPE`
|
989
|
+
# * `TEMPORARY_ALLIANCE_OF_ENTERPRISES`
|
637
990
|
#
|
638
|
-
#
|
639
|
-
# `BIRTH_DATE_IN_YYYY_MM_DD`, `BIRTH_COUNTRY`, and `BIRTH_CITY`
|
991
|
+
# * `TRADE_UNION`
|
640
992
|
#
|
641
|
-
#
|
642
|
-
# `IT_REGISTRANT_ENTITY_TYPE`
|
993
|
+
# * `WORKER_OWNED_COMPANY`
|
643
994
|
#
|
644
|
-
#
|
995
|
+
# * `WORKER_OWNED_LIMITED_COMPANY`
|
645
996
|
#
|
646
|
-
#
|
997
|
+
# .fi
|
998
|
+
# : * `BIRTH_DATE_IN_YYYY_MM_DD`
|
647
999
|
#
|
648
|
-
#
|
1000
|
+
# * `FI_BUSINESS_NUMBER`
|
649
1001
|
#
|
650
|
-
#
|
651
|
-
# `UK_COMPANY_NUMBER`
|
1002
|
+
# * `FI_ID_NUMBER`
|
652
1003
|
#
|
653
|
-
#
|
1004
|
+
# * `FI_NATIONALITY`
|
1005
|
+
#
|
1006
|
+
# Valid values include the following:
|
1007
|
+
#
|
1008
|
+
# * `FINNISH`
|
1009
|
+
#
|
1010
|
+
# * `NOT_FINNISH`
|
1011
|
+
#
|
1012
|
+
# * `FI_ORGANIZATION_TYPE`
|
1013
|
+
#
|
1014
|
+
# Valid values include the following:
|
1015
|
+
#
|
1016
|
+
# * `COMPANY`
|
1017
|
+
#
|
1018
|
+
# * `CORPORATION`
|
1019
|
+
#
|
1020
|
+
# * `GOVERNMENT`
|
1021
|
+
#
|
1022
|
+
# * `INSTITUTION`
|
1023
|
+
#
|
1024
|
+
# * `POLITICAL_PARTY`
|
1025
|
+
#
|
1026
|
+
# * `PUBLIC_COMMUNITY`
|
1027
|
+
#
|
1028
|
+
# * `TOWNSHIP`
|
1029
|
+
#
|
1030
|
+
# .fr
|
1031
|
+
# : * `BIRTH_CITY`
|
1032
|
+
#
|
1033
|
+
# * `BIRTH_COUNTRY`
|
1034
|
+
#
|
1035
|
+
# * `BIRTH_DATE_IN_YYYY_MM_DD`
|
1036
|
+
#
|
1037
|
+
# * `BIRTH_DEPARTMENT`\: Specify the INSEE code that corresponds
|
1038
|
+
# with the department where the contact was born. If the contact
|
1039
|
+
# was born somewhere other than France or its overseas
|
1040
|
+
# departments, specify `99`. For more information, including a
|
1041
|
+
# list of departments and the corresponding INSEE numbers, see the
|
1042
|
+
# Wikipedia entry [Departments of France][1].
|
1043
|
+
#
|
1044
|
+
# * `BRAND_NUMBER`
|
1045
|
+
#
|
1046
|
+
# .it
|
1047
|
+
# : * `IT_NATIONALITY`
|
1048
|
+
#
|
1049
|
+
# * `IT_PIN`
|
1050
|
+
#
|
1051
|
+
# * `IT_REGISTRANT_ENTITY_TYPE`
|
1052
|
+
#
|
1053
|
+
# Valid values include the following:
|
1054
|
+
#
|
1055
|
+
# * `FOREIGNERS`
|
1056
|
+
#
|
1057
|
+
# * `FREELANCE_WORKERS` (Freelance workers and professionals)
|
1058
|
+
#
|
1059
|
+
# * `ITALIAN_COMPANIES` (Italian companies and one-person
|
1060
|
+
# companies)
|
1061
|
+
#
|
1062
|
+
# * `NON_PROFIT_ORGANIZATIONS`
|
1063
|
+
#
|
1064
|
+
# * `OTHER_SUBJECTS`
|
1065
|
+
#
|
1066
|
+
# * `PUBLIC_ORGANIZATIONS`
|
1067
|
+
#
|
1068
|
+
# .ru
|
1069
|
+
# : * `BIRTH_DATE_IN_YYYY_MM_DD`
|
1070
|
+
#
|
1071
|
+
# * `RU_PASSPORT_DATA`
|
1072
|
+
#
|
1073
|
+
# .se
|
1074
|
+
# : * `BIRTH_COUNTRY`
|
1075
|
+
#
|
1076
|
+
# * `SE_ID_NUMBER`
|
1077
|
+
#
|
1078
|
+
# .sg
|
1079
|
+
# : * `SG_ID_NUMBER`
|
1080
|
+
#
|
1081
|
+
# ^
|
1082
|
+
#
|
1083
|
+
# .co.uk, .me.uk, and .org.uk
|
1084
|
+
# : * `UK_CONTACT_TYPE`
|
1085
|
+
#
|
1086
|
+
# Valid values include the following:
|
1087
|
+
#
|
1088
|
+
# * `CRC` (UK Corporation by Royal Charter)
|
1089
|
+
#
|
1090
|
+
# * `FCORP` (Non-UK Corporation)
|
1091
|
+
#
|
1092
|
+
# * `FIND` (Non-UK Individual, representing self)
|
1093
|
+
#
|
1094
|
+
# * `FOTHER` (Non-UK Entity that does not fit into any other
|
1095
|
+
# category)
|
1096
|
+
#
|
1097
|
+
# * `GOV` (UK Government Body)
|
1098
|
+
#
|
1099
|
+
# * `IND` (UK Individual (representing self))
|
1100
|
+
#
|
1101
|
+
# * `IP` (UK Industrial/Provident Registered Company)
|
1102
|
+
#
|
1103
|
+
# * `LLP` (UK Limited Liability Partnership)
|
1104
|
+
#
|
1105
|
+
# * `LTD` (UK Limited Company)
|
1106
|
+
#
|
1107
|
+
# * `OTHER` (UK Entity that does not fit into any other category)
|
1108
|
+
#
|
1109
|
+
# * `PLC` (UK Public Limited Company)
|
1110
|
+
#
|
1111
|
+
# * `PTNR` (UK Partnership)
|
1112
|
+
#
|
1113
|
+
# * `RCHAR` (UK Registered Charity)
|
1114
|
+
#
|
1115
|
+
# * `SCH` (UK School)
|
1116
|
+
#
|
1117
|
+
# * `STAT` (UK Statutory Body)
|
1118
|
+
#
|
1119
|
+
# * `STRA` (UK Sole Trader)
|
1120
|
+
#
|
1121
|
+
# * `UK_COMPANY_NUMBER`
|
1122
|
+
#
|
1123
|
+
# In addition, many TLDs require a `VAT_NUMBER`.
|
1124
|
+
#
|
1125
|
+
#
|
1126
|
+
#
|
1127
|
+
# [1]: https://en.wikipedia.org/wiki/Departments_of_France
|
654
1128
|
# @return [String]
|
655
1129
|
#
|
656
1130
|
# @!attribute [rw] value
|
657
|
-
#
|
658
|
-
# some top-level domains.
|
1131
|
+
# The value that corresponds with the name of an extra parameter.
|
659
1132
|
# @return [String]
|
660
1133
|
#
|
661
1134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ExtraParam AWS API Documentation
|
@@ -825,24 +1298,25 @@ module Aws::Route53Domains
|
|
825
1298
|
#
|
826
1299
|
# @!attribute [rw] creation_date
|
827
1300
|
# 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).
|
1301
|
+
# WHOIS query. The date and time is in Unix time format and
|
1302
|
+
# Coordinated Universal time (UTC).
|
830
1303
|
# @return [Time]
|
831
1304
|
#
|
832
1305
|
# @!attribute [rw] updated_date
|
833
1306
|
# 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).
|
1307
|
+
# WHOIS query. The date and time is in Unix time format and
|
1308
|
+
# Coordinated Universal time (UTC).
|
836
1309
|
# @return [Time]
|
837
1310
|
#
|
838
1311
|
# @!attribute [rw] expiration_date
|
839
1312
|
# The date when the registration for the domain is set to expire. The
|
840
|
-
# date and time is in Coordinated Universal time
|
1313
|
+
# date and time is in Unix time format and Coordinated Universal time
|
1314
|
+
# (UTC).
|
841
1315
|
# @return [Time]
|
842
1316
|
#
|
843
1317
|
# @!attribute [rw] reseller
|
844
1318
|
# Reseller of the domain. Domains registered or transferred using
|
845
|
-
#
|
1319
|
+
# Route 53 domains will have `"Amazon"` as the reseller.
|
846
1320
|
# @return [String]
|
847
1321
|
#
|
848
1322
|
# @!attribute [rw] dns_sec
|
@@ -908,28 +1382,44 @@ module Aws::Route53Domains
|
|
908
1382
|
#
|
909
1383
|
# @!attribute [rw] domain_name
|
910
1384
|
# A domain name that you want to use as the basis for a list of
|
911
|
-
# possible domain names. The domain
|
912
|
-
#
|
913
|
-
#
|
914
|
-
#
|
1385
|
+
# possible domain names. The top-level domain (TLD), such as .com,
|
1386
|
+
# must be a TLD that Route 53 supports. For a list of supported TLDs,
|
1387
|
+
# see [Domains that You Can Register with Amazon Route 53][1] in the
|
1388
|
+
# *Amazon Route 53 Developer Guide*.
|
1389
|
+
#
|
1390
|
+
# The domain name can contain only the following characters:
|
1391
|
+
#
|
1392
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1393
|
+
#
|
1394
|
+
# * Numbers 0 through 9.
|
1395
|
+
#
|
1396
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
1397
|
+
# a label.
|
1398
|
+
#
|
1399
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1400
|
+
# `example.com`.
|
915
1401
|
#
|
1402
|
+
# Internationalized domain names are not supported for some top-level
|
1403
|
+
# domains. To determine whether the TLD that you want to use supports
|
1404
|
+
# internationalized domain names, see [Domains that You Can Register
|
1405
|
+
# with Amazon Route 53][1].
|
916
1406
|
#
|
917
1407
|
#
|
918
|
-
#
|
1408
|
+
#
|
1409
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
919
1410
|
# @return [String]
|
920
1411
|
#
|
921
1412
|
# @!attribute [rw] suggestion_count
|
922
|
-
# The number of suggested domain names that you want
|
923
|
-
#
|
1413
|
+
# The number of suggested domain names that you want Route 53 to
|
1414
|
+
# return. Specify a value between 1 and 50.
|
924
1415
|
# @return [Integer]
|
925
1416
|
#
|
926
1417
|
# @!attribute [rw] only_available
|
927
|
-
# If `OnlyAvailable` is `true`,
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
932
|
-
# suggestion.
|
1418
|
+
# If `OnlyAvailable` is `true`, Route 53 returns only domain names
|
1419
|
+
# that are available. If `OnlyAvailable` is `false`, Route 53 returns
|
1420
|
+
# domain names without checking whether they're available to be
|
1421
|
+
# registered. To determine whether the domain is available, you can
|
1422
|
+
# call `checkDomainAvailability` for each suggestion.
|
933
1423
|
# @return [Boolean]
|
934
1424
|
#
|
935
1425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainSuggestionsRequest AWS API Documentation
|
@@ -954,7 +1444,11 @@ module Aws::Route53Domains
|
|
954
1444
|
include Aws::Structure
|
955
1445
|
end
|
956
1446
|
|
957
|
-
# The GetOperationDetail request includes the following element.
|
1447
|
+
# The [GetOperationDetail][1] request includes the following element.
|
1448
|
+
#
|
1449
|
+
#
|
1450
|
+
#
|
1451
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
958
1452
|
#
|
959
1453
|
# @note When making an API call, you may pass GetOperationDetailRequest
|
960
1454
|
# data as a hash:
|
@@ -965,8 +1459,8 @@ module Aws::Route53Domains
|
|
965
1459
|
#
|
966
1460
|
# @!attribute [rw] operation_id
|
967
1461
|
# The identifier for the operation for which you want to get the
|
968
|
-
# status.
|
969
|
-
#
|
1462
|
+
# status. Route 53 returned the identifier in the response to the
|
1463
|
+
# original request.
|
970
1464
|
# @return [String]
|
971
1465
|
#
|
972
1466
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetailRequest AWS API Documentation
|
@@ -1014,10 +1508,11 @@ module Aws::Route53Domains
|
|
1014
1508
|
include Aws::Structure
|
1015
1509
|
end
|
1016
1510
|
|
1017
|
-
# The requested item is not acceptable. For example, for
|
1018
|
-
#
|
1019
|
-
#
|
1020
|
-
# the
|
1511
|
+
# The requested item is not acceptable. For example, for APIs that
|
1512
|
+
# accept a domain name, the request might specify a domain name that
|
1513
|
+
# doesn't belong to the account that submitted the request. For
|
1514
|
+
# `AcceptDomainTransferFromAnotherAwsAccount`, the password might be
|
1515
|
+
# invalid.
|
1021
1516
|
#
|
1022
1517
|
# @!attribute [rw] message
|
1023
1518
|
# The requested item is not acceptable. For example, for an
|
@@ -1104,7 +1599,8 @@ module Aws::Route53Domains
|
|
1104
1599
|
# @!attribute [rw] submitted_since
|
1105
1600
|
# An optional parameter that lets you get information about all the
|
1106
1601
|
# operations that you submitted after a specified date and time.
|
1107
|
-
# Specify the date and time in
|
1602
|
+
# Specify the date and time in Unix time format and Coordinated
|
1603
|
+
# Universal time (UTC).
|
1108
1604
|
# @return [Time]
|
1109
1605
|
#
|
1110
1606
|
# @!attribute [rw] marker
|
@@ -1289,7 +1785,7 @@ module Aws::Route53Domains
|
|
1289
1785
|
# fax: "ContactNumber",
|
1290
1786
|
# extra_params: [
|
1291
1787
|
# {
|
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
|
1788
|
+
# 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
1789
|
# value: "ExtraParamValue", # required
|
1294
1790
|
# },
|
1295
1791
|
# ],
|
@@ -1310,7 +1806,7 @@ module Aws::Route53Domains
|
|
1310
1806
|
# fax: "ContactNumber",
|
1311
1807
|
# extra_params: [
|
1312
1808
|
# {
|
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
|
1809
|
+
# 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
1810
|
# value: "ExtraParamValue", # required
|
1315
1811
|
# },
|
1316
1812
|
# ],
|
@@ -1331,7 +1827,7 @@ module Aws::Route53Domains
|
|
1331
1827
|
# fax: "ContactNumber",
|
1332
1828
|
# extra_params: [
|
1333
1829
|
# {
|
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
|
1830
|
+
# 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
1831
|
# value: "ExtraParamValue", # required
|
1336
1832
|
# },
|
1337
1833
|
# ],
|
@@ -1342,11 +1838,33 @@ module Aws::Route53Domains
|
|
1342
1838
|
# }
|
1343
1839
|
#
|
1344
1840
|
# @!attribute [rw] domain_name
|
1345
|
-
# The domain name that you want to register.
|
1841
|
+
# The domain name that you want to register. The top-level domain
|
1842
|
+
# (TLD), such as .com, must be a TLD that Route 53 supports. For a
|
1843
|
+
# list of supported TLDs, see [Domains that You Can Register with
|
1844
|
+
# Amazon Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1346
1845
|
#
|
1347
|
-
#
|
1348
|
-
#
|
1349
|
-
#
|
1846
|
+
# The domain name can contain only the following characters:
|
1847
|
+
#
|
1848
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1849
|
+
#
|
1850
|
+
# * Numbers 0 through 9.
|
1851
|
+
#
|
1852
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
1853
|
+
# a label.
|
1854
|
+
#
|
1855
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1856
|
+
# `example.com`.
|
1857
|
+
#
|
1858
|
+
# Internationalized domain names are not supported for some top-level
|
1859
|
+
# domains. To determine whether the TLD that you want to use supports
|
1860
|
+
# internationalized domain names, see [Domains that You Can Register
|
1861
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
1862
|
+
# Internationalized Domain Names][2].
|
1863
|
+
#
|
1864
|
+
#
|
1865
|
+
#
|
1866
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1867
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
1350
1868
|
# @return [String]
|
1351
1869
|
#
|
1352
1870
|
# @!attribute [rw] idn_lang_code
|
@@ -1364,7 +1882,7 @@ module Aws::Route53Domains
|
|
1364
1882
|
#
|
1365
1883
|
#
|
1366
1884
|
#
|
1367
|
-
# [1]:
|
1885
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1368
1886
|
# @return [Integer]
|
1369
1887
|
#
|
1370
1888
|
# @!attribute [rw] auto_renew
|
@@ -1376,15 +1894,30 @@ module Aws::Route53Domains
|
|
1376
1894
|
# @return [Boolean]
|
1377
1895
|
#
|
1378
1896
|
# @!attribute [rw] admin_contact
|
1379
|
-
# Provides detailed contact information.
|
1897
|
+
# Provides detailed contact information. For information about the
|
1898
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1899
|
+
#
|
1900
|
+
#
|
1901
|
+
#
|
1902
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1380
1903
|
# @return [Types::ContactDetail]
|
1381
1904
|
#
|
1382
1905
|
# @!attribute [rw] registrant_contact
|
1383
|
-
# Provides detailed contact information.
|
1906
|
+
# Provides detailed contact information. For information about the
|
1907
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1908
|
+
#
|
1909
|
+
#
|
1910
|
+
#
|
1911
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1384
1912
|
# @return [Types::ContactDetail]
|
1385
1913
|
#
|
1386
1914
|
# @!attribute [rw] tech_contact
|
1387
|
-
# Provides detailed contact information.
|
1915
|
+
# Provides detailed contact information. For information about the
|
1916
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1917
|
+
#
|
1918
|
+
#
|
1919
|
+
#
|
1920
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1388
1921
|
# @return [Types::ContactDetail]
|
1389
1922
|
#
|
1390
1923
|
# @!attribute [rw] privacy_protect_admin_contact
|
@@ -1439,8 +1972,12 @@ module Aws::Route53Domains
|
|
1439
1972
|
# The RegisterDomain response includes the following element.
|
1440
1973
|
#
|
1441
1974
|
# @!attribute [rw] operation_id
|
1442
|
-
# Identifier for tracking the progress of the request. To
|
1443
|
-
#
|
1975
|
+
# Identifier for tracking the progress of the request. To query the
|
1976
|
+
# operation status, use [GetOperationDetail][1].
|
1977
|
+
#
|
1978
|
+
#
|
1979
|
+
#
|
1980
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1444
1981
|
# @return [String]
|
1445
1982
|
#
|
1446
1983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RegisterDomainResponse AWS API Documentation
|
@@ -1450,6 +1987,49 @@ module Aws::Route53Domains
|
|
1450
1987
|
include Aws::Structure
|
1451
1988
|
end
|
1452
1989
|
|
1990
|
+
# The RejectDomainTransferFromAnotherAwsAccount request includes the
|
1991
|
+
# following element.
|
1992
|
+
#
|
1993
|
+
# @note When making an API call, you may pass RejectDomainTransferFromAnotherAwsAccountRequest
|
1994
|
+
# data as a hash:
|
1995
|
+
#
|
1996
|
+
# {
|
1997
|
+
# domain_name: "DomainName", # required
|
1998
|
+
# }
|
1999
|
+
#
|
2000
|
+
# @!attribute [rw] domain_name
|
2001
|
+
# The name of the domain that was specified when another AWS account
|
2002
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
2003
|
+
#
|
2004
|
+
#
|
2005
|
+
#
|
2006
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccountRequest AWS API Documentation
|
2010
|
+
#
|
2011
|
+
class RejectDomainTransferFromAnotherAwsAccountRequest < Struct.new(
|
2012
|
+
:domain_name)
|
2013
|
+
include Aws::Structure
|
2014
|
+
end
|
2015
|
+
|
2016
|
+
# The RejectDomainTransferFromAnotherAwsAccount response includes the
|
2017
|
+
# following element.
|
2018
|
+
#
|
2019
|
+
# @!attribute [rw] operation_id
|
2020
|
+
# The identifier that `TransferDomainToAnotherAwsAccount` returned to
|
2021
|
+
# track the progress of the request. Because the transfer request was
|
2022
|
+
# rejected, the value is no longer valid, and you can't use
|
2023
|
+
# `GetOperationDetail` to query the operation status.
|
2024
|
+
# @return [String]
|
2025
|
+
#
|
2026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccountResponse AWS API Documentation
|
2027
|
+
#
|
2028
|
+
class RejectDomainTransferFromAnotherAwsAccountResponse < Struct.new(
|
2029
|
+
:operation_id)
|
2030
|
+
include Aws::Structure
|
2031
|
+
end
|
2032
|
+
|
1453
2033
|
# A `RenewDomain` request includes the number of years that you want to
|
1454
2034
|
# renew for and the current expiration year.
|
1455
2035
|
#
|
@@ -1477,7 +2057,7 @@ module Aws::Route53Domains
|
|
1477
2057
|
#
|
1478
2058
|
#
|
1479
2059
|
#
|
1480
|
-
# [1]:
|
2060
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1481
2061
|
# @return [Integer]
|
1482
2062
|
#
|
1483
2063
|
# @!attribute [rw] current_expiry_year
|
@@ -1495,8 +2075,12 @@ module Aws::Route53Domains
|
|
1495
2075
|
end
|
1496
2076
|
|
1497
2077
|
# @!attribute [rw] operation_id
|
1498
|
-
#
|
1499
|
-
#
|
2078
|
+
# Identifier for tracking the progress of the request. To query the
|
2079
|
+
# operation status, use [GetOperationDetail][1].
|
2080
|
+
#
|
2081
|
+
#
|
2082
|
+
#
|
2083
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1500
2084
|
# @return [String]
|
1501
2085
|
#
|
1502
2086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RenewDomainResponse AWS API Documentation
|
@@ -1514,8 +2098,8 @@ module Aws::Route53Domains
|
|
1514
2098
|
# }
|
1515
2099
|
#
|
1516
2100
|
# @!attribute [rw] domain_name
|
1517
|
-
# The name of the domain for which you want
|
1518
|
-
#
|
2101
|
+
# The name of the domain for which you want Route 53 to resend a
|
2102
|
+
# confirmation email to the registrant contact.
|
1519
2103
|
# @return [String]
|
1520
2104
|
#
|
1521
2105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ResendContactReachabilityEmailRequest AWS API Documentation
|
@@ -1665,7 +2249,7 @@ module Aws::Route53Domains
|
|
1665
2249
|
# fax: "ContactNumber",
|
1666
2250
|
# extra_params: [
|
1667
2251
|
# {
|
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
|
2252
|
+
# 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
2253
|
# value: "ExtraParamValue", # required
|
1670
2254
|
# },
|
1671
2255
|
# ],
|
@@ -1686,7 +2270,7 @@ module Aws::Route53Domains
|
|
1686
2270
|
# fax: "ContactNumber",
|
1687
2271
|
# extra_params: [
|
1688
2272
|
# {
|
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
|
2273
|
+
# 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
2274
|
# value: "ExtraParamValue", # required
|
1691
2275
|
# },
|
1692
2276
|
# ],
|
@@ -1707,7 +2291,7 @@ module Aws::Route53Domains
|
|
1707
2291
|
# fax: "ContactNumber",
|
1708
2292
|
# extra_params: [
|
1709
2293
|
# {
|
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
|
2294
|
+
# 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
2295
|
# value: "ExtraParamValue", # required
|
1712
2296
|
# },
|
1713
2297
|
# ],
|
@@ -1718,11 +2302,27 @@ module Aws::Route53Domains
|
|
1718
2302
|
# }
|
1719
2303
|
#
|
1720
2304
|
# @!attribute [rw] domain_name
|
1721
|
-
# The name of the domain that you want to transfer to
|
2305
|
+
# The name of the domain that you want to transfer to Route 53. The
|
2306
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
2307
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
2308
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
2309
|
+
# Guide*.
|
2310
|
+
#
|
2311
|
+
# The domain name can contain only the following characters:
|
2312
|
+
#
|
2313
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1722
2314
|
#
|
1723
|
-
#
|
1724
|
-
#
|
1725
|
-
#
|
2315
|
+
# * Numbers 0 through 9.
|
2316
|
+
#
|
2317
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of
|
2318
|
+
# a label.
|
2319
|
+
#
|
2320
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
2321
|
+
# `example.com`.
|
2322
|
+
#
|
2323
|
+
#
|
2324
|
+
#
|
2325
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1726
2326
|
# @return [String]
|
1727
2327
|
#
|
1728
2328
|
# @!attribute [rw] idn_lang_code
|
@@ -1817,11 +2417,15 @@ module Aws::Route53Domains
|
|
1817
2417
|
include Aws::Structure
|
1818
2418
|
end
|
1819
2419
|
|
1820
|
-
# The
|
2420
|
+
# The TransferDomain response includes the following element.
|
1821
2421
|
#
|
1822
2422
|
# @!attribute [rw] operation_id
|
1823
|
-
# Identifier for tracking the progress of the request. To
|
1824
|
-
#
|
2423
|
+
# Identifier for tracking the progress of the request. To query the
|
2424
|
+
# operation status, use [GetOperationDetail][1].
|
2425
|
+
#
|
2426
|
+
#
|
2427
|
+
#
|
2428
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1825
2429
|
# @return [String]
|
1826
2430
|
#
|
1827
2431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainResponse AWS API Documentation
|
@@ -1831,6 +2435,67 @@ module Aws::Route53Domains
|
|
1831
2435
|
include Aws::Structure
|
1832
2436
|
end
|
1833
2437
|
|
2438
|
+
# The TransferDomainToAnotherAwsAccount request includes the following
|
2439
|
+
# elements.
|
2440
|
+
#
|
2441
|
+
# @note When making an API call, you may pass TransferDomainToAnotherAwsAccountRequest
|
2442
|
+
# data as a hash:
|
2443
|
+
#
|
2444
|
+
# {
|
2445
|
+
# domain_name: "DomainName", # required
|
2446
|
+
# account_id: "AccountId", # required
|
2447
|
+
# }
|
2448
|
+
#
|
2449
|
+
# @!attribute [rw] domain_name
|
2450
|
+
# The name of the domain that you want to transfer from the current
|
2451
|
+
# AWS account to another account.
|
2452
|
+
# @return [String]
|
2453
|
+
#
|
2454
|
+
# @!attribute [rw] account_id
|
2455
|
+
# The account ID of the AWS account that you want to transfer the
|
2456
|
+
# domain to, for example, `111122223333`.
|
2457
|
+
# @return [String]
|
2458
|
+
#
|
2459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccountRequest AWS API Documentation
|
2460
|
+
#
|
2461
|
+
class TransferDomainToAnotherAwsAccountRequest < Struct.new(
|
2462
|
+
:domain_name,
|
2463
|
+
:account_id)
|
2464
|
+
include Aws::Structure
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
# The `TransferDomainToAnotherAwsAccount` response includes the
|
2468
|
+
# following elements.
|
2469
|
+
#
|
2470
|
+
# @!attribute [rw] operation_id
|
2471
|
+
# Identifier for tracking the progress of the request. To query the
|
2472
|
+
# operation status, use [GetOperationDetail][1].
|
2473
|
+
#
|
2474
|
+
#
|
2475
|
+
#
|
2476
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
2477
|
+
# @return [String]
|
2478
|
+
#
|
2479
|
+
# @!attribute [rw] password
|
2480
|
+
# To finish transferring a domain to another AWS account, the account
|
2481
|
+
# that the domain is being transferred to must submit an
|
2482
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][1] request. The request
|
2483
|
+
# must include the value of the `Password` element that was returned
|
2484
|
+
# in the `TransferDomainToAnotherAwsAccount` response.
|
2485
|
+
#
|
2486
|
+
#
|
2487
|
+
#
|
2488
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
2489
|
+
# @return [String]
|
2490
|
+
#
|
2491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccountResponse AWS API Documentation
|
2492
|
+
#
|
2493
|
+
class TransferDomainToAnotherAwsAccountResponse < Struct.new(
|
2494
|
+
:operation_id,
|
2495
|
+
:password)
|
2496
|
+
include Aws::Structure
|
2497
|
+
end
|
2498
|
+
|
1834
2499
|
# Amazon Route 53 does not support this top-level domain (TLD).
|
1835
2500
|
#
|
1836
2501
|
# @!attribute [rw] message
|
@@ -1937,7 +2602,7 @@ module Aws::Route53Domains
|
|
1937
2602
|
# fax: "ContactNumber",
|
1938
2603
|
# extra_params: [
|
1939
2604
|
# {
|
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
|
2605
|
+
# 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
2606
|
# value: "ExtraParamValue", # required
|
1942
2607
|
# },
|
1943
2608
|
# ],
|
@@ -1958,7 +2623,7 @@ module Aws::Route53Domains
|
|
1958
2623
|
# fax: "ContactNumber",
|
1959
2624
|
# extra_params: [
|
1960
2625
|
# {
|
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
|
2626
|
+
# 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
2627
|
# value: "ExtraParamValue", # required
|
1963
2628
|
# },
|
1964
2629
|
# ],
|
@@ -1979,7 +2644,7 @@ module Aws::Route53Domains
|
|
1979
2644
|
# fax: "ContactNumber",
|
1980
2645
|
# extra_params: [
|
1981
2646
|
# {
|
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
|
2647
|
+
# 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
2648
|
# value: "ExtraParamValue", # required
|
1984
2649
|
# },
|
1985
2650
|
# ],
|
@@ -2016,8 +2681,12 @@ module Aws::Route53Domains
|
|
2016
2681
|
# The UpdateDomainContact response includes the following element.
|
2017
2682
|
#
|
2018
2683
|
# @!attribute [rw] operation_id
|
2019
|
-
# Identifier for tracking the progress of the request. To
|
2020
|
-
#
|
2684
|
+
# Identifier for tracking the progress of the request. To query the
|
2685
|
+
# operation status, use [GetOperationDetail][1].
|
2686
|
+
#
|
2687
|
+
#
|
2688
|
+
#
|
2689
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
2021
2690
|
# @return [String]
|
2022
2691
|
#
|
2023
2692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactResponse AWS API Documentation
|
@@ -2075,8 +2744,12 @@ module Aws::Route53Domains
|
|
2075
2744
|
# The UpdateDomainNameservers response includes the following element.
|
2076
2745
|
#
|
2077
2746
|
# @!attribute [rw] operation_id
|
2078
|
-
# Identifier for tracking the progress of the request. To
|
2079
|
-
#
|
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
|
2080
2753
|
# @return [String]
|
2081
2754
|
#
|
2082
2755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainNameserversResponse AWS API Documentation
|
@@ -2137,14 +2810,14 @@ module Aws::Route53Domains
|
|
2137
2810
|
#
|
2138
2811
|
# @!attribute [rw] start
|
2139
2812
|
# 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).
|
2813
|
+
# list of billing records. Specify the date and time in Unix time
|
2814
|
+
# format and Coordinated Universal time (UTC).
|
2142
2815
|
# @return [Time]
|
2143
2816
|
#
|
2144
2817
|
# @!attribute [rw] end
|
2145
2818
|
# 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).
|
2819
|
+
# of billing records. Specify the date and time in Unix time format
|
2820
|
+
# and Coordinated Universal time (UTC).
|
2148
2821
|
# @return [Time]
|
2149
2822
|
#
|
2150
2823
|
# @!attribute [rw] marker
|