aws-sdk-route53domains 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/aws-sdk-route53domains.rb +47 -0
- data/lib/aws-sdk-route53domains/client.rb +1766 -0
- data/lib/aws-sdk-route53domains/client_api.rb +692 -0
- data/lib/aws-sdk-route53domains/customizations.rb +7 -0
- data/lib/aws-sdk-route53domains/errors.rb +23 -0
- data/lib/aws-sdk-route53domains/resource.rb +25 -0
- data/lib/aws-sdk-route53domains/types.rb +2388 -0
- metadata +80 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing for info on making contributions:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53Domains
|
10
|
+
module Errors
|
11
|
+
|
12
|
+
extend Aws::Errors::DynamicErrors
|
13
|
+
|
14
|
+
# Raised when calling #load or #data on a resource class that can not be
|
15
|
+
# loaded. This can happen when:
|
16
|
+
#
|
17
|
+
# * A resource class has identifiers, but no data attributes.
|
18
|
+
# * Resource data is only available when making an API call that
|
19
|
+
# enumerates all resources of that type.
|
20
|
+
class ResourceNotLoadable < RuntimeError; end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing for info on making contributions:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53Domains
|
10
|
+
class Resource
|
11
|
+
|
12
|
+
# @param options ({})
|
13
|
+
# @option options [Client] :client
|
14
|
+
def initialize(options = {})
|
15
|
+
@client = options[:client] || Client.new(options)
|
16
|
+
end
|
17
|
+
|
18
|
+
# @return [Client]
|
19
|
+
def client
|
20
|
+
@client
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,2388 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing for info on making contributions:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Route53Domains
|
10
|
+
module Types
|
11
|
+
|
12
|
+
# @!attribute [rw] domain_name
|
13
|
+
# The name of a domain.
|
14
|
+
#
|
15
|
+
# Type: String
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute [rw] operation
|
19
|
+
# The operation that you were charged for.
|
20
|
+
#
|
21
|
+
# Type: String
|
22
|
+
#
|
23
|
+
# Valid values: * `REGISTER_DOMAIN`
|
24
|
+
# * `TRANSFER_IN_DOMAIN`
|
25
|
+
# * `RENEW_DOMAIN`
|
26
|
+
# * `CHANGE_DOMAIN_OWNER`
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] invoice_id
|
30
|
+
# The ID of the invoice that is associated with the billing record.
|
31
|
+
#
|
32
|
+
# Type: String
|
33
|
+
# @return [String]
|
34
|
+
#
|
35
|
+
# @!attribute [rw] bill_date
|
36
|
+
# The date that the operation was billed, in Unix format.
|
37
|
+
#
|
38
|
+
# Type: Double
|
39
|
+
# @return [Time]
|
40
|
+
#
|
41
|
+
# @!attribute [rw] price
|
42
|
+
# The price that you were charged for the operation, in US dollars.
|
43
|
+
#
|
44
|
+
# Type: Double
|
45
|
+
#
|
46
|
+
# Example value: 12.0
|
47
|
+
# @return [Float]
|
48
|
+
class BillingRecord < Struct.new(
|
49
|
+
:domain_name,
|
50
|
+
:operation,
|
51
|
+
:invoice_id,
|
52
|
+
:bill_date,
|
53
|
+
:price)
|
54
|
+
include Aws::Structure
|
55
|
+
end
|
56
|
+
|
57
|
+
# The CheckDomainAvailability request contains the following elements.
|
58
|
+
# @note When making an API call, pass CheckDomainAvailabilityRequest
|
59
|
+
# data as a hash:
|
60
|
+
#
|
61
|
+
# {
|
62
|
+
# domain_name: "DomainName", # required
|
63
|
+
# idn_lang_code: "LangCode",
|
64
|
+
# }
|
65
|
+
# @!attribute [rw] domain_name
|
66
|
+
# The name of a domain.
|
67
|
+
#
|
68
|
+
# Type: String
|
69
|
+
#
|
70
|
+
# Default: None
|
71
|
+
#
|
72
|
+
# Constraints: The domain name can contain only the letters a through
|
73
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
74
|
+
# Names are not supported.
|
75
|
+
#
|
76
|
+
# Required: Yes
|
77
|
+
# @return [String]
|
78
|
+
#
|
79
|
+
# @!attribute [rw] idn_lang_code
|
80
|
+
# Reserved for future use.
|
81
|
+
# @return [String]
|
82
|
+
class CheckDomainAvailabilityRequest < Struct.new(
|
83
|
+
:domain_name,
|
84
|
+
:idn_lang_code)
|
85
|
+
include Aws::Structure
|
86
|
+
end
|
87
|
+
|
88
|
+
# The CheckDomainAvailability response includes the following elements.
|
89
|
+
# @!attribute [rw] availability
|
90
|
+
# Whether the domain name is available for registering.
|
91
|
+
#
|
92
|
+
# <note markdown="1"> You can only register domains designated as `AVAILABLE`.
|
93
|
+
#
|
94
|
+
# </note>
|
95
|
+
#
|
96
|
+
# Type: String
|
97
|
+
#
|
98
|
+
# Valid values:
|
99
|
+
#
|
100
|
+
# * `AVAILABLE` – The domain name is available.
|
101
|
+
# * `AVAILABLE_RESERVED` – The domain name is reserved under specific
|
102
|
+
# conditions.
|
103
|
+
# * `AVAILABLE_PREORDER` – The domain name is available and can be
|
104
|
+
# preordered.
|
105
|
+
# * `UNAVAILABLE` – The domain name is not available.
|
106
|
+
# * `UNAVAILABLE_PREMIUM` – The domain name is not available.
|
107
|
+
# * `UNAVAILABLE_RESTRICTED` – The domain name is forbidden.
|
108
|
+
# * `RESERVED` – The domain name has been reserved for another person
|
109
|
+
# or organization.
|
110
|
+
# * `DONT_KNOW` – The TLD registry didn't reply with a definitive
|
111
|
+
# answer about whether the domain name is available. Amazon Route 53
|
112
|
+
# can return this response for a variety of reasons, for example,
|
113
|
+
# the registry is performing maintenance. Try again later.
|
114
|
+
# @return [String]
|
115
|
+
class CheckDomainAvailabilityResponse < Struct.new(
|
116
|
+
:availability)
|
117
|
+
include Aws::Structure
|
118
|
+
end
|
119
|
+
|
120
|
+
# ContactDetail includes the following elements.
|
121
|
+
# @note When making an API call, pass ContactDetail
|
122
|
+
# data as a hash:
|
123
|
+
#
|
124
|
+
# {
|
125
|
+
# first_name: "ContactName",
|
126
|
+
# last_name: "ContactName",
|
127
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
128
|
+
# organization_name: "ContactName",
|
129
|
+
# address_line_1: "AddressLine",
|
130
|
+
# address_line_2: "AddressLine",
|
131
|
+
# city: "City",
|
132
|
+
# state: "State",
|
133
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
134
|
+
# zip_code: "ZipCode",
|
135
|
+
# phone_number: "ContactNumber",
|
136
|
+
# email: "Email",
|
137
|
+
# fax: "ContactNumber",
|
138
|
+
# extra_params: [
|
139
|
+
# {
|
140
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
141
|
+
# value: "ExtraParamValue", # required
|
142
|
+
# },
|
143
|
+
# ],
|
144
|
+
# }
|
145
|
+
# @!attribute [rw] first_name
|
146
|
+
# First name of contact.
|
147
|
+
#
|
148
|
+
# Type: String
|
149
|
+
#
|
150
|
+
# Default: None
|
151
|
+
#
|
152
|
+
# Constraints: Maximum 255 characters.
|
153
|
+
#
|
154
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
155
|
+
#
|
156
|
+
# Required: Yes
|
157
|
+
# @return [String]
|
158
|
+
#
|
159
|
+
# @!attribute [rw] last_name
|
160
|
+
# Last name of contact.
|
161
|
+
#
|
162
|
+
# Type: String
|
163
|
+
#
|
164
|
+
# Default: None
|
165
|
+
#
|
166
|
+
# Constraints: Maximum 255 characters.
|
167
|
+
#
|
168
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
169
|
+
#
|
170
|
+
# Required: Yes
|
171
|
+
# @return [String]
|
172
|
+
#
|
173
|
+
# @!attribute [rw] contact_type
|
174
|
+
# Indicates whether the contact is a person, company, association, or
|
175
|
+
# public organization. If you choose an option other than `PERSON`,
|
176
|
+
# you must enter an organization name, and you can't enable privacy
|
177
|
+
# protection for the contact.
|
178
|
+
#
|
179
|
+
# Type: String
|
180
|
+
#
|
181
|
+
# Default: None
|
182
|
+
#
|
183
|
+
# Constraints: Maximum 255 characters.
|
184
|
+
#
|
185
|
+
# Valid values: `PERSON` \| `COMPANY` \| `ASSOCIATION` \|
|
186
|
+
# `PUBLIC_BODY`
|
187
|
+
#
|
188
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
189
|
+
#
|
190
|
+
# Required: Yes
|
191
|
+
# @return [String]
|
192
|
+
#
|
193
|
+
# @!attribute [rw] organization_name
|
194
|
+
# Name of the organization for contact types other than `PERSON`.
|
195
|
+
#
|
196
|
+
# Type: String
|
197
|
+
#
|
198
|
+
# Default: None
|
199
|
+
#
|
200
|
+
# Constraints: Maximum 255 characters. Contact type must not be
|
201
|
+
# `PERSON`.
|
202
|
+
#
|
203
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
204
|
+
#
|
205
|
+
# Required: No
|
206
|
+
# @return [String]
|
207
|
+
#
|
208
|
+
# @!attribute [rw] address_line_1
|
209
|
+
# First line of the contact's address.
|
210
|
+
#
|
211
|
+
# Type: String
|
212
|
+
#
|
213
|
+
# Default: None
|
214
|
+
#
|
215
|
+
# Constraints: Maximum 255 characters.
|
216
|
+
#
|
217
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
218
|
+
#
|
219
|
+
# Required: Yes
|
220
|
+
# @return [String]
|
221
|
+
#
|
222
|
+
# @!attribute [rw] address_line_2
|
223
|
+
# Second line of contact's address, if any.
|
224
|
+
#
|
225
|
+
# Type: String
|
226
|
+
#
|
227
|
+
# Default: None
|
228
|
+
#
|
229
|
+
# Constraints: Maximum 255 characters.
|
230
|
+
#
|
231
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
232
|
+
#
|
233
|
+
# Required: No
|
234
|
+
# @return [String]
|
235
|
+
#
|
236
|
+
# @!attribute [rw] city
|
237
|
+
# The city of the contact's address.
|
238
|
+
#
|
239
|
+
# Type: String
|
240
|
+
#
|
241
|
+
# Default: None
|
242
|
+
#
|
243
|
+
# Constraints: Maximum 255 characters.
|
244
|
+
#
|
245
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
246
|
+
#
|
247
|
+
# Required: Yes
|
248
|
+
# @return [String]
|
249
|
+
#
|
250
|
+
# @!attribute [rw] state
|
251
|
+
# The state or province of the contact's city.
|
252
|
+
#
|
253
|
+
# Type: String
|
254
|
+
#
|
255
|
+
# Default: None
|
256
|
+
#
|
257
|
+
# Constraints: Maximum 255 characters.
|
258
|
+
#
|
259
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
260
|
+
#
|
261
|
+
# Required: No
|
262
|
+
# @return [String]
|
263
|
+
#
|
264
|
+
# @!attribute [rw] country_code
|
265
|
+
# Code for the country of the contact's address.
|
266
|
+
#
|
267
|
+
# Type: String
|
268
|
+
#
|
269
|
+
# Default: None
|
270
|
+
#
|
271
|
+
# Constraints: Maximum 255 characters.
|
272
|
+
#
|
273
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
274
|
+
#
|
275
|
+
# Required: Yes
|
276
|
+
# @return [String]
|
277
|
+
#
|
278
|
+
# @!attribute [rw] zip_code
|
279
|
+
# The zip or postal code of the contact's address.
|
280
|
+
#
|
281
|
+
# Type: String
|
282
|
+
#
|
283
|
+
# Default: None
|
284
|
+
#
|
285
|
+
# Constraints: Maximum 255 characters.
|
286
|
+
#
|
287
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
288
|
+
#
|
289
|
+
# Required: No
|
290
|
+
# @return [String]
|
291
|
+
#
|
292
|
+
# @!attribute [rw] phone_number
|
293
|
+
# The phone number of the contact.
|
294
|
+
#
|
295
|
+
# Type: String
|
296
|
+
#
|
297
|
+
# Default: None
|
298
|
+
#
|
299
|
+
# Constraints: Phone number must be specified in the format
|
300
|
+
# "+\[country dialing code\].\[number including any area code>\]".
|
301
|
+
# For example, a US phone number might appear as `"+1.1234567890"`.
|
302
|
+
#
|
303
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
304
|
+
#
|
305
|
+
# Required: Yes
|
306
|
+
# @return [String]
|
307
|
+
#
|
308
|
+
# @!attribute [rw] email
|
309
|
+
# Email address of the contact.
|
310
|
+
#
|
311
|
+
# Type: String
|
312
|
+
#
|
313
|
+
# Default: None
|
314
|
+
#
|
315
|
+
# Constraints: Maximum 254 characters.
|
316
|
+
#
|
317
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
318
|
+
#
|
319
|
+
# Required: Yes
|
320
|
+
# @return [String]
|
321
|
+
#
|
322
|
+
# @!attribute [rw] fax
|
323
|
+
# Fax number of the contact.
|
324
|
+
#
|
325
|
+
# Type: String
|
326
|
+
#
|
327
|
+
# Default: None
|
328
|
+
#
|
329
|
+
# Constraints: Phone number must be specified in the format
|
330
|
+
# "+\[country dialing code\].\[number including any area code\]".
|
331
|
+
# For example, a US phone number might appear as `"+1.1234567890"`.
|
332
|
+
#
|
333
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
334
|
+
#
|
335
|
+
# Required: No
|
336
|
+
# @return [String]
|
337
|
+
#
|
338
|
+
# @!attribute [rw] extra_params
|
339
|
+
# A list of name-value pairs for parameters required by certain
|
340
|
+
# top-level domains.
|
341
|
+
#
|
342
|
+
# Type: Complex
|
343
|
+
#
|
344
|
+
# Default: None
|
345
|
+
#
|
346
|
+
# Parents: `RegistrantContact`, `AdminContact`, `TechContact`
|
347
|
+
#
|
348
|
+
# Children: `Name`, `Value`
|
349
|
+
#
|
350
|
+
# Required: No
|
351
|
+
# @return [Array<Types::ExtraParam>]
|
352
|
+
class ContactDetail < Struct.new(
|
353
|
+
:first_name,
|
354
|
+
:last_name,
|
355
|
+
:contact_type,
|
356
|
+
:organization_name,
|
357
|
+
:address_line_1,
|
358
|
+
:address_line_2,
|
359
|
+
:city,
|
360
|
+
:state,
|
361
|
+
:country_code,
|
362
|
+
:zip_code,
|
363
|
+
:phone_number,
|
364
|
+
:email,
|
365
|
+
:fax,
|
366
|
+
:extra_params)
|
367
|
+
include Aws::Structure
|
368
|
+
end
|
369
|
+
|
370
|
+
# The DeleteTagsForDomainRequest includes the following elements.
|
371
|
+
# @note When making an API call, pass DeleteTagsForDomainRequest
|
372
|
+
# data as a hash:
|
373
|
+
#
|
374
|
+
# {
|
375
|
+
# domain_name: "DomainName", # required
|
376
|
+
# tags_to_delete: ["TagKey"], # required
|
377
|
+
# }
|
378
|
+
# @!attribute [rw] domain_name
|
379
|
+
# The domain for which you want to delete one or more tags.
|
380
|
+
#
|
381
|
+
# The name of a domain.
|
382
|
+
#
|
383
|
+
# Type: String
|
384
|
+
#
|
385
|
+
# Default: None
|
386
|
+
#
|
387
|
+
# Constraints: The domain name can contain only the letters a through
|
388
|
+
# z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only
|
389
|
+
# when they're surrounded by letters, numbers, or other hyphens. You
|
390
|
+
# can't specify a hyphen at the beginning or end of a label. To
|
391
|
+
# specify an Internationalized Domain Name, you must convert the name
|
392
|
+
# to Punycode.
|
393
|
+
#
|
394
|
+
# Required: Yes
|
395
|
+
# @return [String]
|
396
|
+
#
|
397
|
+
# @!attribute [rw] tags_to_delete
|
398
|
+
# A list of tag keys to delete.
|
399
|
+
#
|
400
|
+
# Type: A list that contains the keys of the tags that you want to
|
401
|
+
# delete.
|
402
|
+
#
|
403
|
+
# Default: None
|
404
|
+
#
|
405
|
+
# Required: No
|
406
|
+
#
|
407
|
+
# '>
|
408
|
+
# @return [Array<String>]
|
409
|
+
class DeleteTagsForDomainRequest < Struct.new(
|
410
|
+
:domain_name,
|
411
|
+
:tags_to_delete)
|
412
|
+
include Aws::Structure
|
413
|
+
end
|
414
|
+
|
415
|
+
class DeleteTagsForDomainResponse < Aws::EmptyStructure; end
|
416
|
+
|
417
|
+
# @note When making an API call, pass DisableDomainAutoRenewRequest
|
418
|
+
# data as a hash:
|
419
|
+
#
|
420
|
+
# {
|
421
|
+
# domain_name: "DomainName", # required
|
422
|
+
# }
|
423
|
+
# @!attribute [rw] domain_name
|
424
|
+
# @return [String]
|
425
|
+
class DisableDomainAutoRenewRequest < Struct.new(
|
426
|
+
:domain_name)
|
427
|
+
include Aws::Structure
|
428
|
+
end
|
429
|
+
|
430
|
+
class DisableDomainAutoRenewResponse < Aws::EmptyStructure; end
|
431
|
+
|
432
|
+
# The DisableDomainTransferLock request includes the following element.
|
433
|
+
# @note When making an API call, pass DisableDomainTransferLockRequest
|
434
|
+
# data as a hash:
|
435
|
+
#
|
436
|
+
# {
|
437
|
+
# domain_name: "DomainName", # required
|
438
|
+
# }
|
439
|
+
# @!attribute [rw] domain_name
|
440
|
+
# The name of a domain.
|
441
|
+
#
|
442
|
+
# Type: String
|
443
|
+
#
|
444
|
+
# Default: None
|
445
|
+
#
|
446
|
+
# Constraints: The domain name can contain only the letters a through
|
447
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
448
|
+
# Names are not supported.
|
449
|
+
#
|
450
|
+
# Required: Yes
|
451
|
+
# @return [String]
|
452
|
+
class DisableDomainTransferLockRequest < Struct.new(
|
453
|
+
:domain_name)
|
454
|
+
include Aws::Structure
|
455
|
+
end
|
456
|
+
|
457
|
+
# The DisableDomainTransferLock response includes the following element.
|
458
|
+
# @!attribute [rw] operation_id
|
459
|
+
# Identifier for tracking the progress of the request. To use this ID
|
460
|
+
# to query the operation status, use GetOperationDetail.
|
461
|
+
#
|
462
|
+
# Type: String
|
463
|
+
#
|
464
|
+
# Default: None
|
465
|
+
#
|
466
|
+
# Constraints: Maximum 255 characters.
|
467
|
+
# @return [String]
|
468
|
+
class DisableDomainTransferLockResponse < Struct.new(
|
469
|
+
:operation_id)
|
470
|
+
include Aws::Structure
|
471
|
+
end
|
472
|
+
|
473
|
+
# @!attribute [rw] domain_name
|
474
|
+
# @return [String]
|
475
|
+
#
|
476
|
+
# @!attribute [rw] availability
|
477
|
+
# @return [String]
|
478
|
+
class DomainSuggestion < Struct.new(
|
479
|
+
:domain_name,
|
480
|
+
:availability)
|
481
|
+
include Aws::Structure
|
482
|
+
end
|
483
|
+
|
484
|
+
# @!attribute [rw] domain_name
|
485
|
+
# The name of a domain.
|
486
|
+
#
|
487
|
+
# Type: String
|
488
|
+
# @return [String]
|
489
|
+
#
|
490
|
+
# @!attribute [rw] auto_renew
|
491
|
+
# Indicates whether the domain is automatically renewed upon
|
492
|
+
# expiration.
|
493
|
+
#
|
494
|
+
# Type: Boolean
|
495
|
+
#
|
496
|
+
# Valid values: `True` \| `False`
|
497
|
+
# @return [Boolean]
|
498
|
+
#
|
499
|
+
# @!attribute [rw] transfer_lock
|
500
|
+
# Indicates whether a domain is locked from unauthorized transfer to
|
501
|
+
# another party.
|
502
|
+
#
|
503
|
+
# Type: Boolean
|
504
|
+
#
|
505
|
+
# Valid values: `True` \| `False`
|
506
|
+
# @return [Boolean]
|
507
|
+
#
|
508
|
+
# @!attribute [rw] expiry
|
509
|
+
# Expiration date of the domain in Coordinated Universal Time (UTC).
|
510
|
+
#
|
511
|
+
# Type: Long
|
512
|
+
# @return [Time]
|
513
|
+
class DomainSummary < Struct.new(
|
514
|
+
:domain_name,
|
515
|
+
:auto_renew,
|
516
|
+
:transfer_lock,
|
517
|
+
:expiry)
|
518
|
+
include Aws::Structure
|
519
|
+
end
|
520
|
+
|
521
|
+
# @note When making an API call, pass EnableDomainAutoRenewRequest
|
522
|
+
# data as a hash:
|
523
|
+
#
|
524
|
+
# {
|
525
|
+
# domain_name: "DomainName", # required
|
526
|
+
# }
|
527
|
+
# @!attribute [rw] domain_name
|
528
|
+
# @return [String]
|
529
|
+
class EnableDomainAutoRenewRequest < Struct.new(
|
530
|
+
:domain_name)
|
531
|
+
include Aws::Structure
|
532
|
+
end
|
533
|
+
|
534
|
+
class EnableDomainAutoRenewResponse < Aws::EmptyStructure; end
|
535
|
+
|
536
|
+
# The EnableDomainTransferLock request includes the following element.
|
537
|
+
# @note When making an API call, pass EnableDomainTransferLockRequest
|
538
|
+
# data as a hash:
|
539
|
+
#
|
540
|
+
# {
|
541
|
+
# domain_name: "DomainName", # required
|
542
|
+
# }
|
543
|
+
# @!attribute [rw] domain_name
|
544
|
+
# The name of a domain.
|
545
|
+
#
|
546
|
+
# Type: String
|
547
|
+
#
|
548
|
+
# Default: None
|
549
|
+
#
|
550
|
+
# Constraints: The domain name can contain only the letters a through
|
551
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
552
|
+
# Names are not supported.
|
553
|
+
#
|
554
|
+
# Required: Yes
|
555
|
+
# @return [String]
|
556
|
+
class EnableDomainTransferLockRequest < Struct.new(
|
557
|
+
:domain_name)
|
558
|
+
include Aws::Structure
|
559
|
+
end
|
560
|
+
|
561
|
+
# The EnableDomainTransferLock response includes the following elements.
|
562
|
+
# @!attribute [rw] operation_id
|
563
|
+
# Identifier for tracking the progress of the request. To use this ID
|
564
|
+
# to query the operation status, use GetOperationDetail.
|
565
|
+
#
|
566
|
+
# Type: String
|
567
|
+
#
|
568
|
+
# Default: None
|
569
|
+
#
|
570
|
+
# Constraints: Maximum 255 characters.
|
571
|
+
# @return [String]
|
572
|
+
class EnableDomainTransferLockResponse < Struct.new(
|
573
|
+
:operation_id)
|
574
|
+
include Aws::Structure
|
575
|
+
end
|
576
|
+
|
577
|
+
# ExtraParam includes the following elements.
|
578
|
+
# @note When making an API call, pass ExtraParam
|
579
|
+
# data as a hash:
|
580
|
+
#
|
581
|
+
# {
|
582
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
583
|
+
# value: "ExtraParamValue", # required
|
584
|
+
# }
|
585
|
+
# @!attribute [rw] name
|
586
|
+
# Name of the additional parameter required by the top-level domain.
|
587
|
+
#
|
588
|
+
# Type: String
|
589
|
+
#
|
590
|
+
# Default: None
|
591
|
+
#
|
592
|
+
# Valid values: `DUNS_NUMBER` \| `BRAND_NUMBER` \| `BIRTH_DEPARTMENT`
|
593
|
+
# \| `BIRTH_DATE_IN_YYYY_MM_DD` \| `BIRTH_COUNTRY` \| `BIRTH_CITY` \|
|
594
|
+
# `DOCUMENT_NUMBER` \| `AU_ID_NUMBER` \| `AU_ID_TYPE` \|
|
595
|
+
# `CA_LEGAL_TYPE` \| `CA_BUSINESS_ENTITY_TYPE` \|`ES_IDENTIFICATION`
|
596
|
+
# \| `ES_IDENTIFICATION_TYPE` \| `ES_LEGAL_FORM` \|
|
597
|
+
# `FI_BUSINESS_NUMBER` \| `FI_ID_NUMBER` \| `IT_PIN` \|
|
598
|
+
# `RU_PASSPORT_DATA` \| `SE_ID_NUMBER` \| `SG_ID_NUMBER` \|
|
599
|
+
# `VAT_NUMBER`
|
600
|
+
#
|
601
|
+
# Parent: `ExtraParams`
|
602
|
+
#
|
603
|
+
# Required: Yes
|
604
|
+
# @return [String]
|
605
|
+
#
|
606
|
+
# @!attribute [rw] value
|
607
|
+
# Values corresponding to the additional parameter names required by
|
608
|
+
# some top-level domains.
|
609
|
+
#
|
610
|
+
# Type: String
|
611
|
+
#
|
612
|
+
# Default: None
|
613
|
+
#
|
614
|
+
# Constraints: Maximum 2048 characters.
|
615
|
+
#
|
616
|
+
# Parent: `ExtraParams`
|
617
|
+
#
|
618
|
+
# Required: Yes
|
619
|
+
# @return [String]
|
620
|
+
class ExtraParam < Struct.new(
|
621
|
+
:name,
|
622
|
+
:value)
|
623
|
+
include Aws::Structure
|
624
|
+
end
|
625
|
+
|
626
|
+
# @note When making an API call, pass GetContactReachabilityStatusRequest
|
627
|
+
# data as a hash:
|
628
|
+
#
|
629
|
+
# {
|
630
|
+
# domain_name: "DomainName",
|
631
|
+
# }
|
632
|
+
# @!attribute [rw] domain_name
|
633
|
+
# The name of the domain for which you want to know whether the
|
634
|
+
# registrant contact has confirmed that the email address is valid.
|
635
|
+
#
|
636
|
+
# Type: String
|
637
|
+
#
|
638
|
+
# Default: None
|
639
|
+
#
|
640
|
+
# Required: Yes
|
641
|
+
# @return [String]
|
642
|
+
class GetContactReachabilityStatusRequest < Struct.new(
|
643
|
+
:domain_name)
|
644
|
+
include Aws::Structure
|
645
|
+
end
|
646
|
+
|
647
|
+
# @!attribute [rw] domain_name
|
648
|
+
# The domain name for which you requested the reachability status.
|
649
|
+
# @return [String]
|
650
|
+
#
|
651
|
+
# @!attribute [rw] status
|
652
|
+
# Whether the registrant contact has responded. `PENDING` indicates
|
653
|
+
# that we sent the confirmation email and haven't received a response
|
654
|
+
# yet, `DONE` indicates that we sent the email and got confirmation
|
655
|
+
# from the registrant contact, and `EXPIRED` indicates that the time
|
656
|
+
# limit expired before the registrant contact responded.
|
657
|
+
#
|
658
|
+
# Type: String
|
659
|
+
#
|
660
|
+
# Valid values: `PENDING`, `DONE`, `EXPIRED`
|
661
|
+
# @return [String]
|
662
|
+
class GetContactReachabilityStatusResponse < Struct.new(
|
663
|
+
:domain_name,
|
664
|
+
:status)
|
665
|
+
include Aws::Structure
|
666
|
+
end
|
667
|
+
|
668
|
+
# The GetDomainDetail request includes the following element.
|
669
|
+
# @note When making an API call, pass GetDomainDetailRequest
|
670
|
+
# data as a hash:
|
671
|
+
#
|
672
|
+
# {
|
673
|
+
# domain_name: "DomainName", # required
|
674
|
+
# }
|
675
|
+
# @!attribute [rw] domain_name
|
676
|
+
# The name of a domain.
|
677
|
+
#
|
678
|
+
# Type: String
|
679
|
+
#
|
680
|
+
# Default: None
|
681
|
+
#
|
682
|
+
# Constraints: The domain name can contain only the letters a through
|
683
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
684
|
+
# Names are not supported.
|
685
|
+
#
|
686
|
+
# Required: Yes
|
687
|
+
# @return [String]
|
688
|
+
class GetDomainDetailRequest < Struct.new(
|
689
|
+
:domain_name)
|
690
|
+
include Aws::Structure
|
691
|
+
end
|
692
|
+
|
693
|
+
# The GetDomainDetail response includes the following elements.
|
694
|
+
# @!attribute [rw] domain_name
|
695
|
+
# The name of a domain.
|
696
|
+
#
|
697
|
+
# Type: String
|
698
|
+
# @return [String]
|
699
|
+
#
|
700
|
+
# @!attribute [rw] nameservers
|
701
|
+
# The name of the domain.
|
702
|
+
#
|
703
|
+
# Type: String
|
704
|
+
# @return [Array<Types::Nameserver>]
|
705
|
+
#
|
706
|
+
# @!attribute [rw] auto_renew
|
707
|
+
# Specifies whether the domain registration is set to renew
|
708
|
+
# automatically.
|
709
|
+
#
|
710
|
+
# Type: Boolean
|
711
|
+
# @return [Boolean]
|
712
|
+
#
|
713
|
+
# @!attribute [rw] admin_contact
|
714
|
+
# Provides details about the domain administrative contact.
|
715
|
+
#
|
716
|
+
# Type: Complex
|
717
|
+
#
|
718
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
719
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
720
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
721
|
+
# `ExtraParams`
|
722
|
+
# @return [Types::ContactDetail]
|
723
|
+
#
|
724
|
+
# @!attribute [rw] registrant_contact
|
725
|
+
# Provides details about the domain registrant.
|
726
|
+
#
|
727
|
+
# Type: Complex
|
728
|
+
#
|
729
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
730
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
731
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
732
|
+
# `ExtraParams`
|
733
|
+
# @return [Types::ContactDetail]
|
734
|
+
#
|
735
|
+
# @!attribute [rw] tech_contact
|
736
|
+
# Provides details about the domain technical contact.
|
737
|
+
#
|
738
|
+
# Type: Complex
|
739
|
+
#
|
740
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
741
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
742
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
743
|
+
# `ExtraParams`
|
744
|
+
# @return [Types::ContactDetail]
|
745
|
+
#
|
746
|
+
# @!attribute [rw] admin_privacy
|
747
|
+
# Specifies whether contact information for the admin contact is
|
748
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
749
|
+
# is") queries will return contact information for our registrar
|
750
|
+
# partner, Gandi, instead of the contact information that you enter.
|
751
|
+
#
|
752
|
+
# Type: Boolean
|
753
|
+
# @return [Boolean]
|
754
|
+
#
|
755
|
+
# @!attribute [rw] registrant_privacy
|
756
|
+
# Specifies whether contact information for the registrant contact is
|
757
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
758
|
+
# is") queries will return contact information for our registrar
|
759
|
+
# partner, Gandi, instead of the contact information that you enter.
|
760
|
+
#
|
761
|
+
# Type: Boolean
|
762
|
+
# @return [Boolean]
|
763
|
+
#
|
764
|
+
# @!attribute [rw] tech_privacy
|
765
|
+
# Specifies whether contact information for the tech contact is
|
766
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
767
|
+
# is") queries will return contact information for our registrar
|
768
|
+
# partner, Gandi, instead of the contact information that you enter.
|
769
|
+
#
|
770
|
+
# Type: Boolean
|
771
|
+
# @return [Boolean]
|
772
|
+
#
|
773
|
+
# @!attribute [rw] registrar_name
|
774
|
+
# Name of the registrar of the domain as identified in the registry.
|
775
|
+
# Amazon Route 53 domains are registered by registrar Gandi. The value
|
776
|
+
# is `"GANDI SAS"`.
|
777
|
+
#
|
778
|
+
# Type: String
|
779
|
+
# @return [String]
|
780
|
+
#
|
781
|
+
# @!attribute [rw] who_is_server
|
782
|
+
# The fully qualified name of the WHOIS server that can answer the
|
783
|
+
# WHOIS query for the domain.
|
784
|
+
#
|
785
|
+
# Type: String
|
786
|
+
# @return [String]
|
787
|
+
#
|
788
|
+
# @!attribute [rw] registrar_url
|
789
|
+
# Web address of the registrar.
|
790
|
+
#
|
791
|
+
# Type: String
|
792
|
+
# @return [String]
|
793
|
+
#
|
794
|
+
# @!attribute [rw] abuse_contact_email
|
795
|
+
# Email address to contact to report incorrect contact information for
|
796
|
+
# a domain, to report that the domain is being used to send spam, to
|
797
|
+
# report that someone is cybersquatting on a domain name, or report
|
798
|
+
# some other type of abuse.
|
799
|
+
#
|
800
|
+
# Type: String
|
801
|
+
# @return [String]
|
802
|
+
#
|
803
|
+
# @!attribute [rw] abuse_contact_phone
|
804
|
+
# Phone number for reporting abuse.
|
805
|
+
#
|
806
|
+
# Type: String
|
807
|
+
# @return [String]
|
808
|
+
#
|
809
|
+
# @!attribute [rw] registry_domain_id
|
810
|
+
# Reserved for future use.
|
811
|
+
# @return [String]
|
812
|
+
#
|
813
|
+
# @!attribute [rw] creation_date
|
814
|
+
# The date when the domain was created as found in the response to a
|
815
|
+
# WHOIS query. The date format is Unix time.
|
816
|
+
# @return [Time]
|
817
|
+
#
|
818
|
+
# @!attribute [rw] updated_date
|
819
|
+
# The last updated date of the domain as found in the response to a
|
820
|
+
# WHOIS query. The date format is Unix time.
|
821
|
+
# @return [Time]
|
822
|
+
#
|
823
|
+
# @!attribute [rw] expiration_date
|
824
|
+
# The date when the registration for the domain is set to expire. The
|
825
|
+
# date format is Unix time.
|
826
|
+
# @return [Time]
|
827
|
+
#
|
828
|
+
# @!attribute [rw] reseller
|
829
|
+
# Reseller of the domain. Domains registered or transferred using
|
830
|
+
# Amazon Route 53 domains will have `"Amazon"` as the reseller.
|
831
|
+
#
|
832
|
+
# Type: String
|
833
|
+
# @return [String]
|
834
|
+
#
|
835
|
+
# @!attribute [rw] dns_sec
|
836
|
+
# Reserved for future use.
|
837
|
+
# @return [String]
|
838
|
+
#
|
839
|
+
# @!attribute [rw] status_list
|
840
|
+
# An array of domain name status codes, also known as Extensible
|
841
|
+
# Provisioning Protocol (EPP) status codes.
|
842
|
+
#
|
843
|
+
# ICANN, the organization that maintains a central database of domain
|
844
|
+
# names, has developed a set of domain name status codes that tell you
|
845
|
+
# the status of a variety of operations on a domain name, for example,
|
846
|
+
# registering a domain name, transferring a domain name to another
|
847
|
+
# registrar, renewing the registration for a domain name, and so on.
|
848
|
+
# All registrars use this same set of status codes.
|
849
|
+
#
|
850
|
+
# For a current list of domain name status codes and an explanation of
|
851
|
+
# what each code means, go to the [ICANN website][1] and search for
|
852
|
+
# `epp status codes`. (Search on the ICANN website; web searches
|
853
|
+
# sometimes return an old version of the document.)
|
854
|
+
#
|
855
|
+
# Type: Array of String
|
856
|
+
#
|
857
|
+
#
|
858
|
+
#
|
859
|
+
# [1]: https://www.icann.org/
|
860
|
+
# @return [Array<String>]
|
861
|
+
class GetDomainDetailResponse < Struct.new(
|
862
|
+
:domain_name,
|
863
|
+
:nameservers,
|
864
|
+
:auto_renew,
|
865
|
+
:admin_contact,
|
866
|
+
:registrant_contact,
|
867
|
+
:tech_contact,
|
868
|
+
:admin_privacy,
|
869
|
+
:registrant_privacy,
|
870
|
+
:tech_privacy,
|
871
|
+
:registrar_name,
|
872
|
+
:who_is_server,
|
873
|
+
:registrar_url,
|
874
|
+
:abuse_contact_email,
|
875
|
+
:abuse_contact_phone,
|
876
|
+
:registry_domain_id,
|
877
|
+
:creation_date,
|
878
|
+
:updated_date,
|
879
|
+
:expiration_date,
|
880
|
+
:reseller,
|
881
|
+
:dns_sec,
|
882
|
+
:status_list)
|
883
|
+
include Aws::Structure
|
884
|
+
end
|
885
|
+
|
886
|
+
# @note When making an API call, pass GetDomainSuggestionsRequest
|
887
|
+
# data as a hash:
|
888
|
+
#
|
889
|
+
# {
|
890
|
+
# domain_name: "DomainName", # required
|
891
|
+
# suggestion_count: 1, # required
|
892
|
+
# only_available: false, # required
|
893
|
+
# }
|
894
|
+
# @!attribute [rw] domain_name
|
895
|
+
# @return [String]
|
896
|
+
#
|
897
|
+
# @!attribute [rw] suggestion_count
|
898
|
+
# @return [Integer]
|
899
|
+
#
|
900
|
+
# @!attribute [rw] only_available
|
901
|
+
# @return [Boolean]
|
902
|
+
class GetDomainSuggestionsRequest < Struct.new(
|
903
|
+
:domain_name,
|
904
|
+
:suggestion_count,
|
905
|
+
:only_available)
|
906
|
+
include Aws::Structure
|
907
|
+
end
|
908
|
+
|
909
|
+
# @!attribute [rw] suggestions_list
|
910
|
+
# @return [Array<Types::DomainSuggestion>]
|
911
|
+
class GetDomainSuggestionsResponse < Struct.new(
|
912
|
+
:suggestions_list)
|
913
|
+
include Aws::Structure
|
914
|
+
end
|
915
|
+
|
916
|
+
# The GetOperationDetail request includes the following element.
|
917
|
+
# @note When making an API call, pass GetOperationDetailRequest
|
918
|
+
# data as a hash:
|
919
|
+
#
|
920
|
+
# {
|
921
|
+
# operation_id: "OperationId", # required
|
922
|
+
# }
|
923
|
+
# @!attribute [rw] operation_id
|
924
|
+
# The identifier for the operation for which you want to get the
|
925
|
+
# status. Amazon Route 53 returned the identifier in the response to
|
926
|
+
# the original request.
|
927
|
+
#
|
928
|
+
# Type: String
|
929
|
+
#
|
930
|
+
# Default: None
|
931
|
+
#
|
932
|
+
# Required: Yes
|
933
|
+
# @return [String]
|
934
|
+
class GetOperationDetailRequest < Struct.new(
|
935
|
+
:operation_id)
|
936
|
+
include Aws::Structure
|
937
|
+
end
|
938
|
+
|
939
|
+
# The GetOperationDetail response includes the following elements.
|
940
|
+
# @!attribute [rw] operation_id
|
941
|
+
# The identifier for the operation.
|
942
|
+
#
|
943
|
+
# Type: String
|
944
|
+
# @return [String]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] status
|
947
|
+
# The current status of the requested operation in the system.
|
948
|
+
#
|
949
|
+
# Type: String
|
950
|
+
# @return [String]
|
951
|
+
#
|
952
|
+
# @!attribute [rw] message
|
953
|
+
# Detailed information on the status including possible errors.
|
954
|
+
#
|
955
|
+
# Type: String
|
956
|
+
# @return [String]
|
957
|
+
#
|
958
|
+
# @!attribute [rw] domain_name
|
959
|
+
# The name of a domain.
|
960
|
+
#
|
961
|
+
# Type: String
|
962
|
+
# @return [String]
|
963
|
+
#
|
964
|
+
# @!attribute [rw] type
|
965
|
+
# The type of operation that was requested.
|
966
|
+
#
|
967
|
+
# Type: String
|
968
|
+
# @return [String]
|
969
|
+
#
|
970
|
+
# @!attribute [rw] submitted_date
|
971
|
+
# The date when the request was submitted.
|
972
|
+
# @return [Time]
|
973
|
+
class GetOperationDetailResponse < Struct.new(
|
974
|
+
:operation_id,
|
975
|
+
:status,
|
976
|
+
:message,
|
977
|
+
:domain_name,
|
978
|
+
:type,
|
979
|
+
:submitted_date)
|
980
|
+
include Aws::Structure
|
981
|
+
end
|
982
|
+
|
983
|
+
# The ListDomains request includes the following elements.
|
984
|
+
# @note When making an API call, pass ListDomainsRequest
|
985
|
+
# data as a hash:
|
986
|
+
#
|
987
|
+
# {
|
988
|
+
# marker: "PageMarker",
|
989
|
+
# max_items: 1,
|
990
|
+
# }
|
991
|
+
# @!attribute [rw] marker
|
992
|
+
# For an initial request for a list of domains, omit this element. If
|
993
|
+
# the number of domains that are associated with the current AWS
|
994
|
+
# account is greater than the value that you specified for `MaxItems`,
|
995
|
+
# you can use `Marker` to return additional domains. Get the value of
|
996
|
+
# `NextPageMarker` from the previous response, and submit another
|
997
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
998
|
+
# element.
|
999
|
+
#
|
1000
|
+
# Type: String
|
1001
|
+
#
|
1002
|
+
# Default: None
|
1003
|
+
#
|
1004
|
+
# Constraints: The marker must match the value specified in the
|
1005
|
+
# previous request.
|
1006
|
+
#
|
1007
|
+
# Required: No
|
1008
|
+
# @return [String]
|
1009
|
+
#
|
1010
|
+
# @!attribute [rw] max_items
|
1011
|
+
# Number of domains to be returned.
|
1012
|
+
#
|
1013
|
+
# Type: Integer
|
1014
|
+
#
|
1015
|
+
# Default: 20
|
1016
|
+
#
|
1017
|
+
# Constraints: A numeral between 1 and 100.
|
1018
|
+
#
|
1019
|
+
# Required: No
|
1020
|
+
# @return [Integer]
|
1021
|
+
class ListDomainsRequest < Struct.new(
|
1022
|
+
:marker,
|
1023
|
+
:max_items)
|
1024
|
+
include Aws::Structure
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
# The ListDomains response includes the following elements.
|
1028
|
+
# @!attribute [rw] domains
|
1029
|
+
# A summary of domains.
|
1030
|
+
#
|
1031
|
+
# Type: Complex type containing a list of domain summaries.
|
1032
|
+
#
|
1033
|
+
# Children: `AutoRenew`, `DomainName`, `Expiry`, `TransferLock`
|
1034
|
+
# @return [Array<Types::DomainSummary>]
|
1035
|
+
#
|
1036
|
+
# @!attribute [rw] next_page_marker
|
1037
|
+
# If there are more domains than you specified for `MaxItems` in the
|
1038
|
+
# request, submit another request and include the value of
|
1039
|
+
# `NextPageMarker` in the value of `Marker`.
|
1040
|
+
#
|
1041
|
+
# Type: String
|
1042
|
+
#
|
1043
|
+
# Parent: `Operations`
|
1044
|
+
# @return [String]
|
1045
|
+
class ListDomainsResponse < Struct.new(
|
1046
|
+
:domains,
|
1047
|
+
:next_page_marker)
|
1048
|
+
include Aws::Structure
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
# The ListOperations request includes the following elements.
|
1052
|
+
# @note When making an API call, pass ListOperationsRequest
|
1053
|
+
# data as a hash:
|
1054
|
+
#
|
1055
|
+
# {
|
1056
|
+
# marker: "PageMarker",
|
1057
|
+
# max_items: 1,
|
1058
|
+
# }
|
1059
|
+
# @!attribute [rw] marker
|
1060
|
+
# For an initial request for a list of operations, omit this element.
|
1061
|
+
# If the number of operations that are not yet complete is greater
|
1062
|
+
# than the value that you specified for `MaxItems`, you can use
|
1063
|
+
# `Marker` to return additional operations. Get the value of
|
1064
|
+
# `NextPageMarker` from the previous response, and submit another
|
1065
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
1066
|
+
# element.
|
1067
|
+
#
|
1068
|
+
# Type: String
|
1069
|
+
#
|
1070
|
+
# Default: None
|
1071
|
+
#
|
1072
|
+
# Required: No
|
1073
|
+
# @return [String]
|
1074
|
+
#
|
1075
|
+
# @!attribute [rw] max_items
|
1076
|
+
# Number of domains to be returned.
|
1077
|
+
#
|
1078
|
+
# Type: Integer
|
1079
|
+
#
|
1080
|
+
# Default: 20
|
1081
|
+
#
|
1082
|
+
# Constraints: A value between 1 and 100.
|
1083
|
+
#
|
1084
|
+
# Required: No
|
1085
|
+
# @return [Integer]
|
1086
|
+
class ListOperationsRequest < Struct.new(
|
1087
|
+
:marker,
|
1088
|
+
:max_items)
|
1089
|
+
include Aws::Structure
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
# The ListOperations response includes the following elements.
|
1093
|
+
# @!attribute [rw] operations
|
1094
|
+
# Lists summaries of the operations.
|
1095
|
+
#
|
1096
|
+
# Type: Complex type containing a list of operation summaries
|
1097
|
+
#
|
1098
|
+
# Children: `OperationId`, `Status`, `SubmittedDate`, `Type`
|
1099
|
+
# @return [Array<Types::OperationSummary>]
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] next_page_marker
|
1102
|
+
# If there are more operations than you specified for `MaxItems` in
|
1103
|
+
# the request, submit another request and include the value of
|
1104
|
+
# `NextPageMarker` in the value of `Marker`.
|
1105
|
+
#
|
1106
|
+
# Type: String
|
1107
|
+
#
|
1108
|
+
# Parent: `Operations`
|
1109
|
+
# @return [String]
|
1110
|
+
class ListOperationsResponse < Struct.new(
|
1111
|
+
:operations,
|
1112
|
+
:next_page_marker)
|
1113
|
+
include Aws::Structure
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
# The ListTagsForDomainRequest includes the following elements.
|
1117
|
+
# @note When making an API call, pass ListTagsForDomainRequest
|
1118
|
+
# data as a hash:
|
1119
|
+
#
|
1120
|
+
# {
|
1121
|
+
# domain_name: "DomainName", # required
|
1122
|
+
# }
|
1123
|
+
# @!attribute [rw] domain_name
|
1124
|
+
# The domain for which you want to get a list of tags.
|
1125
|
+
# @return [String]
|
1126
|
+
class ListTagsForDomainRequest < Struct.new(
|
1127
|
+
:domain_name)
|
1128
|
+
include Aws::Structure
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
# The ListTagsForDomain response includes the following elements.
|
1132
|
+
# @!attribute [rw] tag_list
|
1133
|
+
# A list of the tags that are associated with the specified domain.
|
1134
|
+
#
|
1135
|
+
# Type: A complex type containing a list of tags
|
1136
|
+
#
|
1137
|
+
# Each tag includes the following elements.
|
1138
|
+
#
|
1139
|
+
# * Key
|
1140
|
+
#
|
1141
|
+
# The key (name) of a tag.
|
1142
|
+
#
|
1143
|
+
# Type: String
|
1144
|
+
#
|
1145
|
+
# * Value
|
1146
|
+
#
|
1147
|
+
# The value of a tag.
|
1148
|
+
#
|
1149
|
+
# Type: String
|
1150
|
+
# @return [Array<Types::Tag>]
|
1151
|
+
class ListTagsForDomainResponse < Struct.new(
|
1152
|
+
:tag_list)
|
1153
|
+
include Aws::Structure
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
# Nameserver includes the following elements.
|
1157
|
+
# @note When making an API call, pass Nameserver
|
1158
|
+
# data as a hash:
|
1159
|
+
#
|
1160
|
+
# {
|
1161
|
+
# name: "HostName", # required
|
1162
|
+
# glue_ips: ["GlueIp"],
|
1163
|
+
# }
|
1164
|
+
# @!attribute [rw] name
|
1165
|
+
# The fully qualified host name of the name server.
|
1166
|
+
#
|
1167
|
+
# Type: String
|
1168
|
+
#
|
1169
|
+
# Constraint: Maximum 255 characterss
|
1170
|
+
#
|
1171
|
+
# Parent: `Nameservers`
|
1172
|
+
# @return [String]
|
1173
|
+
#
|
1174
|
+
# @!attribute [rw] glue_ips
|
1175
|
+
# Glue IP address of a name server entry. Glue IP addresses are
|
1176
|
+
# required only when the name of the name server is a subdomain of the
|
1177
|
+
# domain. For example, if your domain is example.com and the name
|
1178
|
+
# server for the domain is ns.example.com, you need to specify the IP
|
1179
|
+
# address for ns.example.com.
|
1180
|
+
#
|
1181
|
+
# Type: List of IP addresses.
|
1182
|
+
#
|
1183
|
+
# Constraints: The list can contain only one IPv4 and one IPv6
|
1184
|
+
# address.
|
1185
|
+
#
|
1186
|
+
# Parent: `Nameservers`
|
1187
|
+
# @return [Array<String>]
|
1188
|
+
class Nameserver < Struct.new(
|
1189
|
+
:name,
|
1190
|
+
:glue_ips)
|
1191
|
+
include Aws::Structure
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
# OperationSummary includes the following elements.
|
1195
|
+
# @!attribute [rw] operation_id
|
1196
|
+
# Identifier returned to track the requested action.
|
1197
|
+
#
|
1198
|
+
# Type: String
|
1199
|
+
# @return [String]
|
1200
|
+
#
|
1201
|
+
# @!attribute [rw] status
|
1202
|
+
# The current status of the requested operation in the system.
|
1203
|
+
#
|
1204
|
+
# Type: String
|
1205
|
+
# @return [String]
|
1206
|
+
#
|
1207
|
+
# @!attribute [rw] type
|
1208
|
+
# Type of the action requested.
|
1209
|
+
#
|
1210
|
+
# Type: String
|
1211
|
+
#
|
1212
|
+
# Valid values: `REGISTER_DOMAIN` \| `DELETE_DOMAIN` \|
|
1213
|
+
# `TRANSFER_IN_DOMAIN` \| `UPDATE_DOMAIN_CONTACT` \|
|
1214
|
+
# `UPDATE_NAMESERVER` \| `CHANGE_PRIVACY_PROTECTION` \| `DOMAIN_LOCK`
|
1215
|
+
# @return [String]
|
1216
|
+
#
|
1217
|
+
# @!attribute [rw] submitted_date
|
1218
|
+
# The date when the request was submitted.
|
1219
|
+
# @return [Time]
|
1220
|
+
class OperationSummary < Struct.new(
|
1221
|
+
:operation_id,
|
1222
|
+
:status,
|
1223
|
+
:type,
|
1224
|
+
:submitted_date)
|
1225
|
+
include Aws::Structure
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
# The RegisterDomain request includes the following elements.
|
1229
|
+
# @note When making an API call, pass RegisterDomainRequest
|
1230
|
+
# data as a hash:
|
1231
|
+
#
|
1232
|
+
# {
|
1233
|
+
# domain_name: "DomainName", # required
|
1234
|
+
# idn_lang_code: "LangCode",
|
1235
|
+
# duration_in_years: 1, # required
|
1236
|
+
# auto_renew: false,
|
1237
|
+
# admin_contact: { # required
|
1238
|
+
# first_name: "ContactName",
|
1239
|
+
# last_name: "ContactName",
|
1240
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1241
|
+
# organization_name: "ContactName",
|
1242
|
+
# address_line_1: "AddressLine",
|
1243
|
+
# address_line_2: "AddressLine",
|
1244
|
+
# city: "City",
|
1245
|
+
# state: "State",
|
1246
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1247
|
+
# zip_code: "ZipCode",
|
1248
|
+
# phone_number: "ContactNumber",
|
1249
|
+
# email: "Email",
|
1250
|
+
# fax: "ContactNumber",
|
1251
|
+
# extra_params: [
|
1252
|
+
# {
|
1253
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1254
|
+
# value: "ExtraParamValue", # required
|
1255
|
+
# },
|
1256
|
+
# ],
|
1257
|
+
# },
|
1258
|
+
# registrant_contact: { # required
|
1259
|
+
# first_name: "ContactName",
|
1260
|
+
# last_name: "ContactName",
|
1261
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1262
|
+
# organization_name: "ContactName",
|
1263
|
+
# address_line_1: "AddressLine",
|
1264
|
+
# address_line_2: "AddressLine",
|
1265
|
+
# city: "City",
|
1266
|
+
# state: "State",
|
1267
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1268
|
+
# zip_code: "ZipCode",
|
1269
|
+
# phone_number: "ContactNumber",
|
1270
|
+
# email: "Email",
|
1271
|
+
# fax: "ContactNumber",
|
1272
|
+
# extra_params: [
|
1273
|
+
# {
|
1274
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1275
|
+
# value: "ExtraParamValue", # required
|
1276
|
+
# },
|
1277
|
+
# ],
|
1278
|
+
# },
|
1279
|
+
# tech_contact: { # required
|
1280
|
+
# first_name: "ContactName",
|
1281
|
+
# last_name: "ContactName",
|
1282
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1283
|
+
# organization_name: "ContactName",
|
1284
|
+
# address_line_1: "AddressLine",
|
1285
|
+
# address_line_2: "AddressLine",
|
1286
|
+
# city: "City",
|
1287
|
+
# state: "State",
|
1288
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1289
|
+
# zip_code: "ZipCode",
|
1290
|
+
# phone_number: "ContactNumber",
|
1291
|
+
# email: "Email",
|
1292
|
+
# fax: "ContactNumber",
|
1293
|
+
# extra_params: [
|
1294
|
+
# {
|
1295
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1296
|
+
# value: "ExtraParamValue", # required
|
1297
|
+
# },
|
1298
|
+
# ],
|
1299
|
+
# },
|
1300
|
+
# privacy_protect_admin_contact: false,
|
1301
|
+
# privacy_protect_registrant_contact: false,
|
1302
|
+
# privacy_protect_tech_contact: false,
|
1303
|
+
# }
|
1304
|
+
# @!attribute [rw] domain_name
|
1305
|
+
# The name of a domain.
|
1306
|
+
#
|
1307
|
+
# Type: String
|
1308
|
+
#
|
1309
|
+
# Default: None
|
1310
|
+
#
|
1311
|
+
# Constraints: The domain name can contain only the letters a through
|
1312
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1313
|
+
# Names are not supported.
|
1314
|
+
#
|
1315
|
+
# Required: Yes
|
1316
|
+
# @return [String]
|
1317
|
+
#
|
1318
|
+
# @!attribute [rw] idn_lang_code
|
1319
|
+
# Reserved for future use.
|
1320
|
+
# @return [String]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] duration_in_years
|
1323
|
+
# The number of years the domain will be registered. Domains are
|
1324
|
+
# registered for a minimum of one year. The maximum period depends on
|
1325
|
+
# the top-level domain.
|
1326
|
+
#
|
1327
|
+
# Type: Integer
|
1328
|
+
#
|
1329
|
+
# Default: 1
|
1330
|
+
#
|
1331
|
+
# Valid values: Integer from 1 to 10
|
1332
|
+
#
|
1333
|
+
# Required: Yes
|
1334
|
+
# @return [Integer]
|
1335
|
+
#
|
1336
|
+
# @!attribute [rw] auto_renew
|
1337
|
+
# Indicates whether the domain will be automatically renewed (`true`)
|
1338
|
+
# or not (`false`). Autorenewal only takes effect after the account is
|
1339
|
+
# charged.
|
1340
|
+
#
|
1341
|
+
# Type: Boolean
|
1342
|
+
#
|
1343
|
+
# Valid values: `true` \| `false`
|
1344
|
+
#
|
1345
|
+
# Default: `true`
|
1346
|
+
#
|
1347
|
+
# Required: No
|
1348
|
+
# @return [Boolean]
|
1349
|
+
#
|
1350
|
+
# @!attribute [rw] admin_contact
|
1351
|
+
# Provides detailed contact information.
|
1352
|
+
#
|
1353
|
+
# Type: Complex
|
1354
|
+
#
|
1355
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1356
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1357
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1358
|
+
# `ExtraParams`
|
1359
|
+
#
|
1360
|
+
# Required: Yes
|
1361
|
+
# @return [Types::ContactDetail]
|
1362
|
+
#
|
1363
|
+
# @!attribute [rw] registrant_contact
|
1364
|
+
# Provides detailed contact information.
|
1365
|
+
#
|
1366
|
+
# Type: Complex
|
1367
|
+
#
|
1368
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1369
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1370
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1371
|
+
# `ExtraParams`
|
1372
|
+
#
|
1373
|
+
# Required: Yes
|
1374
|
+
# @return [Types::ContactDetail]
|
1375
|
+
#
|
1376
|
+
# @!attribute [rw] tech_contact
|
1377
|
+
# Provides detailed contact information.
|
1378
|
+
#
|
1379
|
+
# Type: Complex
|
1380
|
+
#
|
1381
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1382
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1383
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1384
|
+
# `ExtraParams`
|
1385
|
+
#
|
1386
|
+
# Required: Yes
|
1387
|
+
# @return [Types::ContactDetail]
|
1388
|
+
#
|
1389
|
+
# @!attribute [rw] privacy_protect_admin_contact
|
1390
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1391
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1392
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1393
|
+
# information that you enter.
|
1394
|
+
#
|
1395
|
+
# Type: Boolean
|
1396
|
+
#
|
1397
|
+
# Default: `true`
|
1398
|
+
#
|
1399
|
+
# Valid values: `true` \| `false`
|
1400
|
+
#
|
1401
|
+
# Required: No
|
1402
|
+
# @return [Boolean]
|
1403
|
+
#
|
1404
|
+
# @!attribute [rw] privacy_protect_registrant_contact
|
1405
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1406
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1407
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1408
|
+
# information that you enter.
|
1409
|
+
#
|
1410
|
+
# Type: Boolean
|
1411
|
+
#
|
1412
|
+
# Default: `true`
|
1413
|
+
#
|
1414
|
+
# Valid values: `true` \| `false`
|
1415
|
+
#
|
1416
|
+
# Required: No
|
1417
|
+
# @return [Boolean]
|
1418
|
+
#
|
1419
|
+
# @!attribute [rw] privacy_protect_tech_contact
|
1420
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1421
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1422
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1423
|
+
# information that you enter.
|
1424
|
+
#
|
1425
|
+
# Type: Boolean
|
1426
|
+
#
|
1427
|
+
# Default: `true`
|
1428
|
+
#
|
1429
|
+
# Valid values: `true` \| `false`
|
1430
|
+
#
|
1431
|
+
# Required: No
|
1432
|
+
# @return [Boolean]
|
1433
|
+
class RegisterDomainRequest < Struct.new(
|
1434
|
+
:domain_name,
|
1435
|
+
:idn_lang_code,
|
1436
|
+
:duration_in_years,
|
1437
|
+
:auto_renew,
|
1438
|
+
:admin_contact,
|
1439
|
+
:registrant_contact,
|
1440
|
+
:tech_contact,
|
1441
|
+
:privacy_protect_admin_contact,
|
1442
|
+
:privacy_protect_registrant_contact,
|
1443
|
+
:privacy_protect_tech_contact)
|
1444
|
+
include Aws::Structure
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
# The RegisterDomain response includes the following element.
|
1448
|
+
# @!attribute [rw] operation_id
|
1449
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1450
|
+
# to query the operation status, use GetOperationDetail.
|
1451
|
+
#
|
1452
|
+
# Type: String
|
1453
|
+
#
|
1454
|
+
# Default: None
|
1455
|
+
#
|
1456
|
+
# Constraints: Maximum 255 characters.
|
1457
|
+
# @return [String]
|
1458
|
+
class RegisterDomainResponse < Struct.new(
|
1459
|
+
:operation_id)
|
1460
|
+
include Aws::Structure
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
# A `RenewDomain` request includes the number of years that you want to
|
1464
|
+
# renew for and the current expiration year.
|
1465
|
+
# @note When making an API call, pass RenewDomainRequest
|
1466
|
+
# data as a hash:
|
1467
|
+
#
|
1468
|
+
# {
|
1469
|
+
# domain_name: "DomainName", # required
|
1470
|
+
# duration_in_years: 1,
|
1471
|
+
# current_expiry_year: 1, # required
|
1472
|
+
# }
|
1473
|
+
# @!attribute [rw] domain_name
|
1474
|
+
# @return [String]
|
1475
|
+
#
|
1476
|
+
# @!attribute [rw] duration_in_years
|
1477
|
+
# The number of years that you want to renew the domain for. The
|
1478
|
+
# maximum number of years depends on the top-level domain. For the
|
1479
|
+
# range of valid values for your domain, see [Domains that You Can
|
1480
|
+
# Register with Amazon Route 53][1] in the Amazon Route 53
|
1481
|
+
# documentation.
|
1482
|
+
#
|
1483
|
+
# Type: Integer
|
1484
|
+
#
|
1485
|
+
# Default: 1
|
1486
|
+
#
|
1487
|
+
# Valid values: Integer from 1 to 10
|
1488
|
+
#
|
1489
|
+
# Required: No
|
1490
|
+
#
|
1491
|
+
#
|
1492
|
+
#
|
1493
|
+
# [1]: http://docs.aws.amazon.com/console/route53/domain-tld-list
|
1494
|
+
# @return [Integer]
|
1495
|
+
#
|
1496
|
+
# @!attribute [rw] current_expiry_year
|
1497
|
+
# The year when the registration for the domain is set to expire. This
|
1498
|
+
# value must match the current expiration date for the domain.
|
1499
|
+
#
|
1500
|
+
# Type: Integer
|
1501
|
+
#
|
1502
|
+
# Default: None
|
1503
|
+
#
|
1504
|
+
# Valid values: Integer
|
1505
|
+
#
|
1506
|
+
# Required: Yes
|
1507
|
+
# @return [Integer]
|
1508
|
+
class RenewDomainRequest < Struct.new(
|
1509
|
+
:domain_name,
|
1510
|
+
:duration_in_years,
|
1511
|
+
:current_expiry_year)
|
1512
|
+
include Aws::Structure
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
# @!attribute [rw] operation_id
|
1516
|
+
# @return [String]
|
1517
|
+
class RenewDomainResponse < Struct.new(
|
1518
|
+
:operation_id)
|
1519
|
+
include Aws::Structure
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
# @note When making an API call, pass ResendContactReachabilityEmailRequest
|
1523
|
+
# data as a hash:
|
1524
|
+
#
|
1525
|
+
# {
|
1526
|
+
# domain_name: "DomainName",
|
1527
|
+
# }
|
1528
|
+
# @!attribute [rw] domain_name
|
1529
|
+
# The name of the domain for which you want Amazon Route 53 to resend
|
1530
|
+
# a confirmation email to the registrant contact.
|
1531
|
+
#
|
1532
|
+
# Type: String
|
1533
|
+
#
|
1534
|
+
# Default: None
|
1535
|
+
#
|
1536
|
+
# Required: Yes
|
1537
|
+
# @return [String]
|
1538
|
+
class ResendContactReachabilityEmailRequest < Struct.new(
|
1539
|
+
:domain_name)
|
1540
|
+
include Aws::Structure
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# @!attribute [rw] domain_name
|
1544
|
+
# The domain name for which you requested a confirmation email.
|
1545
|
+
# @return [String]
|
1546
|
+
#
|
1547
|
+
# @!attribute [rw] email_address
|
1548
|
+
# The email address for the registrant contact at the time that we
|
1549
|
+
# sent the verification email.
|
1550
|
+
# @return [String]
|
1551
|
+
#
|
1552
|
+
# @!attribute [rw] is_already_verified
|
1553
|
+
# True if the email address for the registrant contact has already
|
1554
|
+
# been verified, and false otherwise. If the email address has already
|
1555
|
+
# been verified, we don't send another confirmation email.
|
1556
|
+
# @return [Boolean]
|
1557
|
+
class ResendContactReachabilityEmailResponse < Struct.new(
|
1558
|
+
:domain_name,
|
1559
|
+
:email_address,
|
1560
|
+
:is_already_verified)
|
1561
|
+
include Aws::Structure
|
1562
|
+
end
|
1563
|
+
|
1564
|
+
# The RetrieveDomainAuthCode request includes the following element.
|
1565
|
+
# @note When making an API call, pass RetrieveDomainAuthCodeRequest
|
1566
|
+
# data as a hash:
|
1567
|
+
#
|
1568
|
+
# {
|
1569
|
+
# domain_name: "DomainName", # required
|
1570
|
+
# }
|
1571
|
+
# @!attribute [rw] domain_name
|
1572
|
+
# The name of a domain.
|
1573
|
+
#
|
1574
|
+
# Type: String
|
1575
|
+
#
|
1576
|
+
# Default: None
|
1577
|
+
#
|
1578
|
+
# Constraints: The domain name can contain only the letters a through
|
1579
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1580
|
+
# Names are not supported.
|
1581
|
+
#
|
1582
|
+
# Required: Yes
|
1583
|
+
# @return [String]
|
1584
|
+
class RetrieveDomainAuthCodeRequest < Struct.new(
|
1585
|
+
:domain_name)
|
1586
|
+
include Aws::Structure
|
1587
|
+
end
|
1588
|
+
|
1589
|
+
# The RetrieveDomainAuthCode response includes the following element.
|
1590
|
+
# @!attribute [rw] auth_code
|
1591
|
+
# The authorization code for the domain.
|
1592
|
+
#
|
1593
|
+
# Type: String
|
1594
|
+
# @return [String]
|
1595
|
+
class RetrieveDomainAuthCodeResponse < Struct.new(
|
1596
|
+
:auth_code)
|
1597
|
+
include Aws::Structure
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
# Each tag includes the following elements.
|
1601
|
+
# @note When making an API call, pass Tag
|
1602
|
+
# data as a hash:
|
1603
|
+
#
|
1604
|
+
# {
|
1605
|
+
# key: "TagKey",
|
1606
|
+
# value: "TagValue",
|
1607
|
+
# }
|
1608
|
+
# @!attribute [rw] key
|
1609
|
+
# The key (name) of a tag.
|
1610
|
+
#
|
1611
|
+
# Type: String
|
1612
|
+
#
|
1613
|
+
# Default: None
|
1614
|
+
#
|
1615
|
+
# Valid values: A-Z, a-z, 0-9, space, ".:/=+\\-@"
|
1616
|
+
#
|
1617
|
+
# Constraints: Each key can be 1-128 characters long.
|
1618
|
+
#
|
1619
|
+
# Required: Yes
|
1620
|
+
# @return [String]
|
1621
|
+
#
|
1622
|
+
# @!attribute [rw] value
|
1623
|
+
# The value of a tag.
|
1624
|
+
#
|
1625
|
+
# Type: String
|
1626
|
+
#
|
1627
|
+
# Default: None
|
1628
|
+
#
|
1629
|
+
# Valid values: A-Z, a-z, 0-9, space, ".:/=+\\-@"
|
1630
|
+
#
|
1631
|
+
# Constraints: Each value can be 0-256 characters long.
|
1632
|
+
#
|
1633
|
+
# Required: Yes
|
1634
|
+
# @return [String]
|
1635
|
+
class Tag < Struct.new(
|
1636
|
+
:key,
|
1637
|
+
:value)
|
1638
|
+
include Aws::Structure
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# The TransferDomain request includes the following elements.
|
1642
|
+
# @note When making an API call, pass TransferDomainRequest
|
1643
|
+
# data as a hash:
|
1644
|
+
#
|
1645
|
+
# {
|
1646
|
+
# domain_name: "DomainName", # required
|
1647
|
+
# idn_lang_code: "LangCode",
|
1648
|
+
# duration_in_years: 1, # required
|
1649
|
+
# nameservers: [
|
1650
|
+
# {
|
1651
|
+
# name: "HostName", # required
|
1652
|
+
# glue_ips: ["GlueIp"],
|
1653
|
+
# },
|
1654
|
+
# ],
|
1655
|
+
# auth_code: "DomainAuthCode",
|
1656
|
+
# auto_renew: false,
|
1657
|
+
# admin_contact: { # required
|
1658
|
+
# first_name: "ContactName",
|
1659
|
+
# last_name: "ContactName",
|
1660
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1661
|
+
# organization_name: "ContactName",
|
1662
|
+
# address_line_1: "AddressLine",
|
1663
|
+
# address_line_2: "AddressLine",
|
1664
|
+
# city: "City",
|
1665
|
+
# state: "State",
|
1666
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1667
|
+
# zip_code: "ZipCode",
|
1668
|
+
# phone_number: "ContactNumber",
|
1669
|
+
# email: "Email",
|
1670
|
+
# fax: "ContactNumber",
|
1671
|
+
# extra_params: [
|
1672
|
+
# {
|
1673
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1674
|
+
# value: "ExtraParamValue", # required
|
1675
|
+
# },
|
1676
|
+
# ],
|
1677
|
+
# },
|
1678
|
+
# registrant_contact: { # required
|
1679
|
+
# first_name: "ContactName",
|
1680
|
+
# last_name: "ContactName",
|
1681
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1682
|
+
# organization_name: "ContactName",
|
1683
|
+
# address_line_1: "AddressLine",
|
1684
|
+
# address_line_2: "AddressLine",
|
1685
|
+
# city: "City",
|
1686
|
+
# state: "State",
|
1687
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1688
|
+
# zip_code: "ZipCode",
|
1689
|
+
# phone_number: "ContactNumber",
|
1690
|
+
# email: "Email",
|
1691
|
+
# fax: "ContactNumber",
|
1692
|
+
# extra_params: [
|
1693
|
+
# {
|
1694
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1695
|
+
# value: "ExtraParamValue", # required
|
1696
|
+
# },
|
1697
|
+
# ],
|
1698
|
+
# },
|
1699
|
+
# tech_contact: { # required
|
1700
|
+
# first_name: "ContactName",
|
1701
|
+
# last_name: "ContactName",
|
1702
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1703
|
+
# organization_name: "ContactName",
|
1704
|
+
# address_line_1: "AddressLine",
|
1705
|
+
# address_line_2: "AddressLine",
|
1706
|
+
# city: "City",
|
1707
|
+
# state: "State",
|
1708
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1709
|
+
# zip_code: "ZipCode",
|
1710
|
+
# phone_number: "ContactNumber",
|
1711
|
+
# email: "Email",
|
1712
|
+
# fax: "ContactNumber",
|
1713
|
+
# extra_params: [
|
1714
|
+
# {
|
1715
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
1716
|
+
# value: "ExtraParamValue", # required
|
1717
|
+
# },
|
1718
|
+
# ],
|
1719
|
+
# },
|
1720
|
+
# privacy_protect_admin_contact: false,
|
1721
|
+
# privacy_protect_registrant_contact: false,
|
1722
|
+
# privacy_protect_tech_contact: false,
|
1723
|
+
# }
|
1724
|
+
# @!attribute [rw] domain_name
|
1725
|
+
# The name of a domain.
|
1726
|
+
#
|
1727
|
+
# Type: String
|
1728
|
+
#
|
1729
|
+
# Default: None
|
1730
|
+
#
|
1731
|
+
# Constraints: The domain name can contain only the letters a through
|
1732
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1733
|
+
# Names are not supported.
|
1734
|
+
#
|
1735
|
+
# Required: Yes
|
1736
|
+
# @return [String]
|
1737
|
+
#
|
1738
|
+
# @!attribute [rw] idn_lang_code
|
1739
|
+
# Reserved for future use.
|
1740
|
+
# @return [String]
|
1741
|
+
#
|
1742
|
+
# @!attribute [rw] duration_in_years
|
1743
|
+
# The number of years the domain will be registered. Domains are
|
1744
|
+
# registered for a minimum of one year. The maximum period depends on
|
1745
|
+
# the top-level domain.
|
1746
|
+
#
|
1747
|
+
# Type: Integer
|
1748
|
+
#
|
1749
|
+
# Default: 1
|
1750
|
+
#
|
1751
|
+
# Valid values: Integer from 1 to 10
|
1752
|
+
#
|
1753
|
+
# Required: Yes
|
1754
|
+
# @return [Integer]
|
1755
|
+
#
|
1756
|
+
# @!attribute [rw] nameservers
|
1757
|
+
# Contains details for the host and glue IP addresses.
|
1758
|
+
#
|
1759
|
+
# Type: Complex
|
1760
|
+
#
|
1761
|
+
# Children: `GlueIps`, `Name`
|
1762
|
+
#
|
1763
|
+
# Required: No
|
1764
|
+
# @return [Array<Types::Nameserver>]
|
1765
|
+
#
|
1766
|
+
# @!attribute [rw] auth_code
|
1767
|
+
# The authorization code for the domain. You get this value from the
|
1768
|
+
# current registrar.
|
1769
|
+
#
|
1770
|
+
# Type: String
|
1771
|
+
#
|
1772
|
+
# Required: Yes
|
1773
|
+
# @return [String]
|
1774
|
+
#
|
1775
|
+
# @!attribute [rw] auto_renew
|
1776
|
+
# Indicates whether the domain will be automatically renewed (true) or
|
1777
|
+
# not (false). Autorenewal only takes effect after the account is
|
1778
|
+
# charged.
|
1779
|
+
#
|
1780
|
+
# Type: Boolean
|
1781
|
+
#
|
1782
|
+
# Valid values: `true` \| `false`
|
1783
|
+
#
|
1784
|
+
# Default: true
|
1785
|
+
#
|
1786
|
+
# Required: No
|
1787
|
+
# @return [Boolean]
|
1788
|
+
#
|
1789
|
+
# @!attribute [rw] admin_contact
|
1790
|
+
# Provides detailed contact information.
|
1791
|
+
#
|
1792
|
+
# Type: Complex
|
1793
|
+
#
|
1794
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1795
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1796
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1797
|
+
# `ExtraParams`
|
1798
|
+
#
|
1799
|
+
# Required: Yes
|
1800
|
+
# @return [Types::ContactDetail]
|
1801
|
+
#
|
1802
|
+
# @!attribute [rw] registrant_contact
|
1803
|
+
# Provides detailed contact information.
|
1804
|
+
#
|
1805
|
+
# Type: Complex
|
1806
|
+
#
|
1807
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1808
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1809
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1810
|
+
# `ExtraParams`
|
1811
|
+
#
|
1812
|
+
# Required: Yes
|
1813
|
+
# @return [Types::ContactDetail]
|
1814
|
+
#
|
1815
|
+
# @!attribute [rw] tech_contact
|
1816
|
+
# Provides detailed contact information.
|
1817
|
+
#
|
1818
|
+
# Type: Complex
|
1819
|
+
#
|
1820
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
1821
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
1822
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
1823
|
+
# `ExtraParams`
|
1824
|
+
#
|
1825
|
+
# Required: Yes
|
1826
|
+
# @return [Types::ContactDetail]
|
1827
|
+
#
|
1828
|
+
# @!attribute [rw] privacy_protect_admin_contact
|
1829
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1830
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1831
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1832
|
+
# information that you enter.
|
1833
|
+
#
|
1834
|
+
# Type: Boolean
|
1835
|
+
#
|
1836
|
+
# Default: `true`
|
1837
|
+
#
|
1838
|
+
# Valid values: `true` \| `false`
|
1839
|
+
#
|
1840
|
+
# Required: No
|
1841
|
+
# @return [Boolean]
|
1842
|
+
#
|
1843
|
+
# @!attribute [rw] privacy_protect_registrant_contact
|
1844
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1845
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1846
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1847
|
+
# information that you enter.
|
1848
|
+
#
|
1849
|
+
# Type: Boolean
|
1850
|
+
#
|
1851
|
+
# Default: `true`
|
1852
|
+
#
|
1853
|
+
# Valid values: `true` \| `false`
|
1854
|
+
#
|
1855
|
+
# Required: No
|
1856
|
+
# @return [Boolean]
|
1857
|
+
#
|
1858
|
+
# @!attribute [rw] privacy_protect_tech_contact
|
1859
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1860
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1861
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1862
|
+
# information that you enter.
|
1863
|
+
#
|
1864
|
+
# Type: Boolean
|
1865
|
+
#
|
1866
|
+
# Default: `true`
|
1867
|
+
#
|
1868
|
+
# Valid values: `true` \| `false`
|
1869
|
+
#
|
1870
|
+
# Required: No
|
1871
|
+
# @return [Boolean]
|
1872
|
+
class TransferDomainRequest < Struct.new(
|
1873
|
+
:domain_name,
|
1874
|
+
:idn_lang_code,
|
1875
|
+
:duration_in_years,
|
1876
|
+
:nameservers,
|
1877
|
+
:auth_code,
|
1878
|
+
:auto_renew,
|
1879
|
+
:admin_contact,
|
1880
|
+
:registrant_contact,
|
1881
|
+
:tech_contact,
|
1882
|
+
:privacy_protect_admin_contact,
|
1883
|
+
:privacy_protect_registrant_contact,
|
1884
|
+
:privacy_protect_tech_contact)
|
1885
|
+
include Aws::Structure
|
1886
|
+
end
|
1887
|
+
|
1888
|
+
# The TranserDomain response includes the following element.
|
1889
|
+
# @!attribute [rw] operation_id
|
1890
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1891
|
+
# to query the operation status, use GetOperationDetail.
|
1892
|
+
#
|
1893
|
+
# Type: String
|
1894
|
+
#
|
1895
|
+
# Default: None
|
1896
|
+
#
|
1897
|
+
# Constraints: Maximum 255 characters.
|
1898
|
+
# @return [String]
|
1899
|
+
class TransferDomainResponse < Struct.new(
|
1900
|
+
:operation_id)
|
1901
|
+
include Aws::Structure
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
# The UpdateDomainContactPrivacy request includes the following
|
1905
|
+
# elements.
|
1906
|
+
# @note When making an API call, pass UpdateDomainContactPrivacyRequest
|
1907
|
+
# data as a hash:
|
1908
|
+
#
|
1909
|
+
# {
|
1910
|
+
# domain_name: "DomainName", # required
|
1911
|
+
# admin_privacy: false,
|
1912
|
+
# registrant_privacy: false,
|
1913
|
+
# tech_privacy: false,
|
1914
|
+
# }
|
1915
|
+
# @!attribute [rw] domain_name
|
1916
|
+
# The name of a domain.
|
1917
|
+
#
|
1918
|
+
# Type: String
|
1919
|
+
#
|
1920
|
+
# Default: None
|
1921
|
+
#
|
1922
|
+
# Constraints: The domain name can contain only the letters a through
|
1923
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1924
|
+
# Names are not supported.
|
1925
|
+
#
|
1926
|
+
# Required: Yes
|
1927
|
+
# @return [String]
|
1928
|
+
#
|
1929
|
+
# @!attribute [rw] admin_privacy
|
1930
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1931
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1932
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1933
|
+
# information that you enter.
|
1934
|
+
#
|
1935
|
+
# Type: Boolean
|
1936
|
+
#
|
1937
|
+
# Default: None
|
1938
|
+
#
|
1939
|
+
# Valid values: `true` \| `false`
|
1940
|
+
#
|
1941
|
+
# Required: No
|
1942
|
+
# @return [Boolean]
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] registrant_privacy
|
1945
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1946
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1947
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1948
|
+
# information that you enter.
|
1949
|
+
#
|
1950
|
+
# Type: Boolean
|
1951
|
+
#
|
1952
|
+
# Default: None
|
1953
|
+
#
|
1954
|
+
# Valid values: `true` \| `false`
|
1955
|
+
#
|
1956
|
+
# Required: No
|
1957
|
+
# @return [Boolean]
|
1958
|
+
#
|
1959
|
+
# @!attribute [rw] tech_privacy
|
1960
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1961
|
+
# If you specify true, WHOIS ("who is") queries will return contact
|
1962
|
+
# information for our registrar partner, Gandi, instead of the contact
|
1963
|
+
# information that you enter.
|
1964
|
+
#
|
1965
|
+
# Type: Boolean
|
1966
|
+
#
|
1967
|
+
# Default: None
|
1968
|
+
#
|
1969
|
+
# Valid values: `true` \| `false`
|
1970
|
+
#
|
1971
|
+
# Required: No
|
1972
|
+
# @return [Boolean]
|
1973
|
+
class UpdateDomainContactPrivacyRequest < Struct.new(
|
1974
|
+
:domain_name,
|
1975
|
+
:admin_privacy,
|
1976
|
+
:registrant_privacy,
|
1977
|
+
:tech_privacy)
|
1978
|
+
include Aws::Structure
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
# The UpdateDomainContactPrivacy response includes the following
|
1982
|
+
# element.
|
1983
|
+
# @!attribute [rw] operation_id
|
1984
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1985
|
+
# to query the operation status, use GetOperationDetail.
|
1986
|
+
#
|
1987
|
+
# Type: String
|
1988
|
+
#
|
1989
|
+
# Default: None
|
1990
|
+
#
|
1991
|
+
# Constraints: Maximum 255 characters.
|
1992
|
+
# @return [String]
|
1993
|
+
class UpdateDomainContactPrivacyResponse < Struct.new(
|
1994
|
+
:operation_id)
|
1995
|
+
include Aws::Structure
|
1996
|
+
end
|
1997
|
+
|
1998
|
+
# The UpdateDomainContact request includes the following elements.
|
1999
|
+
# @note When making an API call, pass UpdateDomainContactRequest
|
2000
|
+
# data as a hash:
|
2001
|
+
#
|
2002
|
+
# {
|
2003
|
+
# domain_name: "DomainName", # required
|
2004
|
+
# admin_contact: {
|
2005
|
+
# first_name: "ContactName",
|
2006
|
+
# last_name: "ContactName",
|
2007
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2008
|
+
# organization_name: "ContactName",
|
2009
|
+
# address_line_1: "AddressLine",
|
2010
|
+
# address_line_2: "AddressLine",
|
2011
|
+
# city: "City",
|
2012
|
+
# state: "State",
|
2013
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
2014
|
+
# zip_code: "ZipCode",
|
2015
|
+
# phone_number: "ContactNumber",
|
2016
|
+
# email: "Email",
|
2017
|
+
# fax: "ContactNumber",
|
2018
|
+
# extra_params: [
|
2019
|
+
# {
|
2020
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
2021
|
+
# value: "ExtraParamValue", # required
|
2022
|
+
# },
|
2023
|
+
# ],
|
2024
|
+
# },
|
2025
|
+
# registrant_contact: {
|
2026
|
+
# first_name: "ContactName",
|
2027
|
+
# last_name: "ContactName",
|
2028
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2029
|
+
# organization_name: "ContactName",
|
2030
|
+
# address_line_1: "AddressLine",
|
2031
|
+
# address_line_2: "AddressLine",
|
2032
|
+
# city: "City",
|
2033
|
+
# state: "State",
|
2034
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
2035
|
+
# zip_code: "ZipCode",
|
2036
|
+
# phone_number: "ContactNumber",
|
2037
|
+
# email: "Email",
|
2038
|
+
# fax: "ContactNumber",
|
2039
|
+
# extra_params: [
|
2040
|
+
# {
|
2041
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
2042
|
+
# value: "ExtraParamValue", # required
|
2043
|
+
# },
|
2044
|
+
# ],
|
2045
|
+
# },
|
2046
|
+
# tech_contact: {
|
2047
|
+
# first_name: "ContactName",
|
2048
|
+
# last_name: "ContactName",
|
2049
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2050
|
+
# organization_name: "ContactName",
|
2051
|
+
# address_line_1: "AddressLine",
|
2052
|
+
# address_line_2: "AddressLine",
|
2053
|
+
# city: "City",
|
2054
|
+
# state: "State",
|
2055
|
+
# country_code: "AD", # accepts AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BR, BS, BT, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GH, GI, GL, GM, GN, GQ, GR, GT, GU, GW, GY, HK, HN, HR, HT, HU, ID, IE, IL, IM, IN, IQ, IR, IS, IT, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PT, PW, PY, QA, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SK, SL, SM, SN, SO, SR, ST, SV, SY, SZ, TC, TD, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
2056
|
+
# zip_code: "ZipCode",
|
2057
|
+
# phone_number: "ContactNumber",
|
2058
|
+
# email: "Email",
|
2059
|
+
# fax: "ContactNumber",
|
2060
|
+
# extra_params: [
|
2061
|
+
# {
|
2062
|
+
# 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, IT_PIN, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER
|
2063
|
+
# value: "ExtraParamValue", # required
|
2064
|
+
# },
|
2065
|
+
# ],
|
2066
|
+
# },
|
2067
|
+
# }
|
2068
|
+
# @!attribute [rw] domain_name
|
2069
|
+
# The name of a domain.
|
2070
|
+
#
|
2071
|
+
# Type: String
|
2072
|
+
#
|
2073
|
+
# Default: None
|
2074
|
+
#
|
2075
|
+
# Constraints: The domain name can contain only the letters a through
|
2076
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
2077
|
+
# Names are not supported.
|
2078
|
+
#
|
2079
|
+
# Required: Yes
|
2080
|
+
# @return [String]
|
2081
|
+
#
|
2082
|
+
# @!attribute [rw] admin_contact
|
2083
|
+
# Provides detailed contact information.
|
2084
|
+
#
|
2085
|
+
# Type: Complex
|
2086
|
+
#
|
2087
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
2088
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
2089
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
2090
|
+
# `ExtraParams`
|
2091
|
+
#
|
2092
|
+
# Required: Yes
|
2093
|
+
# @return [Types::ContactDetail]
|
2094
|
+
#
|
2095
|
+
# @!attribute [rw] registrant_contact
|
2096
|
+
# Provides detailed contact information.
|
2097
|
+
#
|
2098
|
+
# Type: Complex
|
2099
|
+
#
|
2100
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
2101
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
2102
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
2103
|
+
# `ExtraParams`
|
2104
|
+
#
|
2105
|
+
# Required: Yes
|
2106
|
+
# @return [Types::ContactDetail]
|
2107
|
+
#
|
2108
|
+
# @!attribute [rw] tech_contact
|
2109
|
+
# Provides detailed contact information.
|
2110
|
+
#
|
2111
|
+
# Type: Complex
|
2112
|
+
#
|
2113
|
+
# Children: `FirstName`, `MiddleName`, `LastName`, `ContactType`,
|
2114
|
+
# `OrganizationName`, `AddressLine1`, `AddressLine2`, `City`, `State`,
|
2115
|
+
# `CountryCode`, `ZipCode`, `PhoneNumber`, `Email`, `Fax`,
|
2116
|
+
# `ExtraParams`
|
2117
|
+
#
|
2118
|
+
# Required: Yes
|
2119
|
+
# @return [Types::ContactDetail]
|
2120
|
+
class UpdateDomainContactRequest < Struct.new(
|
2121
|
+
:domain_name,
|
2122
|
+
:admin_contact,
|
2123
|
+
:registrant_contact,
|
2124
|
+
:tech_contact)
|
2125
|
+
include Aws::Structure
|
2126
|
+
end
|
2127
|
+
|
2128
|
+
# The UpdateDomainContact response includes the following element.
|
2129
|
+
# @!attribute [rw] operation_id
|
2130
|
+
# Identifier for tracking the progress of the request. To use this ID
|
2131
|
+
# to query the operation status, use GetOperationDetail.
|
2132
|
+
#
|
2133
|
+
# Type: String
|
2134
|
+
#
|
2135
|
+
# Default: None
|
2136
|
+
#
|
2137
|
+
# Constraints: Maximum 255 characters.
|
2138
|
+
# @return [String]
|
2139
|
+
class UpdateDomainContactResponse < Struct.new(
|
2140
|
+
:operation_id)
|
2141
|
+
include Aws::Structure
|
2142
|
+
end
|
2143
|
+
|
2144
|
+
# The UpdateDomainNameserver request includes the following elements.
|
2145
|
+
# @note When making an API call, pass UpdateDomainNameserversRequest
|
2146
|
+
# data as a hash:
|
2147
|
+
#
|
2148
|
+
# {
|
2149
|
+
# domain_name: "DomainName", # required
|
2150
|
+
# fi_auth_key: "FIAuthKey",
|
2151
|
+
# nameservers: [ # required
|
2152
|
+
# {
|
2153
|
+
# name: "HostName", # required
|
2154
|
+
# glue_ips: ["GlueIp"],
|
2155
|
+
# },
|
2156
|
+
# ],
|
2157
|
+
# }
|
2158
|
+
# @!attribute [rw] domain_name
|
2159
|
+
# The name of a domain.
|
2160
|
+
#
|
2161
|
+
# Type: String
|
2162
|
+
#
|
2163
|
+
# Default: None
|
2164
|
+
#
|
2165
|
+
# Constraints: The domain name can contain only the letters a through
|
2166
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
2167
|
+
# Names are not supported.
|
2168
|
+
#
|
2169
|
+
# Required: Yes
|
2170
|
+
# @return [String]
|
2171
|
+
#
|
2172
|
+
# @!attribute [rw] fi_auth_key
|
2173
|
+
# The authorization key for .fi domains
|
2174
|
+
# @return [String]
|
2175
|
+
#
|
2176
|
+
# @!attribute [rw] nameservers
|
2177
|
+
# A list of new name servers for the domain.
|
2178
|
+
#
|
2179
|
+
# Type: Complex
|
2180
|
+
#
|
2181
|
+
# Children: `Name`, `GlueIps`
|
2182
|
+
#
|
2183
|
+
# Required: Yes
|
2184
|
+
# @return [Array<Types::Nameserver>]
|
2185
|
+
class UpdateDomainNameserversRequest < Struct.new(
|
2186
|
+
:domain_name,
|
2187
|
+
:fi_auth_key,
|
2188
|
+
:nameservers)
|
2189
|
+
include Aws::Structure
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
# The UpdateDomainNameservers response includes the following element.
|
2193
|
+
# @!attribute [rw] operation_id
|
2194
|
+
# Identifier for tracking the progress of the request. To use this ID
|
2195
|
+
# to query the operation status, use GetOperationDetail.
|
2196
|
+
#
|
2197
|
+
# Type: String
|
2198
|
+
#
|
2199
|
+
# Default: None
|
2200
|
+
#
|
2201
|
+
# Constraints: Maximum 255 characters.
|
2202
|
+
# @return [String]
|
2203
|
+
class UpdateDomainNameserversResponse < Struct.new(
|
2204
|
+
:operation_id)
|
2205
|
+
include Aws::Structure
|
2206
|
+
end
|
2207
|
+
|
2208
|
+
# The UpdateTagsForDomainRequest includes the following elements.
|
2209
|
+
# @note When making an API call, pass UpdateTagsForDomainRequest
|
2210
|
+
# data as a hash:
|
2211
|
+
#
|
2212
|
+
# {
|
2213
|
+
# domain_name: "DomainName", # required
|
2214
|
+
# tags_to_update: [
|
2215
|
+
# {
|
2216
|
+
# key: "TagKey",
|
2217
|
+
# value: "TagValue",
|
2218
|
+
# },
|
2219
|
+
# ],
|
2220
|
+
# }
|
2221
|
+
# @!attribute [rw] domain_name
|
2222
|
+
# The domain for which you want to add or update tags.
|
2223
|
+
#
|
2224
|
+
# The name of a domain.
|
2225
|
+
#
|
2226
|
+
# Type: String
|
2227
|
+
#
|
2228
|
+
# Default: None
|
2229
|
+
#
|
2230
|
+
# Constraints: The domain name can contain only the letters a through
|
2231
|
+
# z, the numbers 0 through 9, and hyphen (-). Hyphens are allowed only
|
2232
|
+
# when they're surrounded by letters, numbers, or other hyphens. You
|
2233
|
+
# can't specify a hyphen at the beginning or end of a label. To
|
2234
|
+
# specify an Internationalized Domain Name, you must convert the name
|
2235
|
+
# to Punycode.
|
2236
|
+
#
|
2237
|
+
# Required: Yes
|
2238
|
+
# @return [String]
|
2239
|
+
#
|
2240
|
+
# @!attribute [rw] tags_to_update
|
2241
|
+
# A list of the tag keys and values that you want to add or update. If
|
2242
|
+
# you specify a key that already exists, the corresponding value will
|
2243
|
+
# be replaced.
|
2244
|
+
#
|
2245
|
+
# Type: A complex type containing a list of tags
|
2246
|
+
#
|
2247
|
+
# Default: None
|
2248
|
+
#
|
2249
|
+
# Required: No
|
2250
|
+
#
|
2251
|
+
# '> Each tag includes the following elements:
|
2252
|
+
#
|
2253
|
+
# * Key
|
2254
|
+
#
|
2255
|
+
# The key (name) of a tag.
|
2256
|
+
#
|
2257
|
+
# Type: String
|
2258
|
+
#
|
2259
|
+
# Default: None
|
2260
|
+
#
|
2261
|
+
# Valid values: Unicode characters including alphanumeric, space,
|
2262
|
+
# and ".:/=+\\-@"
|
2263
|
+
#
|
2264
|
+
# Constraints: Each key can be 1-128 characters long.
|
2265
|
+
#
|
2266
|
+
# Required: Yes
|
2267
|
+
#
|
2268
|
+
# * Value
|
2269
|
+
#
|
2270
|
+
# The value of a tag.
|
2271
|
+
#
|
2272
|
+
# Type: String
|
2273
|
+
#
|
2274
|
+
# Default: None
|
2275
|
+
#
|
2276
|
+
# Valid values: Unicode characters including alphanumeric, space,
|
2277
|
+
# and ".:/=+\\-@"
|
2278
|
+
#
|
2279
|
+
# Constraints: Each value can be 0-256 characters long.
|
2280
|
+
#
|
2281
|
+
# Required: Yes
|
2282
|
+
# @return [Array<Types::Tag>]
|
2283
|
+
class UpdateTagsForDomainRequest < Struct.new(
|
2284
|
+
:domain_name,
|
2285
|
+
:tags_to_update)
|
2286
|
+
include Aws::Structure
|
2287
|
+
end
|
2288
|
+
|
2289
|
+
class UpdateTagsForDomainResponse < Aws::EmptyStructure; end
|
2290
|
+
|
2291
|
+
# The ViewBilling request includes the following elements.
|
2292
|
+
# @note When making an API call, pass ViewBillingRequest
|
2293
|
+
# data as a hash:
|
2294
|
+
#
|
2295
|
+
# {
|
2296
|
+
# start: Time.now,
|
2297
|
+
# end: Time.now,
|
2298
|
+
# marker: "PageMarker",
|
2299
|
+
# max_items: 1,
|
2300
|
+
# }
|
2301
|
+
# @!attribute [rw] start
|
2302
|
+
# The beginning date and time for the time period for which you want a
|
2303
|
+
# list of billing records. Specify the date in Unix time format.
|
2304
|
+
#
|
2305
|
+
# Type: Double
|
2306
|
+
#
|
2307
|
+
# Default: None
|
2308
|
+
#
|
2309
|
+
# Required: Yes
|
2310
|
+
# @return [Time]
|
2311
|
+
#
|
2312
|
+
# @!attribute [rw] end
|
2313
|
+
# The end date and time for the time period for which you want a list
|
2314
|
+
# of billing records. Specify the date in Unix time format.
|
2315
|
+
#
|
2316
|
+
# Type: Double
|
2317
|
+
#
|
2318
|
+
# Default: None
|
2319
|
+
#
|
2320
|
+
# Required: Yes
|
2321
|
+
# @return [Time]
|
2322
|
+
#
|
2323
|
+
# @!attribute [rw] marker
|
2324
|
+
# For an initial request for a list of billing records, omit this
|
2325
|
+
# element. If the number of billing records that are associated with
|
2326
|
+
# the current AWS account during the specified period is greater than
|
2327
|
+
# the value that you specified for `MaxItems`, you can use `Marker` to
|
2328
|
+
# return additional billing records. Get the value of `NextPageMarker`
|
2329
|
+
# from the previous response, and submit another request that includes
|
2330
|
+
# the value of `NextPageMarker` in the `Marker` element.
|
2331
|
+
#
|
2332
|
+
# Type: String
|
2333
|
+
#
|
2334
|
+
# Default: None
|
2335
|
+
#
|
2336
|
+
# Constraints: The marker must match the value of `NextPageMarker`
|
2337
|
+
# that was returned in the previous response.
|
2338
|
+
#
|
2339
|
+
# Required: No
|
2340
|
+
# @return [String]
|
2341
|
+
#
|
2342
|
+
# @!attribute [rw] max_items
|
2343
|
+
# The number of billing records to be returned.
|
2344
|
+
#
|
2345
|
+
# Type: Integer
|
2346
|
+
#
|
2347
|
+
# Default: 20
|
2348
|
+
#
|
2349
|
+
# Constraints: A value between 1 and 100.
|
2350
|
+
#
|
2351
|
+
# Required: No
|
2352
|
+
# @return [Integer]
|
2353
|
+
class ViewBillingRequest < Struct.new(
|
2354
|
+
:start,
|
2355
|
+
:end,
|
2356
|
+
:marker,
|
2357
|
+
:max_items)
|
2358
|
+
include Aws::Structure
|
2359
|
+
end
|
2360
|
+
|
2361
|
+
# The ViewBilling response includes the following elements.
|
2362
|
+
# @!attribute [rw] next_page_marker
|
2363
|
+
# If there are more billing records than you specified for `MaxItems`
|
2364
|
+
# in the request, submit another request and include the value of
|
2365
|
+
# `NextPageMarker` in the value of `Marker`.
|
2366
|
+
#
|
2367
|
+
# Type: String
|
2368
|
+
#
|
2369
|
+
# Parent: `BillingRecords`
|
2370
|
+
# @return [String]
|
2371
|
+
#
|
2372
|
+
# @!attribute [rw] billing_records
|
2373
|
+
# A summary of billing records.
|
2374
|
+
#
|
2375
|
+
# Type: Complex type containing a list of billing record summaries.
|
2376
|
+
#
|
2377
|
+
# Children: `DomainName`, `Operation`, `InvoiceId`, `BillDate` and
|
2378
|
+
# `Price`
|
2379
|
+
# @return [Array<Types::BillingRecord>]
|
2380
|
+
class ViewBillingResponse < Struct.new(
|
2381
|
+
:next_page_marker,
|
2382
|
+
:billing_records)
|
2383
|
+
include Aws::Structure
|
2384
|
+
end
|
2385
|
+
|
2386
|
+
end
|
2387
|
+
end
|
2388
|
+
end
|