aws-sdk-route53domains 1.0.0.rc1 → 1.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-route53domains.rb +2 -2
- data/lib/aws-sdk-route53domains/client.rb +1524 -1703
- data/lib/aws-sdk-route53domains/client_api.rb +680 -682
- data/lib/aws-sdk-route53domains/errors.rb +4 -13
- data/lib/aws-sdk-route53domains/resource.rb +12 -14
- data/lib/aws-sdk-route53domains/types.rb +1900 -2325
- metadata +2 -2
@@ -1,23 +1,14 @@
|
|
1
1
|
# WARNING ABOUT GENERATED CODE
|
2
2
|
#
|
3
|
-
# This file is generated. See the contributing for
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
4
|
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
5
|
#
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
|
-
module Aws
|
9
|
-
module
|
10
|
-
module Errors
|
8
|
+
module Aws::Route53Domains
|
9
|
+
module Errors
|
11
10
|
|
12
|
-
|
11
|
+
extend Aws::Errors::DynamicErrors
|
13
12
|
|
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
13
|
end
|
23
14
|
end
|
@@ -1,25 +1,23 @@
|
|
1
1
|
# WARNING ABOUT GENERATED CODE
|
2
2
|
#
|
3
|
-
# This file is generated. See the contributing for
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
4
|
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
5
|
#
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
|
-
module Aws
|
9
|
-
|
10
|
-
class Resource
|
8
|
+
module Aws::Route53Domains
|
9
|
+
class Resource
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
# @return [Client]
|
19
|
-
def client
|
20
|
-
@client
|
21
|
-
end
|
11
|
+
# @param options ({})
|
12
|
+
# @option options [Client] :client
|
13
|
+
def initialize(options = {})
|
14
|
+
@client = options[:client] || Client.new(options)
|
15
|
+
end
|
22
16
|
|
17
|
+
# @return [Client]
|
18
|
+
def client
|
19
|
+
@client
|
23
20
|
end
|
21
|
+
|
24
22
|
end
|
25
23
|
end
|
@@ -1,2388 +1,1963 @@
|
|
1
1
|
# WARNING ABOUT GENERATED CODE
|
2
2
|
#
|
3
|
-
# This file is generated. See the contributing for
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
4
|
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
5
|
#
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
|
-
module Aws
|
9
|
-
module
|
10
|
-
module Types
|
8
|
+
module Aws::Route53Domains
|
9
|
+
module Types
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
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
|
11
|
+
# Information for one billing record.
|
12
|
+
#
|
13
|
+
# @!attribute [rw] domain_name
|
14
|
+
# The name of the domain that the billing record applies to. If the
|
15
|
+
# domain name contains characters other than a-z, 0-9, and - (hyphen),
|
16
|
+
# such as an internationalized domain name, then this value is in
|
17
|
+
# Punycode. For more information, see [DNS Domain Name Format][1] in
|
18
|
+
# the *Amazon Route 53 Developer Guidezzz*.
|
19
|
+
#
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
|
23
|
+
# @return [String]
|
24
|
+
#
|
25
|
+
# @!attribute [rw] operation
|
26
|
+
# The operation that you were charged for.
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] invoice_id
|
30
|
+
# The ID of the invoice that is associated with the billing record.
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] bill_date
|
34
|
+
# The date that the operation was billed, in Unix format.
|
35
|
+
# @return [Time]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] price
|
38
|
+
# The price that you were charged for the operation, in US dollars.
|
39
|
+
#
|
40
|
+
# Example value: 12.0
|
41
|
+
# @return [Float]
|
42
|
+
#
|
43
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/BillingRecord AWS API Documentation
|
44
|
+
#
|
45
|
+
class BillingRecord < Struct.new(
|
46
|
+
:domain_name,
|
47
|
+
:operation,
|
48
|
+
:invoice_id,
|
49
|
+
:bill_date,
|
50
|
+
:price)
|
51
|
+
include Aws::Structure
|
52
|
+
end
|
87
53
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
include Aws::Structure
|
118
|
-
end
|
54
|
+
# The CheckDomainAvailability request contains the following elements.
|
55
|
+
#
|
56
|
+
# @note When making an API call, you may pass CheckDomainAvailabilityRequest
|
57
|
+
# data as a hash:
|
58
|
+
#
|
59
|
+
# {
|
60
|
+
# domain_name: "DomainName", # required
|
61
|
+
# idn_lang_code: "LangCode",
|
62
|
+
# }
|
63
|
+
#
|
64
|
+
# @!attribute [rw] domain_name
|
65
|
+
# The name of the domain that you want to get availability for.
|
66
|
+
#
|
67
|
+
# Constraints: The domain name can contain only the letters a through
|
68
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
69
|
+
# Names are not supported.
|
70
|
+
# @return [String]
|
71
|
+
#
|
72
|
+
# @!attribute [rw] idn_lang_code
|
73
|
+
# Reserved for future use.
|
74
|
+
# @return [String]
|
75
|
+
#
|
76
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainAvailabilityRequest AWS API Documentation
|
77
|
+
#
|
78
|
+
class CheckDomainAvailabilityRequest < Struct.new(
|
79
|
+
:domain_name,
|
80
|
+
:idn_lang_code)
|
81
|
+
include Aws::Structure
|
82
|
+
end
|
119
83
|
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
#
|
181
|
-
# 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
|
84
|
+
# The CheckDomainAvailability response includes the following elements.
|
85
|
+
#
|
86
|
+
# @!attribute [rw] availability
|
87
|
+
# Whether the domain name is available for registering.
|
88
|
+
#
|
89
|
+
# <note markdown="1"> You can only register domains designated as `AVAILABLE`.
|
90
|
+
#
|
91
|
+
# </note>
|
92
|
+
#
|
93
|
+
# Valid values:
|
94
|
+
#
|
95
|
+
# AVAILABLE
|
96
|
+
#
|
97
|
+
# : The domain name is available.
|
98
|
+
#
|
99
|
+
# AVAILABLE\_RESERVED
|
100
|
+
#
|
101
|
+
# : The domain name is reserved under specific conditions.
|
102
|
+
#
|
103
|
+
# AVAILABLE\_PREORDER
|
104
|
+
#
|
105
|
+
# : The domain name is available and can be preordered.
|
106
|
+
#
|
107
|
+
# DONT\_KNOW
|
108
|
+
#
|
109
|
+
# : The TLD registry didn't reply with a definitive answer about
|
110
|
+
# whether the domain name is available. Amazon Route 53 can return
|
111
|
+
# this response for a variety of reasons, for example, the registry
|
112
|
+
# is performing maintenance. Try again later.
|
113
|
+
#
|
114
|
+
# PENDING
|
115
|
+
#
|
116
|
+
# : The TLD registry didn't return a response in the expected amount
|
117
|
+
# of time. When the response is delayed, it usually takes just a few
|
118
|
+
# extra seconds. You can resubmit the request immediately.
|
119
|
+
#
|
120
|
+
# RESERVED
|
121
|
+
#
|
122
|
+
# : The domain name has been reserved for another person or
|
123
|
+
# organization.
|
124
|
+
#
|
125
|
+
# UNAVAILABLE
|
126
|
+
#
|
127
|
+
# : The domain name is not available.
|
128
|
+
#
|
129
|
+
# UNAVAILABLE\_PREMIUM
|
130
|
+
#
|
131
|
+
# : The domain name is not available.
|
132
|
+
#
|
133
|
+
# UNAVAILABLE\_RESTRICTED
|
134
|
+
#
|
135
|
+
# : The domain name is forbidden.
|
136
|
+
# @return [String]
|
137
|
+
#
|
138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainAvailabilityResponse AWS API Documentation
|
139
|
+
#
|
140
|
+
class CheckDomainAvailabilityResponse < Struct.new(
|
141
|
+
:availability)
|
142
|
+
include Aws::Structure
|
143
|
+
end
|
369
144
|
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
145
|
+
# ContactDetail includes the following elements.
|
146
|
+
#
|
147
|
+
# @note When making an API call, you may pass ContactDetail
|
148
|
+
# data as a hash:
|
149
|
+
#
|
150
|
+
# {
|
151
|
+
# first_name: "ContactName",
|
152
|
+
# last_name: "ContactName",
|
153
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
154
|
+
# organization_name: "ContactName",
|
155
|
+
# address_line_1: "AddressLine",
|
156
|
+
# address_line_2: "AddressLine",
|
157
|
+
# city: "City",
|
158
|
+
# state: "State",
|
159
|
+
# 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
|
160
|
+
# zip_code: "ZipCode",
|
161
|
+
# phone_number: "ContactNumber",
|
162
|
+
# email: "Email",
|
163
|
+
# fax: "ContactNumber",
|
164
|
+
# extra_params: [
|
165
|
+
# {
|
166
|
+
# 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
|
167
|
+
# value: "ExtraParamValue", # required
|
168
|
+
# },
|
169
|
+
# ],
|
170
|
+
# }
|
171
|
+
#
|
172
|
+
# @!attribute [rw] first_name
|
173
|
+
# First name of contact.
|
174
|
+
# @return [String]
|
175
|
+
#
|
176
|
+
# @!attribute [rw] last_name
|
177
|
+
# Last name of contact.
|
178
|
+
# @return [String]
|
179
|
+
#
|
180
|
+
# @!attribute [rw] contact_type
|
181
|
+
# Indicates whether the contact is a person, company, association, or
|
182
|
+
# public organization. If you choose an option other than `PERSON`,
|
183
|
+
# you must enter an organization name, and you can't enable privacy
|
184
|
+
# protection for the contact.
|
185
|
+
# @return [String]
|
186
|
+
#
|
187
|
+
# @!attribute [rw] organization_name
|
188
|
+
# Name of the organization for contact types other than `PERSON`.
|
189
|
+
# @return [String]
|
190
|
+
#
|
191
|
+
# @!attribute [rw] address_line_1
|
192
|
+
# First line of the contact's address.
|
193
|
+
# @return [String]
|
194
|
+
#
|
195
|
+
# @!attribute [rw] address_line_2
|
196
|
+
# Second line of contact's address, if any.
|
197
|
+
# @return [String]
|
198
|
+
#
|
199
|
+
# @!attribute [rw] city
|
200
|
+
# The city of the contact's address.
|
201
|
+
# @return [String]
|
202
|
+
#
|
203
|
+
# @!attribute [rw] state
|
204
|
+
# The state or province of the contact's city.
|
205
|
+
# @return [String]
|
206
|
+
#
|
207
|
+
# @!attribute [rw] country_code
|
208
|
+
# Code for the country of the contact's address.
|
209
|
+
# @return [String]
|
210
|
+
#
|
211
|
+
# @!attribute [rw] zip_code
|
212
|
+
# The zip or postal code of the contact's address.
|
213
|
+
# @return [String]
|
214
|
+
#
|
215
|
+
# @!attribute [rw] phone_number
|
216
|
+
# The phone number of the contact.
|
217
|
+
#
|
218
|
+
# Constraints: Phone number must be specified in the format
|
219
|
+
# "+\[country dialing code\].\[number including any area
|
220
|
+
# code>\]". For example, a US phone number might appear as
|
221
|
+
# `"+1.1234567890"`.
|
222
|
+
# @return [String]
|
223
|
+
#
|
224
|
+
# @!attribute [rw] email
|
225
|
+
# Email address of the contact.
|
226
|
+
# @return [String]
|
227
|
+
#
|
228
|
+
# @!attribute [rw] fax
|
229
|
+
# Fax number of the contact.
|
230
|
+
#
|
231
|
+
# Constraints: Phone number must be specified in the format
|
232
|
+
# "+\[country dialing code\].\[number including any area code\]".
|
233
|
+
# For example, a US phone number might appear as `"+1.1234567890"`.
|
234
|
+
# @return [String]
|
235
|
+
#
|
236
|
+
# @!attribute [rw] extra_params
|
237
|
+
# A list of name-value pairs for parameters required by certain
|
238
|
+
# top-level domains.
|
239
|
+
# @return [Array<Types::ExtraParam>]
|
240
|
+
#
|
241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ContactDetail AWS API Documentation
|
242
|
+
#
|
243
|
+
class ContactDetail < Struct.new(
|
244
|
+
:first_name,
|
245
|
+
:last_name,
|
246
|
+
:contact_type,
|
247
|
+
:organization_name,
|
248
|
+
:address_line_1,
|
249
|
+
:address_line_2,
|
250
|
+
:city,
|
251
|
+
:state,
|
252
|
+
:country_code,
|
253
|
+
:zip_code,
|
254
|
+
:phone_number,
|
255
|
+
:email,
|
256
|
+
:fax,
|
257
|
+
:extra_params)
|
258
|
+
include Aws::Structure
|
259
|
+
end
|
414
260
|
|
415
|
-
|
261
|
+
# The DeleteTagsForDomainRequest includes the following elements.
|
262
|
+
#
|
263
|
+
# @note When making an API call, you may pass DeleteTagsForDomainRequest
|
264
|
+
# data as a hash:
|
265
|
+
#
|
266
|
+
# {
|
267
|
+
# domain_name: "DomainName", # required
|
268
|
+
# tags_to_delete: ["TagKey"], # required
|
269
|
+
# }
|
270
|
+
#
|
271
|
+
# @!attribute [rw] domain_name
|
272
|
+
# The domain for which you want to delete one or more tags.
|
273
|
+
# @return [String]
|
274
|
+
#
|
275
|
+
# @!attribute [rw] tags_to_delete
|
276
|
+
# A list of tag keys to delete.
|
277
|
+
# @return [Array<String>]
|
278
|
+
#
|
279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DeleteTagsForDomainRequest AWS API Documentation
|
280
|
+
#
|
281
|
+
class DeleteTagsForDomainRequest < Struct.new(
|
282
|
+
:domain_name,
|
283
|
+
:tags_to_delete)
|
284
|
+
include Aws::Structure
|
285
|
+
end
|
416
286
|
|
417
|
-
|
418
|
-
|
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
|
287
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DeleteTagsForDomainResponse AWS API Documentation
|
288
|
+
#
|
289
|
+
class DeleteTagsForDomainResponse < Aws::EmptyStructure; end
|
429
290
|
|
430
|
-
|
291
|
+
# @note When making an API call, you may pass DisableDomainAutoRenewRequest
|
292
|
+
# data as a hash:
|
293
|
+
#
|
294
|
+
# {
|
295
|
+
# domain_name: "DomainName", # required
|
296
|
+
# }
|
297
|
+
#
|
298
|
+
# @!attribute [rw] domain_name
|
299
|
+
# The name of the domain that you want to disable automatic renewal
|
300
|
+
# for.
|
301
|
+
# @return [String]
|
302
|
+
#
|
303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainAutoRenewRequest AWS API Documentation
|
304
|
+
#
|
305
|
+
class DisableDomainAutoRenewRequest < Struct.new(
|
306
|
+
:domain_name)
|
307
|
+
include Aws::Structure
|
308
|
+
end
|
431
309
|
|
432
|
-
|
433
|
-
|
434
|
-
|
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
|
310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainAutoRenewResponse AWS API Documentation
|
311
|
+
#
|
312
|
+
class DisableDomainAutoRenewResponse < Aws::EmptyStructure; end
|
456
313
|
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
314
|
+
# The DisableDomainTransferLock request includes the following element.
|
315
|
+
#
|
316
|
+
# @note When making an API call, you may pass DisableDomainTransferLockRequest
|
317
|
+
# data as a hash:
|
318
|
+
#
|
319
|
+
# {
|
320
|
+
# domain_name: "DomainName", # required
|
321
|
+
# }
|
322
|
+
#
|
323
|
+
# @!attribute [rw] domain_name
|
324
|
+
# The name of the domain that you want to remove the transfer lock
|
325
|
+
# for.
|
326
|
+
# @return [String]
|
327
|
+
#
|
328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainTransferLockRequest AWS API Documentation
|
329
|
+
#
|
330
|
+
class DisableDomainTransferLockRequest < Struct.new(
|
331
|
+
:domain_name)
|
332
|
+
include Aws::Structure
|
333
|
+
end
|
472
334
|
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
335
|
+
# The DisableDomainTransferLock response includes the following element.
|
336
|
+
#
|
337
|
+
# @!attribute [rw] operation_id
|
338
|
+
# Identifier for tracking the progress of the request. To use this ID
|
339
|
+
# to query the operation status, use GetOperationDetail.
|
340
|
+
# @return [String]
|
341
|
+
#
|
342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DisableDomainTransferLockResponse AWS API Documentation
|
343
|
+
#
|
344
|
+
class DisableDomainTransferLockResponse < Struct.new(
|
345
|
+
:operation_id)
|
346
|
+
include Aws::Structure
|
347
|
+
end
|
483
348
|
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
349
|
+
# Information about one suggested domain name.
|
350
|
+
#
|
351
|
+
# @!attribute [rw] domain_name
|
352
|
+
# A suggested domain name.
|
353
|
+
# @return [String]
|
354
|
+
#
|
355
|
+
# @!attribute [rw] availability
|
356
|
+
# Whether the domain name is available for registering.
|
357
|
+
#
|
358
|
+
# <note markdown="1"> You can register only the domains that are designated as
|
359
|
+
# `AVAILABLE`.
|
360
|
+
#
|
361
|
+
# </note>
|
362
|
+
#
|
363
|
+
# Valid values:
|
364
|
+
#
|
365
|
+
# AVAILABLE
|
366
|
+
#
|
367
|
+
# : The domain name is available.
|
368
|
+
#
|
369
|
+
# AVAILABLE\_RESERVED
|
370
|
+
#
|
371
|
+
# : The domain name is reserved under specific conditions.
|
372
|
+
#
|
373
|
+
# AVAILABLE\_PREORDER
|
374
|
+
#
|
375
|
+
# : The domain name is available and can be preordered.
|
376
|
+
#
|
377
|
+
# DONT\_KNOW
|
378
|
+
#
|
379
|
+
# : The TLD registry didn't reply with a definitive answer about
|
380
|
+
# whether the domain name is available. Amazon Route 53 can return
|
381
|
+
# this response for a variety of reasons, for example, the registry
|
382
|
+
# is performing maintenance. Try again later.
|
383
|
+
#
|
384
|
+
# PENDING
|
385
|
+
#
|
386
|
+
# : The TLD registry didn't return a response in the expected amount
|
387
|
+
# of time. When the response is delayed, it usually takes just a few
|
388
|
+
# extra seconds. You can resubmit the request immediately.
|
389
|
+
#
|
390
|
+
# RESERVED
|
391
|
+
#
|
392
|
+
# : The domain name has been reserved for another person or
|
393
|
+
# organization.
|
394
|
+
#
|
395
|
+
# UNAVAILABLE
|
396
|
+
#
|
397
|
+
# : The domain name is not available.
|
398
|
+
#
|
399
|
+
# UNAVAILABLE\_PREMIUM
|
400
|
+
#
|
401
|
+
# : The domain name is not available.
|
402
|
+
#
|
403
|
+
# UNAVAILABLE\_RESTRICTED
|
404
|
+
#
|
405
|
+
# : The domain name is forbidden.
|
406
|
+
# @return [String]
|
407
|
+
#
|
408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DomainSuggestion AWS API Documentation
|
409
|
+
#
|
410
|
+
class DomainSuggestion < Struct.new(
|
411
|
+
:domain_name,
|
412
|
+
:availability)
|
413
|
+
include Aws::Structure
|
414
|
+
end
|
520
415
|
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
416
|
+
# Summary information about one domain.
|
417
|
+
#
|
418
|
+
# @!attribute [rw] domain_name
|
419
|
+
# The name of the domain that the summary information applies to.
|
420
|
+
# @return [String]
|
421
|
+
#
|
422
|
+
# @!attribute [rw] auto_renew
|
423
|
+
# Indicates whether the domain is automatically renewed upon
|
424
|
+
# expiration.
|
425
|
+
# @return [Boolean]
|
426
|
+
#
|
427
|
+
# @!attribute [rw] transfer_lock
|
428
|
+
# Indicates whether a domain is locked from unauthorized transfer to
|
429
|
+
# another party.
|
430
|
+
# @return [Boolean]
|
431
|
+
#
|
432
|
+
# @!attribute [rw] expiry
|
433
|
+
# Expiration date of the domain in Coordinated Universal Time (UTC).
|
434
|
+
# @return [Time]
|
435
|
+
#
|
436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DomainSummary AWS API Documentation
|
437
|
+
#
|
438
|
+
class DomainSummary < Struct.new(
|
439
|
+
:domain_name,
|
440
|
+
:auto_renew,
|
441
|
+
:transfer_lock,
|
442
|
+
:expiry)
|
443
|
+
include Aws::Structure
|
444
|
+
end
|
533
445
|
|
534
|
-
|
446
|
+
# @note When making an API call, you may pass EnableDomainAutoRenewRequest
|
447
|
+
# data as a hash:
|
448
|
+
#
|
449
|
+
# {
|
450
|
+
# domain_name: "DomainName", # required
|
451
|
+
# }
|
452
|
+
#
|
453
|
+
# @!attribute [rw] domain_name
|
454
|
+
# The name of the domain that you want to enable automatic renewal
|
455
|
+
# for.
|
456
|
+
# @return [String]
|
457
|
+
#
|
458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/EnableDomainAutoRenewRequest AWS API Documentation
|
459
|
+
#
|
460
|
+
class EnableDomainAutoRenewRequest < Struct.new(
|
461
|
+
:domain_name)
|
462
|
+
include Aws::Structure
|
463
|
+
end
|
535
464
|
|
536
|
-
|
537
|
-
|
538
|
-
|
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
|
465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/EnableDomainAutoRenewResponse AWS API Documentation
|
466
|
+
#
|
467
|
+
class EnableDomainAutoRenewResponse < Aws::EmptyStructure; end
|
560
468
|
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
469
|
+
# A request to set the transfer lock for the specified domain.
|
470
|
+
#
|
471
|
+
# @note When making an API call, you may pass EnableDomainTransferLockRequest
|
472
|
+
# data as a hash:
|
473
|
+
#
|
474
|
+
# {
|
475
|
+
# domain_name: "DomainName", # required
|
476
|
+
# }
|
477
|
+
#
|
478
|
+
# @!attribute [rw] domain_name
|
479
|
+
# The name of the domain that you want to set the transfer lock for.
|
480
|
+
# @return [String]
|
481
|
+
#
|
482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/EnableDomainTransferLockRequest AWS API Documentation
|
483
|
+
#
|
484
|
+
class EnableDomainTransferLockRequest < Struct.new(
|
485
|
+
:domain_name)
|
486
|
+
include Aws::Structure
|
487
|
+
end
|
576
488
|
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
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
|
489
|
+
# The EnableDomainTransferLock response includes the following elements.
|
490
|
+
#
|
491
|
+
# @!attribute [rw] operation_id
|
492
|
+
# Identifier for tracking the progress of the request. To use this ID
|
493
|
+
# to query the operation status, use GetOperationDetail.
|
494
|
+
# @return [String]
|
495
|
+
#
|
496
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/EnableDomainTransferLockResponse AWS API Documentation
|
497
|
+
#
|
498
|
+
class EnableDomainTransferLockResponse < Struct.new(
|
499
|
+
:operation_id)
|
500
|
+
include Aws::Structure
|
501
|
+
end
|
625
502
|
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
503
|
+
# ExtraParam includes the following elements.
|
504
|
+
#
|
505
|
+
# @note When making an API call, you may pass ExtraParam
|
506
|
+
# data as a hash:
|
507
|
+
#
|
508
|
+
# {
|
509
|
+
# 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
|
510
|
+
# value: "ExtraParamValue", # required
|
511
|
+
# }
|
512
|
+
#
|
513
|
+
# @!attribute [rw] name
|
514
|
+
# Name of the additional parameter required by the top-level domain.
|
515
|
+
# @return [String]
|
516
|
+
#
|
517
|
+
# @!attribute [rw] value
|
518
|
+
# Values corresponding to the additional parameter names required by
|
519
|
+
# some top-level domains.
|
520
|
+
# @return [String]
|
521
|
+
#
|
522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ExtraParam AWS API Documentation
|
523
|
+
#
|
524
|
+
class ExtraParam < Struct.new(
|
525
|
+
:name,
|
526
|
+
:value)
|
527
|
+
include Aws::Structure
|
528
|
+
end
|
646
529
|
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
include Aws::Structure
|
666
|
-
end
|
530
|
+
# @note When making an API call, you may pass GetContactReachabilityStatusRequest
|
531
|
+
# data as a hash:
|
532
|
+
#
|
533
|
+
# {
|
534
|
+
# domain_name: "DomainName",
|
535
|
+
# }
|
536
|
+
#
|
537
|
+
# @!attribute [rw] domain_name
|
538
|
+
# The name of the domain for which you want to know whether the
|
539
|
+
# registrant contact has confirmed that the email address is valid.
|
540
|
+
# @return [String]
|
541
|
+
#
|
542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetContactReachabilityStatusRequest AWS API Documentation
|
543
|
+
#
|
544
|
+
class GetContactReachabilityStatusRequest < Struct.new(
|
545
|
+
:domain_name)
|
546
|
+
include Aws::Structure
|
547
|
+
end
|
667
548
|
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
549
|
+
# @!attribute [rw] domain_name
|
550
|
+
# The domain name for which you requested the reachability status.
|
551
|
+
# @return [String]
|
552
|
+
#
|
553
|
+
# @!attribute [rw] status
|
554
|
+
# Whether the registrant contact has responded. Values include the
|
555
|
+
# following:
|
556
|
+
#
|
557
|
+
# PENDING
|
558
|
+
#
|
559
|
+
# : We sent the confirmation email and haven't received a response
|
560
|
+
# yet.
|
561
|
+
#
|
562
|
+
# DONE
|
563
|
+
#
|
564
|
+
# : We sent the email and got confirmation from the registrant
|
565
|
+
# contact.
|
566
|
+
#
|
567
|
+
# EXPIRED
|
568
|
+
#
|
569
|
+
# : The time limit expired before the registrant contact responded.
|
570
|
+
# @return [String]
|
571
|
+
#
|
572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetContactReachabilityStatusResponse AWS API Documentation
|
573
|
+
#
|
574
|
+
class GetContactReachabilityStatusResponse < Struct.new(
|
575
|
+
:domain_name,
|
576
|
+
:status)
|
577
|
+
include Aws::Structure
|
578
|
+
end
|
692
579
|
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
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
|
580
|
+
# The GetDomainDetail request includes the following element.
|
581
|
+
#
|
582
|
+
# @note When making an API call, you may pass GetDomainDetailRequest
|
583
|
+
# data as a hash:
|
584
|
+
#
|
585
|
+
# {
|
586
|
+
# domain_name: "DomainName", # required
|
587
|
+
# }
|
588
|
+
#
|
589
|
+
# @!attribute [rw] domain_name
|
590
|
+
# The name of the domain that you want to get detailed information
|
591
|
+
# about.
|
592
|
+
# @return [String]
|
593
|
+
#
|
594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainDetailRequest AWS API Documentation
|
595
|
+
#
|
596
|
+
class GetDomainDetailRequest < Struct.new(
|
597
|
+
:domain_name)
|
598
|
+
include Aws::Structure
|
599
|
+
end
|
885
600
|
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
601
|
+
# The GetDomainDetail response includes the following elements.
|
602
|
+
#
|
603
|
+
# @!attribute [rw] domain_name
|
604
|
+
# The name of a domain.
|
605
|
+
# @return [String]
|
606
|
+
#
|
607
|
+
# @!attribute [rw] nameservers
|
608
|
+
# The name of the domain.
|
609
|
+
# @return [Array<Types::Nameserver>]
|
610
|
+
#
|
611
|
+
# @!attribute [rw] auto_renew
|
612
|
+
# Specifies whether the domain registration is set to renew
|
613
|
+
# automatically.
|
614
|
+
# @return [Boolean]
|
615
|
+
#
|
616
|
+
# @!attribute [rw] admin_contact
|
617
|
+
# Provides details about the domain administrative contact.
|
618
|
+
# @return [Types::ContactDetail]
|
619
|
+
#
|
620
|
+
# @!attribute [rw] registrant_contact
|
621
|
+
# Provides details about the domain registrant.
|
622
|
+
# @return [Types::ContactDetail]
|
623
|
+
#
|
624
|
+
# @!attribute [rw] tech_contact
|
625
|
+
# Provides details about the domain technical contact.
|
626
|
+
# @return [Types::ContactDetail]
|
627
|
+
#
|
628
|
+
# @!attribute [rw] admin_privacy
|
629
|
+
# Specifies whether contact information for the admin contact is
|
630
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
631
|
+
# is") queries will return contact information for our registrar
|
632
|
+
# partner, Gandi, instead of the contact information that you enter.
|
633
|
+
# @return [Boolean]
|
634
|
+
#
|
635
|
+
# @!attribute [rw] registrant_privacy
|
636
|
+
# Specifies whether contact information for the registrant contact is
|
637
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
638
|
+
# is") queries will return contact information for our registrar
|
639
|
+
# partner, Gandi, instead of the contact information that you enter.
|
640
|
+
# @return [Boolean]
|
641
|
+
#
|
642
|
+
# @!attribute [rw] tech_privacy
|
643
|
+
# Specifies whether contact information for the tech contact is
|
644
|
+
# concealed from WHOIS queries. If the value is `true`, WHOIS ("who
|
645
|
+
# is") queries will return contact information for our registrar
|
646
|
+
# partner, Gandi, instead of the contact information that you enter.
|
647
|
+
# @return [Boolean]
|
648
|
+
#
|
649
|
+
# @!attribute [rw] registrar_name
|
650
|
+
# Name of the registrar of the domain as identified in the registry.
|
651
|
+
# Amazon Route 53 domains are registered by registrar Gandi. The value
|
652
|
+
# is `"GANDI SAS"`.
|
653
|
+
# @return [String]
|
654
|
+
#
|
655
|
+
# @!attribute [rw] who_is_server
|
656
|
+
# The fully qualified name of the WHOIS server that can answer the
|
657
|
+
# WHOIS query for the domain.
|
658
|
+
# @return [String]
|
659
|
+
#
|
660
|
+
# @!attribute [rw] registrar_url
|
661
|
+
# Web address of the registrar.
|
662
|
+
# @return [String]
|
663
|
+
#
|
664
|
+
# @!attribute [rw] abuse_contact_email
|
665
|
+
# Email address to contact to report incorrect contact information for
|
666
|
+
# a domain, to report that the domain is being used to send spam, to
|
667
|
+
# report that someone is cybersquatting on a domain name, or report
|
668
|
+
# some other type of abuse.
|
669
|
+
# @return [String]
|
670
|
+
#
|
671
|
+
# @!attribute [rw] abuse_contact_phone
|
672
|
+
# Phone number for reporting abuse.
|
673
|
+
# @return [String]
|
674
|
+
#
|
675
|
+
# @!attribute [rw] registry_domain_id
|
676
|
+
# Reserved for future use.
|
677
|
+
# @return [String]
|
678
|
+
#
|
679
|
+
# @!attribute [rw] creation_date
|
680
|
+
# The date when the domain was created as found in the response to a
|
681
|
+
# WHOIS query. The date format is Unix time.
|
682
|
+
# @return [Time]
|
683
|
+
#
|
684
|
+
# @!attribute [rw] updated_date
|
685
|
+
# The last updated date of the domain as found in the response to a
|
686
|
+
# WHOIS query. The date format is Unix time.
|
687
|
+
# @return [Time]
|
688
|
+
#
|
689
|
+
# @!attribute [rw] expiration_date
|
690
|
+
# The date when the registration for the domain is set to expire. The
|
691
|
+
# date format is Unix time.
|
692
|
+
# @return [Time]
|
693
|
+
#
|
694
|
+
# @!attribute [rw] reseller
|
695
|
+
# Reseller of the domain. Domains registered or transferred using
|
696
|
+
# Amazon Route 53 domains will have `"Amazon"` as the reseller.
|
697
|
+
# @return [String]
|
698
|
+
#
|
699
|
+
# @!attribute [rw] dns_sec
|
700
|
+
# Reserved for future use.
|
701
|
+
# @return [String]
|
702
|
+
#
|
703
|
+
# @!attribute [rw] status_list
|
704
|
+
# An array of domain name status codes, also known as Extensible
|
705
|
+
# Provisioning Protocol (EPP) status codes.
|
706
|
+
#
|
707
|
+
# ICANN, the organization that maintains a central database of domain
|
708
|
+
# names, has developed a set of domain name status codes that tell you
|
709
|
+
# the status of a variety of operations on a domain name, for example,
|
710
|
+
# registering a domain name, transferring a domain name to another
|
711
|
+
# registrar, renewing the registration for a domain name, and so on.
|
712
|
+
# All registrars use this same set of status codes.
|
713
|
+
#
|
714
|
+
# For a current list of domain name status codes and an explanation of
|
715
|
+
# what each code means, go to the [ICANN website][1] and search for
|
716
|
+
# `epp status codes`. (Search on the ICANN website; web searches
|
717
|
+
# sometimes return an old version of the document.)
|
718
|
+
#
|
719
|
+
#
|
720
|
+
#
|
721
|
+
# [1]: https://www.icann.org/
|
722
|
+
# @return [Array<String>]
|
723
|
+
#
|
724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainDetailResponse AWS API Documentation
|
725
|
+
#
|
726
|
+
class GetDomainDetailResponse < Struct.new(
|
727
|
+
:domain_name,
|
728
|
+
:nameservers,
|
729
|
+
:auto_renew,
|
730
|
+
:admin_contact,
|
731
|
+
:registrant_contact,
|
732
|
+
:tech_contact,
|
733
|
+
:admin_privacy,
|
734
|
+
:registrant_privacy,
|
735
|
+
:tech_privacy,
|
736
|
+
:registrar_name,
|
737
|
+
:who_is_server,
|
738
|
+
:registrar_url,
|
739
|
+
:abuse_contact_email,
|
740
|
+
:abuse_contact_phone,
|
741
|
+
:registry_domain_id,
|
742
|
+
:creation_date,
|
743
|
+
:updated_date,
|
744
|
+
:expiration_date,
|
745
|
+
:reseller,
|
746
|
+
:dns_sec,
|
747
|
+
:status_list)
|
748
|
+
include Aws::Structure
|
749
|
+
end
|
908
750
|
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
751
|
+
# @note When making an API call, you may pass GetDomainSuggestionsRequest
|
752
|
+
# data as a hash:
|
753
|
+
#
|
754
|
+
# {
|
755
|
+
# domain_name: "DomainName", # required
|
756
|
+
# suggestion_count: 1, # required
|
757
|
+
# only_available: false, # required
|
758
|
+
# }
|
759
|
+
#
|
760
|
+
# @!attribute [rw] domain_name
|
761
|
+
# A domain name that you want to use as the basis for a list of
|
762
|
+
# possible domain names. The domain name must contain a top-level
|
763
|
+
# domain (TLD), such as .com, that Amazon Route 53 supports. For a
|
764
|
+
# list of TLDs, see [Domains that You Can Register with Amazon Route
|
765
|
+
# 53][1] in the *Amazon Route 53 Developer Guide*.
|
766
|
+
#
|
767
|
+
#
|
768
|
+
#
|
769
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
770
|
+
# @return [String]
|
771
|
+
#
|
772
|
+
# @!attribute [rw] suggestion_count
|
773
|
+
# The number of suggested domain names that you want Amazon Route 53
|
774
|
+
# to return.
|
775
|
+
# @return [Integer]
|
776
|
+
#
|
777
|
+
# @!attribute [rw] only_available
|
778
|
+
# If `OnlyAvailable` is `true`, Amazon Route 53 returns only domain
|
779
|
+
# names that are available. If `OnlyAvailable` is `false`, Amazon
|
780
|
+
# Route 53 returns domain names without checking whether they're
|
781
|
+
# available to be registered. To determine whether the domain is
|
782
|
+
# available, you can call `checkDomainAvailability` for each
|
783
|
+
# suggestion.
|
784
|
+
# @return [Boolean]
|
785
|
+
#
|
786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainSuggestionsRequest AWS API Documentation
|
787
|
+
#
|
788
|
+
class GetDomainSuggestionsRequest < Struct.new(
|
789
|
+
:domain_name,
|
790
|
+
:suggestion_count,
|
791
|
+
:only_available)
|
792
|
+
include Aws::Structure
|
793
|
+
end
|
915
794
|
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
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
|
795
|
+
# @!attribute [rw] suggestions_list
|
796
|
+
# A list of possible domain names. If you specified `true` for
|
797
|
+
# `OnlyAvailable` in the request, the list contains only domains that
|
798
|
+
# are available for registration.
|
799
|
+
# @return [Array<Types::DomainSuggestion>]
|
800
|
+
#
|
801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainSuggestionsResponse AWS API Documentation
|
802
|
+
#
|
803
|
+
class GetDomainSuggestionsResponse < Struct.new(
|
804
|
+
:suggestions_list)
|
805
|
+
include Aws::Structure
|
806
|
+
end
|
938
807
|
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
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
|
808
|
+
# The GetOperationDetail request includes the following element.
|
809
|
+
#
|
810
|
+
# @note When making an API call, you may pass GetOperationDetailRequest
|
811
|
+
# data as a hash:
|
812
|
+
#
|
813
|
+
# {
|
814
|
+
# operation_id: "OperationId", # required
|
815
|
+
# }
|
816
|
+
#
|
817
|
+
# @!attribute [rw] operation_id
|
818
|
+
# The identifier for the operation for which you want to get the
|
819
|
+
# status. Amazon Route 53 returned the identifier in the response to
|
820
|
+
# the original request.
|
821
|
+
# @return [String]
|
822
|
+
#
|
823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetailRequest AWS API Documentation
|
824
|
+
#
|
825
|
+
class GetOperationDetailRequest < Struct.new(
|
826
|
+
:operation_id)
|
827
|
+
include Aws::Structure
|
828
|
+
end
|
982
829
|
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
# @return [Integer]
|
1021
|
-
class ListDomainsRequest < Struct.new(
|
1022
|
-
:marker,
|
1023
|
-
:max_items)
|
1024
|
-
include Aws::Structure
|
1025
|
-
end
|
830
|
+
# The GetOperationDetail response includes the following elements.
|
831
|
+
#
|
832
|
+
# @!attribute [rw] operation_id
|
833
|
+
# The identifier for the operation.
|
834
|
+
# @return [String]
|
835
|
+
#
|
836
|
+
# @!attribute [rw] status
|
837
|
+
# The current status of the requested operation in the system.
|
838
|
+
# @return [String]
|
839
|
+
#
|
840
|
+
# @!attribute [rw] message
|
841
|
+
# Detailed information on the status including possible errors.
|
842
|
+
# @return [String]
|
843
|
+
#
|
844
|
+
# @!attribute [rw] domain_name
|
845
|
+
# The name of a domain.
|
846
|
+
# @return [String]
|
847
|
+
#
|
848
|
+
# @!attribute [rw] type
|
849
|
+
# The type of operation that was requested.
|
850
|
+
# @return [String]
|
851
|
+
#
|
852
|
+
# @!attribute [rw] submitted_date
|
853
|
+
# The date when the request was submitted.
|
854
|
+
# @return [Time]
|
855
|
+
#
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetailResponse AWS API Documentation
|
857
|
+
#
|
858
|
+
class GetOperationDetailResponse < Struct.new(
|
859
|
+
:operation_id,
|
860
|
+
:status,
|
861
|
+
:message,
|
862
|
+
:domain_name,
|
863
|
+
:type,
|
864
|
+
:submitted_date)
|
865
|
+
include Aws::Structure
|
866
|
+
end
|
1026
867
|
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
868
|
+
# The ListDomains request includes the following elements.
|
869
|
+
#
|
870
|
+
# @note When making an API call, you may pass ListDomainsRequest
|
871
|
+
# data as a hash:
|
872
|
+
#
|
873
|
+
# {
|
874
|
+
# marker: "PageMarker",
|
875
|
+
# max_items: 1,
|
876
|
+
# }
|
877
|
+
#
|
878
|
+
# @!attribute [rw] marker
|
879
|
+
# For an initial request for a list of domains, omit this element. If
|
880
|
+
# the number of domains that are associated with the current AWS
|
881
|
+
# account is greater than the value that you specified for `MaxItems`,
|
882
|
+
# you can use `Marker` to return additional domains. Get the value of
|
883
|
+
# `NextPageMarker` from the previous response, and submit another
|
884
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
885
|
+
# element.
|
886
|
+
#
|
887
|
+
# Constraints: The marker must match the value specified in the
|
888
|
+
# previous request.
|
889
|
+
# @return [String]
|
890
|
+
#
|
891
|
+
# @!attribute [rw] max_items
|
892
|
+
# Number of domains to be returned.
|
893
|
+
#
|
894
|
+
# Default: 20
|
895
|
+
# @return [Integer]
|
896
|
+
#
|
897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListDomainsRequest AWS API Documentation
|
898
|
+
#
|
899
|
+
class ListDomainsRequest < Struct.new(
|
900
|
+
:marker,
|
901
|
+
:max_items)
|
902
|
+
include Aws::Structure
|
903
|
+
end
|
1050
904
|
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
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
|
905
|
+
# The ListDomains response includes the following elements.
|
906
|
+
#
|
907
|
+
# @!attribute [rw] domains
|
908
|
+
# A summary of domains.
|
909
|
+
# @return [Array<Types::DomainSummary>]
|
910
|
+
#
|
911
|
+
# @!attribute [rw] next_page_marker
|
912
|
+
# If there are more domains than you specified for `MaxItems` in the
|
913
|
+
# request, submit another request and include the value of
|
914
|
+
# `NextPageMarker` in the value of `Marker`.
|
915
|
+
# @return [String]
|
916
|
+
#
|
917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListDomainsResponse AWS API Documentation
|
918
|
+
#
|
919
|
+
class ListDomainsResponse < Struct.new(
|
920
|
+
:domains,
|
921
|
+
:next_page_marker)
|
922
|
+
include Aws::Structure
|
923
|
+
end
|
1091
924
|
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
925
|
+
# The ListOperations request includes the following elements.
|
926
|
+
#
|
927
|
+
# @note When making an API call, you may pass ListOperationsRequest
|
928
|
+
# data as a hash:
|
929
|
+
#
|
930
|
+
# {
|
931
|
+
# marker: "PageMarker",
|
932
|
+
# max_items: 1,
|
933
|
+
# }
|
934
|
+
#
|
935
|
+
# @!attribute [rw] marker
|
936
|
+
# For an initial request for a list of operations, omit this element.
|
937
|
+
# If the number of operations that are not yet complete is greater
|
938
|
+
# than the value that you specified for `MaxItems`, you can use
|
939
|
+
# `Marker` to return additional operations. Get the value of
|
940
|
+
# `NextPageMarker` from the previous response, and submit another
|
941
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
942
|
+
# element.
|
943
|
+
# @return [String]
|
944
|
+
#
|
945
|
+
# @!attribute [rw] max_items
|
946
|
+
# Number of domains to be returned.
|
947
|
+
#
|
948
|
+
# Default: 20
|
949
|
+
# @return [Integer]
|
950
|
+
#
|
951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListOperationsRequest AWS API Documentation
|
952
|
+
#
|
953
|
+
class ListOperationsRequest < Struct.new(
|
954
|
+
:marker,
|
955
|
+
:max_items)
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
1115
958
|
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
959
|
+
# The ListOperations response includes the following elements.
|
960
|
+
#
|
961
|
+
# @!attribute [rw] operations
|
962
|
+
# Lists summaries of the operations.
|
963
|
+
# @return [Array<Types::OperationSummary>]
|
964
|
+
#
|
965
|
+
# @!attribute [rw] next_page_marker
|
966
|
+
# If there are more operations than you specified for `MaxItems` in
|
967
|
+
# the request, submit another request and include the value of
|
968
|
+
# `NextPageMarker` in the value of `Marker`.
|
969
|
+
# @return [String]
|
970
|
+
#
|
971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListOperationsResponse AWS API Documentation
|
972
|
+
#
|
973
|
+
class ListOperationsResponse < Struct.new(
|
974
|
+
:operations,
|
975
|
+
:next_page_marker)
|
976
|
+
include Aws::Structure
|
977
|
+
end
|
1130
978
|
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
# @return [Array<Types::Tag>]
|
1151
|
-
class ListTagsForDomainResponse < Struct.new(
|
1152
|
-
:tag_list)
|
1153
|
-
include Aws::Structure
|
1154
|
-
end
|
979
|
+
# The ListTagsForDomainRequest includes the following elements.
|
980
|
+
#
|
981
|
+
# @note When making an API call, you may pass ListTagsForDomainRequest
|
982
|
+
# data as a hash:
|
983
|
+
#
|
984
|
+
# {
|
985
|
+
# domain_name: "DomainName", # required
|
986
|
+
# }
|
987
|
+
#
|
988
|
+
# @!attribute [rw] domain_name
|
989
|
+
# The domain for which you want to get a list of tags.
|
990
|
+
# @return [String]
|
991
|
+
#
|
992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListTagsForDomainRequest AWS API Documentation
|
993
|
+
#
|
994
|
+
class ListTagsForDomainRequest < Struct.new(
|
995
|
+
:domain_name)
|
996
|
+
include Aws::Structure
|
997
|
+
end
|
1155
998
|
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
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
|
999
|
+
# The ListTagsForDomain response includes the following elements.
|
1000
|
+
#
|
1001
|
+
# @!attribute [rw] tag_list
|
1002
|
+
# A list of the tags that are associated with the specified domain.
|
1003
|
+
# @return [Array<Types::Tag>]
|
1004
|
+
#
|
1005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListTagsForDomainResponse AWS API Documentation
|
1006
|
+
#
|
1007
|
+
class ListTagsForDomainResponse < Struct.new(
|
1008
|
+
:tag_list)
|
1009
|
+
include Aws::Structure
|
1010
|
+
end
|
1193
1011
|
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1012
|
+
# Nameserver includes the following elements.
|
1013
|
+
#
|
1014
|
+
# @note When making an API call, you may pass Nameserver
|
1015
|
+
# data as a hash:
|
1016
|
+
#
|
1017
|
+
# {
|
1018
|
+
# name: "HostName", # required
|
1019
|
+
# glue_ips: ["GlueIp"],
|
1020
|
+
# }
|
1021
|
+
#
|
1022
|
+
# @!attribute [rw] name
|
1023
|
+
# The fully qualified host name of the name server.
|
1024
|
+
#
|
1025
|
+
# Constraint: Maximum 255 characters
|
1026
|
+
# @return [String]
|
1027
|
+
#
|
1028
|
+
# @!attribute [rw] glue_ips
|
1029
|
+
# Glue IP address of a name server entry. Glue IP addresses are
|
1030
|
+
# required only when the name of the name server is a subdomain of the
|
1031
|
+
# domain. For example, if your domain is example.com and the name
|
1032
|
+
# server for the domain is ns.example.com, you need to specify the IP
|
1033
|
+
# address for ns.example.com.
|
1034
|
+
#
|
1035
|
+
# Constraints: The list can contain only one IPv4 and one IPv6
|
1036
|
+
# address.
|
1037
|
+
# @return [Array<String>]
|
1038
|
+
#
|
1039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/Nameserver AWS API Documentation
|
1040
|
+
#
|
1041
|
+
class Nameserver < Struct.new(
|
1042
|
+
:name,
|
1043
|
+
:glue_ips)
|
1044
|
+
include Aws::Structure
|
1045
|
+
end
|
1227
1046
|
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
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
|
1047
|
+
# OperationSummary includes the following elements.
|
1048
|
+
#
|
1049
|
+
# @!attribute [rw] operation_id
|
1050
|
+
# Identifier returned to track the requested action.
|
1051
|
+
# @return [String]
|
1052
|
+
#
|
1053
|
+
# @!attribute [rw] status
|
1054
|
+
# The current status of the requested operation in the system.
|
1055
|
+
# @return [String]
|
1056
|
+
#
|
1057
|
+
# @!attribute [rw] type
|
1058
|
+
# Type of the action requested.
|
1059
|
+
# @return [String]
|
1060
|
+
#
|
1061
|
+
# @!attribute [rw] submitted_date
|
1062
|
+
# The date when the request was submitted.
|
1063
|
+
# @return [Time]
|
1064
|
+
#
|
1065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/OperationSummary AWS API Documentation
|
1066
|
+
#
|
1067
|
+
class OperationSummary < Struct.new(
|
1068
|
+
:operation_id,
|
1069
|
+
:status,
|
1070
|
+
:type,
|
1071
|
+
:submitted_date)
|
1072
|
+
include Aws::Structure
|
1073
|
+
end
|
1446
1074
|
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1075
|
+
# The RegisterDomain request includes the following elements.
|
1076
|
+
#
|
1077
|
+
# @note When making an API call, you may pass RegisterDomainRequest
|
1078
|
+
# data as a hash:
|
1079
|
+
#
|
1080
|
+
# {
|
1081
|
+
# domain_name: "DomainName", # required
|
1082
|
+
# idn_lang_code: "LangCode",
|
1083
|
+
# duration_in_years: 1, # required
|
1084
|
+
# auto_renew: false,
|
1085
|
+
# admin_contact: { # required
|
1086
|
+
# first_name: "ContactName",
|
1087
|
+
# last_name: "ContactName",
|
1088
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1089
|
+
# organization_name: "ContactName",
|
1090
|
+
# address_line_1: "AddressLine",
|
1091
|
+
# address_line_2: "AddressLine",
|
1092
|
+
# city: "City",
|
1093
|
+
# state: "State",
|
1094
|
+
# 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
|
1095
|
+
# zip_code: "ZipCode",
|
1096
|
+
# phone_number: "ContactNumber",
|
1097
|
+
# email: "Email",
|
1098
|
+
# fax: "ContactNumber",
|
1099
|
+
# extra_params: [
|
1100
|
+
# {
|
1101
|
+
# 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
|
1102
|
+
# value: "ExtraParamValue", # required
|
1103
|
+
# },
|
1104
|
+
# ],
|
1105
|
+
# },
|
1106
|
+
# registrant_contact: { # required
|
1107
|
+
# first_name: "ContactName",
|
1108
|
+
# last_name: "ContactName",
|
1109
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1110
|
+
# organization_name: "ContactName",
|
1111
|
+
# address_line_1: "AddressLine",
|
1112
|
+
# address_line_2: "AddressLine",
|
1113
|
+
# city: "City",
|
1114
|
+
# state: "State",
|
1115
|
+
# 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
|
1116
|
+
# zip_code: "ZipCode",
|
1117
|
+
# phone_number: "ContactNumber",
|
1118
|
+
# email: "Email",
|
1119
|
+
# fax: "ContactNumber",
|
1120
|
+
# extra_params: [
|
1121
|
+
# {
|
1122
|
+
# 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
|
1123
|
+
# value: "ExtraParamValue", # required
|
1124
|
+
# },
|
1125
|
+
# ],
|
1126
|
+
# },
|
1127
|
+
# tech_contact: { # required
|
1128
|
+
# first_name: "ContactName",
|
1129
|
+
# last_name: "ContactName",
|
1130
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1131
|
+
# organization_name: "ContactName",
|
1132
|
+
# address_line_1: "AddressLine",
|
1133
|
+
# address_line_2: "AddressLine",
|
1134
|
+
# city: "City",
|
1135
|
+
# state: "State",
|
1136
|
+
# 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
|
1137
|
+
# zip_code: "ZipCode",
|
1138
|
+
# phone_number: "ContactNumber",
|
1139
|
+
# email: "Email",
|
1140
|
+
# fax: "ContactNumber",
|
1141
|
+
# extra_params: [
|
1142
|
+
# {
|
1143
|
+
# 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
|
1144
|
+
# value: "ExtraParamValue", # required
|
1145
|
+
# },
|
1146
|
+
# ],
|
1147
|
+
# },
|
1148
|
+
# privacy_protect_admin_contact: false,
|
1149
|
+
# privacy_protect_registrant_contact: false,
|
1150
|
+
# privacy_protect_tech_contact: false,
|
1151
|
+
# }
|
1152
|
+
#
|
1153
|
+
# @!attribute [rw] domain_name
|
1154
|
+
# The domain name that you want to register.
|
1155
|
+
#
|
1156
|
+
# Constraints: The domain name can contain only the letters a through
|
1157
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1158
|
+
# Names are not supported.
|
1159
|
+
# @return [String]
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] idn_lang_code
|
1162
|
+
# Reserved for future use.
|
1163
|
+
# @return [String]
|
1164
|
+
#
|
1165
|
+
# @!attribute [rw] duration_in_years
|
1166
|
+
# The number of years that you want to register the domain for.
|
1167
|
+
# Domains are registered for a minimum of one year. The maximum period
|
1168
|
+
# depends on the top-level domain. For the range of valid values for
|
1169
|
+
# your domain, see [Domains that You Can Register with Amazon Route
|
1170
|
+
# 53][1] in the *Amazon Route 53 Developer Guide*.
|
1171
|
+
#
|
1172
|
+
# Default: 1
|
1173
|
+
#
|
1174
|
+
#
|
1175
|
+
#
|
1176
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1177
|
+
# @return [Integer]
|
1178
|
+
#
|
1179
|
+
# @!attribute [rw] auto_renew
|
1180
|
+
# Indicates whether the domain will be automatically renewed (`true`)
|
1181
|
+
# or not (`false`). Autorenewal only takes effect after the account is
|
1182
|
+
# charged.
|
1183
|
+
#
|
1184
|
+
# Default: `true`
|
1185
|
+
# @return [Boolean]
|
1186
|
+
#
|
1187
|
+
# @!attribute [rw] admin_contact
|
1188
|
+
# Provides detailed contact information.
|
1189
|
+
# @return [Types::ContactDetail]
|
1190
|
+
#
|
1191
|
+
# @!attribute [rw] registrant_contact
|
1192
|
+
# Provides detailed contact information.
|
1193
|
+
# @return [Types::ContactDetail]
|
1194
|
+
#
|
1195
|
+
# @!attribute [rw] tech_contact
|
1196
|
+
# Provides detailed contact information.
|
1197
|
+
# @return [Types::ContactDetail]
|
1198
|
+
#
|
1199
|
+
# @!attribute [rw] privacy_protect_admin_contact
|
1200
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1201
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1202
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1203
|
+
# contact information that you enter.
|
1204
|
+
#
|
1205
|
+
# Default: `true`
|
1206
|
+
# @return [Boolean]
|
1207
|
+
#
|
1208
|
+
# @!attribute [rw] privacy_protect_registrant_contact
|
1209
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1210
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1211
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1212
|
+
# contact information that you enter.
|
1213
|
+
#
|
1214
|
+
# Default: `true`
|
1215
|
+
# @return [Boolean]
|
1216
|
+
#
|
1217
|
+
# @!attribute [rw] privacy_protect_tech_contact
|
1218
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1219
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1220
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1221
|
+
# contact information that you enter.
|
1222
|
+
#
|
1223
|
+
# Default: `true`
|
1224
|
+
# @return [Boolean]
|
1225
|
+
#
|
1226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RegisterDomainRequest AWS API Documentation
|
1227
|
+
#
|
1228
|
+
class RegisterDomainRequest < Struct.new(
|
1229
|
+
:domain_name,
|
1230
|
+
:idn_lang_code,
|
1231
|
+
:duration_in_years,
|
1232
|
+
:auto_renew,
|
1233
|
+
:admin_contact,
|
1234
|
+
:registrant_contact,
|
1235
|
+
:tech_contact,
|
1236
|
+
:privacy_protect_admin_contact,
|
1237
|
+
:privacy_protect_registrant_contact,
|
1238
|
+
:privacy_protect_tech_contact)
|
1239
|
+
include Aws::Structure
|
1240
|
+
end
|
1462
1241
|
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
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
|
1242
|
+
# The RegisterDomain response includes the following element.
|
1243
|
+
#
|
1244
|
+
# @!attribute [rw] operation_id
|
1245
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1246
|
+
# to query the operation status, use GetOperationDetail.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RegisterDomainResponse AWS API Documentation
|
1250
|
+
#
|
1251
|
+
class RegisterDomainResponse < Struct.new(
|
1252
|
+
:operation_id)
|
1253
|
+
include Aws::Structure
|
1254
|
+
end
|
1514
1255
|
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1256
|
+
# A `RenewDomain` request includes the number of years that you want to
|
1257
|
+
# renew for and the current expiration year.
|
1258
|
+
#
|
1259
|
+
# @note When making an API call, you may pass RenewDomainRequest
|
1260
|
+
# data as a hash:
|
1261
|
+
#
|
1262
|
+
# {
|
1263
|
+
# domain_name: "DomainName", # required
|
1264
|
+
# duration_in_years: 1,
|
1265
|
+
# current_expiry_year: 1, # required
|
1266
|
+
# }
|
1267
|
+
#
|
1268
|
+
# @!attribute [rw] domain_name
|
1269
|
+
# The name of the domain that you want to renew.
|
1270
|
+
# @return [String]
|
1271
|
+
#
|
1272
|
+
# @!attribute [rw] duration_in_years
|
1273
|
+
# The number of years that you want to renew the domain for. The
|
1274
|
+
# maximum number of years depends on the top-level domain. For the
|
1275
|
+
# range of valid values for your domain, see [Domains that You Can
|
1276
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
1277
|
+
# Guide*.
|
1278
|
+
#
|
1279
|
+
# Default: 1
|
1280
|
+
#
|
1281
|
+
#
|
1282
|
+
#
|
1283
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1284
|
+
# @return [Integer]
|
1285
|
+
#
|
1286
|
+
# @!attribute [rw] current_expiry_year
|
1287
|
+
# The year when the registration for the domain is set to expire. This
|
1288
|
+
# value must match the current expiration date for the domain.
|
1289
|
+
# @return [Integer]
|
1290
|
+
#
|
1291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RenewDomainRequest AWS API Documentation
|
1292
|
+
#
|
1293
|
+
class RenewDomainRequest < Struct.new(
|
1294
|
+
:domain_name,
|
1295
|
+
:duration_in_years,
|
1296
|
+
:current_expiry_year)
|
1297
|
+
include Aws::Structure
|
1298
|
+
end
|
1521
1299
|
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
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
|
1300
|
+
# @!attribute [rw] operation_id
|
1301
|
+
# The identifier for tracking the progress of the request. To use this
|
1302
|
+
# ID to query the operation status, use GetOperationDetail.
|
1303
|
+
# @return [String]
|
1304
|
+
#
|
1305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RenewDomainResponse AWS API Documentation
|
1306
|
+
#
|
1307
|
+
class RenewDomainResponse < Struct.new(
|
1308
|
+
:operation_id)
|
1309
|
+
include Aws::Structure
|
1310
|
+
end
|
1542
1311
|
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
include Aws::Structure
|
1562
|
-
end
|
1312
|
+
# @note When making an API call, you may pass ResendContactReachabilityEmailRequest
|
1313
|
+
# data as a hash:
|
1314
|
+
#
|
1315
|
+
# {
|
1316
|
+
# domain_name: "DomainName",
|
1317
|
+
# }
|
1318
|
+
#
|
1319
|
+
# @!attribute [rw] domain_name
|
1320
|
+
# The name of the domain for which you want Amazon Route 53 to resend
|
1321
|
+
# a confirmation email to the registrant contact.
|
1322
|
+
# @return [String]
|
1323
|
+
#
|
1324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ResendContactReachabilityEmailRequest AWS API Documentation
|
1325
|
+
#
|
1326
|
+
class ResendContactReachabilityEmailRequest < Struct.new(
|
1327
|
+
:domain_name)
|
1328
|
+
include Aws::Structure
|
1329
|
+
end
|
1563
1330
|
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
end
|
1331
|
+
# @!attribute [rw] domain_name
|
1332
|
+
# The domain name for which you requested a confirmation email.
|
1333
|
+
# @return [String]
|
1334
|
+
#
|
1335
|
+
# @!attribute [rw] email_address
|
1336
|
+
# The email address for the registrant contact at the time that we
|
1337
|
+
# sent the verification email.
|
1338
|
+
# @return [String]
|
1339
|
+
#
|
1340
|
+
# @!attribute [rw] is_already_verified
|
1341
|
+
# `True` if the email address for the registrant contact has already
|
1342
|
+
# been verified, and `false` otherwise. If the email address has
|
1343
|
+
# already been verified, we don't send another confirmation email.
|
1344
|
+
# @return [Boolean]
|
1345
|
+
#
|
1346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ResendContactReachabilityEmailResponse AWS API Documentation
|
1347
|
+
#
|
1348
|
+
class ResendContactReachabilityEmailResponse < Struct.new(
|
1349
|
+
:domain_name,
|
1350
|
+
:email_address,
|
1351
|
+
:is_already_verified)
|
1352
|
+
include Aws::Structure
|
1353
|
+
end
|
1588
1354
|
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1355
|
+
# A request for the authorization code for the specified domain. To
|
1356
|
+
# transfer a domain to another registrar, you provide this value to the
|
1357
|
+
# new registrar.
|
1358
|
+
#
|
1359
|
+
# @note When making an API call, you may pass RetrieveDomainAuthCodeRequest
|
1360
|
+
# data as a hash:
|
1361
|
+
#
|
1362
|
+
# {
|
1363
|
+
# domain_name: "DomainName", # required
|
1364
|
+
# }
|
1365
|
+
#
|
1366
|
+
# @!attribute [rw] domain_name
|
1367
|
+
# The name of the domain that you want to get an authorization code
|
1368
|
+
# for.
|
1369
|
+
# @return [String]
|
1370
|
+
#
|
1371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RetrieveDomainAuthCodeRequest AWS API Documentation
|
1372
|
+
#
|
1373
|
+
class RetrieveDomainAuthCodeRequest < Struct.new(
|
1374
|
+
:domain_name)
|
1375
|
+
include Aws::Structure
|
1376
|
+
end
|
1599
1377
|
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
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
|
1378
|
+
# The RetrieveDomainAuthCode response includes the following element.
|
1379
|
+
#
|
1380
|
+
# @!attribute [rw] auth_code
|
1381
|
+
# The authorization code for the domain.
|
1382
|
+
# @return [String]
|
1383
|
+
#
|
1384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RetrieveDomainAuthCodeResponse AWS API Documentation
|
1385
|
+
#
|
1386
|
+
class RetrieveDomainAuthCodeResponse < Struct.new(
|
1387
|
+
:auth_code)
|
1388
|
+
include Aws::Structure
|
1389
|
+
end
|
1640
1390
|
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
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
|
1391
|
+
# Each tag includes the following elements.
|
1392
|
+
#
|
1393
|
+
# @note When making an API call, you may pass Tag
|
1394
|
+
# data as a hash:
|
1395
|
+
#
|
1396
|
+
# {
|
1397
|
+
# key: "TagKey",
|
1398
|
+
# value: "TagValue",
|
1399
|
+
# }
|
1400
|
+
#
|
1401
|
+
# @!attribute [rw] key
|
1402
|
+
# The key (name) of a tag.
|
1403
|
+
#
|
1404
|
+
# Valid values: A-Z, a-z, 0-9, space, ".:/=+\\-@"
|
1405
|
+
#
|
1406
|
+
# Constraints: Each key can be 1-128 characters long.
|
1407
|
+
# @return [String]
|
1408
|
+
#
|
1409
|
+
# @!attribute [rw] value
|
1410
|
+
# The value of a tag.
|
1411
|
+
#
|
1412
|
+
# Valid values: A-Z, a-z, 0-9, space, ".:/=+\\-@"
|
1413
|
+
#
|
1414
|
+
# Constraints: Each value can be 0-256 characters long.
|
1415
|
+
# @return [String]
|
1416
|
+
#
|
1417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/Tag AWS API Documentation
|
1418
|
+
#
|
1419
|
+
class Tag < Struct.new(
|
1420
|
+
:key,
|
1421
|
+
:value)
|
1422
|
+
include Aws::Structure
|
1423
|
+
end
|
1887
1424
|
|
1888
|
-
|
1889
|
-
|
1890
|
-
|
1891
|
-
|
1892
|
-
|
1893
|
-
|
1894
|
-
|
1895
|
-
|
1896
|
-
|
1897
|
-
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1902
|
-
|
1425
|
+
# The TransferDomain request includes the following elements.
|
1426
|
+
#
|
1427
|
+
# @note When making an API call, you may pass TransferDomainRequest
|
1428
|
+
# data as a hash:
|
1429
|
+
#
|
1430
|
+
# {
|
1431
|
+
# domain_name: "DomainName", # required
|
1432
|
+
# idn_lang_code: "LangCode",
|
1433
|
+
# duration_in_years: 1, # required
|
1434
|
+
# nameservers: [
|
1435
|
+
# {
|
1436
|
+
# name: "HostName", # required
|
1437
|
+
# glue_ips: ["GlueIp"],
|
1438
|
+
# },
|
1439
|
+
# ],
|
1440
|
+
# auth_code: "DomainAuthCode",
|
1441
|
+
# auto_renew: false,
|
1442
|
+
# admin_contact: { # required
|
1443
|
+
# first_name: "ContactName",
|
1444
|
+
# last_name: "ContactName",
|
1445
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1446
|
+
# organization_name: "ContactName",
|
1447
|
+
# address_line_1: "AddressLine",
|
1448
|
+
# address_line_2: "AddressLine",
|
1449
|
+
# city: "City",
|
1450
|
+
# state: "State",
|
1451
|
+
# 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
|
1452
|
+
# zip_code: "ZipCode",
|
1453
|
+
# phone_number: "ContactNumber",
|
1454
|
+
# email: "Email",
|
1455
|
+
# fax: "ContactNumber",
|
1456
|
+
# extra_params: [
|
1457
|
+
# {
|
1458
|
+
# 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
|
1459
|
+
# value: "ExtraParamValue", # required
|
1460
|
+
# },
|
1461
|
+
# ],
|
1462
|
+
# },
|
1463
|
+
# registrant_contact: { # required
|
1464
|
+
# first_name: "ContactName",
|
1465
|
+
# last_name: "ContactName",
|
1466
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1467
|
+
# organization_name: "ContactName",
|
1468
|
+
# address_line_1: "AddressLine",
|
1469
|
+
# address_line_2: "AddressLine",
|
1470
|
+
# city: "City",
|
1471
|
+
# state: "State",
|
1472
|
+
# 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
|
1473
|
+
# zip_code: "ZipCode",
|
1474
|
+
# phone_number: "ContactNumber",
|
1475
|
+
# email: "Email",
|
1476
|
+
# fax: "ContactNumber",
|
1477
|
+
# extra_params: [
|
1478
|
+
# {
|
1479
|
+
# 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
|
1480
|
+
# value: "ExtraParamValue", # required
|
1481
|
+
# },
|
1482
|
+
# ],
|
1483
|
+
# },
|
1484
|
+
# tech_contact: { # required
|
1485
|
+
# first_name: "ContactName",
|
1486
|
+
# last_name: "ContactName",
|
1487
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1488
|
+
# organization_name: "ContactName",
|
1489
|
+
# address_line_1: "AddressLine",
|
1490
|
+
# address_line_2: "AddressLine",
|
1491
|
+
# city: "City",
|
1492
|
+
# state: "State",
|
1493
|
+
# 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
|
1494
|
+
# zip_code: "ZipCode",
|
1495
|
+
# phone_number: "ContactNumber",
|
1496
|
+
# email: "Email",
|
1497
|
+
# fax: "ContactNumber",
|
1498
|
+
# extra_params: [
|
1499
|
+
# {
|
1500
|
+
# 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
|
1501
|
+
# value: "ExtraParamValue", # required
|
1502
|
+
# },
|
1503
|
+
# ],
|
1504
|
+
# },
|
1505
|
+
# privacy_protect_admin_contact: false,
|
1506
|
+
# privacy_protect_registrant_contact: false,
|
1507
|
+
# privacy_protect_tech_contact: false,
|
1508
|
+
# }
|
1509
|
+
#
|
1510
|
+
# @!attribute [rw] domain_name
|
1511
|
+
# The name of the domain that you want to transfer to Amazon Route 53.
|
1512
|
+
#
|
1513
|
+
# Constraints: The domain name can contain only the letters a through
|
1514
|
+
# z, the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1515
|
+
# Names are not supported.
|
1516
|
+
# @return [String]
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] idn_lang_code
|
1519
|
+
# Reserved for future use.
|
1520
|
+
# @return [String]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] duration_in_years
|
1523
|
+
# The number of years that you want to register the domain for.
|
1524
|
+
# Domains are registered for a minimum of one year. The maximum period
|
1525
|
+
# depends on the top-level domain.
|
1526
|
+
#
|
1527
|
+
# Default: 1
|
1528
|
+
# @return [Integer]
|
1529
|
+
#
|
1530
|
+
# @!attribute [rw] nameservers
|
1531
|
+
# Contains details for the host and glue IP addresses.
|
1532
|
+
# @return [Array<Types::Nameserver>]
|
1533
|
+
#
|
1534
|
+
# @!attribute [rw] auth_code
|
1535
|
+
# The authorization code for the domain. You get this value from the
|
1536
|
+
# current registrar.
|
1537
|
+
# @return [String]
|
1538
|
+
#
|
1539
|
+
# @!attribute [rw] auto_renew
|
1540
|
+
# Indicates whether the domain will be automatically renewed (true) or
|
1541
|
+
# not (false). Autorenewal only takes effect after the account is
|
1542
|
+
# charged.
|
1543
|
+
#
|
1544
|
+
# Default: true
|
1545
|
+
# @return [Boolean]
|
1546
|
+
#
|
1547
|
+
# @!attribute [rw] admin_contact
|
1548
|
+
# Provides detailed contact information.
|
1549
|
+
# @return [Types::ContactDetail]
|
1550
|
+
#
|
1551
|
+
# @!attribute [rw] registrant_contact
|
1552
|
+
# Provides detailed contact information.
|
1553
|
+
# @return [Types::ContactDetail]
|
1554
|
+
#
|
1555
|
+
# @!attribute [rw] tech_contact
|
1556
|
+
# Provides detailed contact information.
|
1557
|
+
# @return [Types::ContactDetail]
|
1558
|
+
#
|
1559
|
+
# @!attribute [rw] privacy_protect_admin_contact
|
1560
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1561
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1562
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1563
|
+
# contact information that you enter.
|
1564
|
+
#
|
1565
|
+
# Default: `true`
|
1566
|
+
# @return [Boolean]
|
1567
|
+
#
|
1568
|
+
# @!attribute [rw] privacy_protect_registrant_contact
|
1569
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1570
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1571
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1572
|
+
# contact information that you enter.
|
1573
|
+
#
|
1574
|
+
# Default: `true`
|
1575
|
+
# @return [Boolean]
|
1576
|
+
#
|
1577
|
+
# @!attribute [rw] privacy_protect_tech_contact
|
1578
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1579
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1580
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1581
|
+
# contact information that you enter.
|
1582
|
+
#
|
1583
|
+
# Default: `true`
|
1584
|
+
# @return [Boolean]
|
1585
|
+
#
|
1586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainRequest AWS API Documentation
|
1587
|
+
#
|
1588
|
+
class TransferDomainRequest < Struct.new(
|
1589
|
+
:domain_name,
|
1590
|
+
:idn_lang_code,
|
1591
|
+
:duration_in_years,
|
1592
|
+
:nameservers,
|
1593
|
+
:auth_code,
|
1594
|
+
:auto_renew,
|
1595
|
+
:admin_contact,
|
1596
|
+
:registrant_contact,
|
1597
|
+
:tech_contact,
|
1598
|
+
:privacy_protect_admin_contact,
|
1599
|
+
:privacy_protect_registrant_contact,
|
1600
|
+
:privacy_protect_tech_contact)
|
1601
|
+
include Aws::Structure
|
1602
|
+
end
|
1903
1603
|
|
1904
|
-
|
1905
|
-
|
1906
|
-
|
1907
|
-
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1914
|
-
|
1915
|
-
|
1916
|
-
|
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
|
1604
|
+
# The TranserDomain response includes the following element.
|
1605
|
+
#
|
1606
|
+
# @!attribute [rw] operation_id
|
1607
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1608
|
+
# to query the operation status, use GetOperationDetail.
|
1609
|
+
# @return [String]
|
1610
|
+
#
|
1611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainResponse AWS API Documentation
|
1612
|
+
#
|
1613
|
+
class TransferDomainResponse < Struct.new(
|
1614
|
+
:operation_id)
|
1615
|
+
include Aws::Structure
|
1616
|
+
end
|
1980
1617
|
|
1981
|
-
|
1982
|
-
|
1983
|
-
|
1984
|
-
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1991
|
-
|
1992
|
-
|
1993
|
-
|
1994
|
-
|
1995
|
-
|
1996
|
-
|
1618
|
+
# The UpdateDomainContactPrivacy request includes the following
|
1619
|
+
# elements.
|
1620
|
+
#
|
1621
|
+
# @note When making an API call, you may pass UpdateDomainContactPrivacyRequest
|
1622
|
+
# data as a hash:
|
1623
|
+
#
|
1624
|
+
# {
|
1625
|
+
# domain_name: "DomainName", # required
|
1626
|
+
# admin_privacy: false,
|
1627
|
+
# registrant_privacy: false,
|
1628
|
+
# tech_privacy: false,
|
1629
|
+
# }
|
1630
|
+
#
|
1631
|
+
# @!attribute [rw] domain_name
|
1632
|
+
# The name of the domain that you want to update the privacy setting
|
1633
|
+
# for.
|
1634
|
+
# @return [String]
|
1635
|
+
#
|
1636
|
+
# @!attribute [rw] admin_privacy
|
1637
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1638
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1639
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1640
|
+
# contact information that you enter.
|
1641
|
+
# @return [Boolean]
|
1642
|
+
#
|
1643
|
+
# @!attribute [rw] registrant_privacy
|
1644
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1645
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1646
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1647
|
+
# contact information that you enter.
|
1648
|
+
# @return [Boolean]
|
1649
|
+
#
|
1650
|
+
# @!attribute [rw] tech_privacy
|
1651
|
+
# Whether you want to conceal contact information from WHOIS queries.
|
1652
|
+
# If you specify `true`, WHOIS ("who is") queries will return
|
1653
|
+
# contact information for our registrar partner, Gandi, instead of the
|
1654
|
+
# contact information that you enter.
|
1655
|
+
# @return [Boolean]
|
1656
|
+
#
|
1657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactPrivacyRequest AWS API Documentation
|
1658
|
+
#
|
1659
|
+
class UpdateDomainContactPrivacyRequest < Struct.new(
|
1660
|
+
:domain_name,
|
1661
|
+
:admin_privacy,
|
1662
|
+
:registrant_privacy,
|
1663
|
+
:tech_privacy)
|
1664
|
+
include Aws::Structure
|
1665
|
+
end
|
1997
1666
|
|
1998
|
-
|
1999
|
-
|
2000
|
-
|
2001
|
-
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
2006
|
-
|
2007
|
-
|
2008
|
-
|
2009
|
-
|
2010
|
-
|
2011
|
-
|
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
|
1667
|
+
# The UpdateDomainContactPrivacy response includes the following
|
1668
|
+
# element.
|
1669
|
+
#
|
1670
|
+
# @!attribute [rw] operation_id
|
1671
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1672
|
+
# to query the operation status, use GetOperationDetail.
|
1673
|
+
# @return [String]
|
1674
|
+
#
|
1675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactPrivacyResponse AWS API Documentation
|
1676
|
+
#
|
1677
|
+
class UpdateDomainContactPrivacyResponse < Struct.new(
|
1678
|
+
:operation_id)
|
1679
|
+
include Aws::Structure
|
1680
|
+
end
|
2127
1681
|
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
|
2132
|
-
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2141
|
-
|
2142
|
-
|
1682
|
+
# The UpdateDomainContact request includes the following elements.
|
1683
|
+
#
|
1684
|
+
# @note When making an API call, you may pass UpdateDomainContactRequest
|
1685
|
+
# data as a hash:
|
1686
|
+
#
|
1687
|
+
# {
|
1688
|
+
# domain_name: "DomainName", # required
|
1689
|
+
# admin_contact: {
|
1690
|
+
# first_name: "ContactName",
|
1691
|
+
# last_name: "ContactName",
|
1692
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1693
|
+
# organization_name: "ContactName",
|
1694
|
+
# address_line_1: "AddressLine",
|
1695
|
+
# address_line_2: "AddressLine",
|
1696
|
+
# city: "City",
|
1697
|
+
# state: "State",
|
1698
|
+
# 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
|
1699
|
+
# zip_code: "ZipCode",
|
1700
|
+
# phone_number: "ContactNumber",
|
1701
|
+
# email: "Email",
|
1702
|
+
# fax: "ContactNumber",
|
1703
|
+
# extra_params: [
|
1704
|
+
# {
|
1705
|
+
# 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
|
1706
|
+
# value: "ExtraParamValue", # required
|
1707
|
+
# },
|
1708
|
+
# ],
|
1709
|
+
# },
|
1710
|
+
# registrant_contact: {
|
1711
|
+
# first_name: "ContactName",
|
1712
|
+
# last_name: "ContactName",
|
1713
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1714
|
+
# organization_name: "ContactName",
|
1715
|
+
# address_line_1: "AddressLine",
|
1716
|
+
# address_line_2: "AddressLine",
|
1717
|
+
# city: "City",
|
1718
|
+
# state: "State",
|
1719
|
+
# 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
|
1720
|
+
# zip_code: "ZipCode",
|
1721
|
+
# phone_number: "ContactNumber",
|
1722
|
+
# email: "Email",
|
1723
|
+
# fax: "ContactNumber",
|
1724
|
+
# extra_params: [
|
1725
|
+
# {
|
1726
|
+
# 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
|
1727
|
+
# value: "ExtraParamValue", # required
|
1728
|
+
# },
|
1729
|
+
# ],
|
1730
|
+
# },
|
1731
|
+
# tech_contact: {
|
1732
|
+
# first_name: "ContactName",
|
1733
|
+
# last_name: "ContactName",
|
1734
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1735
|
+
# organization_name: "ContactName",
|
1736
|
+
# address_line_1: "AddressLine",
|
1737
|
+
# address_line_2: "AddressLine",
|
1738
|
+
# city: "City",
|
1739
|
+
# state: "State",
|
1740
|
+
# 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
|
1741
|
+
# zip_code: "ZipCode",
|
1742
|
+
# phone_number: "ContactNumber",
|
1743
|
+
# email: "Email",
|
1744
|
+
# fax: "ContactNumber",
|
1745
|
+
# extra_params: [
|
1746
|
+
# {
|
1747
|
+
# 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
|
1748
|
+
# value: "ExtraParamValue", # required
|
1749
|
+
# },
|
1750
|
+
# ],
|
1751
|
+
# },
|
1752
|
+
# }
|
1753
|
+
#
|
1754
|
+
# @!attribute [rw] domain_name
|
1755
|
+
# The name of the domain that you want to update contact information
|
1756
|
+
# for.
|
1757
|
+
# @return [String]
|
1758
|
+
#
|
1759
|
+
# @!attribute [rw] admin_contact
|
1760
|
+
# Provides detailed contact information.
|
1761
|
+
# @return [Types::ContactDetail]
|
1762
|
+
#
|
1763
|
+
# @!attribute [rw] registrant_contact
|
1764
|
+
# Provides detailed contact information.
|
1765
|
+
# @return [Types::ContactDetail]
|
1766
|
+
#
|
1767
|
+
# @!attribute [rw] tech_contact
|
1768
|
+
# Provides detailed contact information.
|
1769
|
+
# @return [Types::ContactDetail]
|
1770
|
+
#
|
1771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactRequest AWS API Documentation
|
1772
|
+
#
|
1773
|
+
class UpdateDomainContactRequest < Struct.new(
|
1774
|
+
:domain_name,
|
1775
|
+
:admin_contact,
|
1776
|
+
:registrant_contact,
|
1777
|
+
:tech_contact)
|
1778
|
+
include Aws::Structure
|
1779
|
+
end
|
2143
1780
|
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
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
|
1781
|
+
# The UpdateDomainContact response includes the following element.
|
1782
|
+
#
|
1783
|
+
# @!attribute [rw] operation_id
|
1784
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1785
|
+
# to query the operation status, use GetOperationDetail.
|
1786
|
+
# @return [String]
|
1787
|
+
#
|
1788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainContactResponse AWS API Documentation
|
1789
|
+
#
|
1790
|
+
class UpdateDomainContactResponse < Struct.new(
|
1791
|
+
:operation_id)
|
1792
|
+
include Aws::Structure
|
1793
|
+
end
|
2191
1794
|
|
2192
|
-
|
2193
|
-
|
2194
|
-
|
2195
|
-
|
2196
|
-
|
2197
|
-
|
2198
|
-
|
2199
|
-
|
2200
|
-
|
2201
|
-
|
2202
|
-
|
2203
|
-
|
2204
|
-
|
2205
|
-
|
2206
|
-
|
1795
|
+
# Replaces the current set of name servers for the domain with the
|
1796
|
+
# specified set of name servers. If you use Amazon Route 53 as your DNS
|
1797
|
+
# service, specify the four name servers in the delegation set for the
|
1798
|
+
# hosted zone for the domain.
|
1799
|
+
#
|
1800
|
+
# If successful, this operation returns an operation ID that you can use
|
1801
|
+
# to track the progress and completion of the action. If the request is
|
1802
|
+
# not completed successfully, the domain registrant will be notified by
|
1803
|
+
# email.
|
1804
|
+
#
|
1805
|
+
# @note When making an API call, you may pass UpdateDomainNameserversRequest
|
1806
|
+
# data as a hash:
|
1807
|
+
#
|
1808
|
+
# {
|
1809
|
+
# domain_name: "DomainName", # required
|
1810
|
+
# fi_auth_key: "FIAuthKey",
|
1811
|
+
# nameservers: [ # required
|
1812
|
+
# {
|
1813
|
+
# name: "HostName", # required
|
1814
|
+
# glue_ips: ["GlueIp"],
|
1815
|
+
# },
|
1816
|
+
# ],
|
1817
|
+
# }
|
1818
|
+
#
|
1819
|
+
# @!attribute [rw] domain_name
|
1820
|
+
# The name of the domain that you want to change name servers for.
|
1821
|
+
# @return [String]
|
1822
|
+
#
|
1823
|
+
# @!attribute [rw] fi_auth_key
|
1824
|
+
# The authorization key for .fi domains
|
1825
|
+
# @return [String]
|
1826
|
+
#
|
1827
|
+
# @!attribute [rw] nameservers
|
1828
|
+
# A list of new name servers for the domain.
|
1829
|
+
# @return [Array<Types::Nameserver>]
|
1830
|
+
#
|
1831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainNameserversRequest AWS API Documentation
|
1832
|
+
#
|
1833
|
+
class UpdateDomainNameserversRequest < Struct.new(
|
1834
|
+
:domain_name,
|
1835
|
+
:fi_auth_key,
|
1836
|
+
:nameservers)
|
1837
|
+
include Aws::Structure
|
1838
|
+
end
|
2207
1839
|
|
2208
|
-
|
2209
|
-
|
2210
|
-
|
2211
|
-
|
2212
|
-
|
2213
|
-
|
2214
|
-
|
2215
|
-
|
2216
|
-
|
2217
|
-
|
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
|
1840
|
+
# The UpdateDomainNameservers response includes the following element.
|
1841
|
+
#
|
1842
|
+
# @!attribute [rw] operation_id
|
1843
|
+
# Identifier for tracking the progress of the request. To use this ID
|
1844
|
+
# to query the operation status, use GetOperationDetail.
|
1845
|
+
# @return [String]
|
1846
|
+
#
|
1847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateDomainNameserversResponse AWS API Documentation
|
1848
|
+
#
|
1849
|
+
class UpdateDomainNameserversResponse < Struct.new(
|
1850
|
+
:operation_id)
|
1851
|
+
include Aws::Structure
|
1852
|
+
end
|
2288
1853
|
|
2289
|
-
|
1854
|
+
# The UpdateTagsForDomainRequest includes the following elements.
|
1855
|
+
#
|
1856
|
+
# @note When making an API call, you may pass UpdateTagsForDomainRequest
|
1857
|
+
# data as a hash:
|
1858
|
+
#
|
1859
|
+
# {
|
1860
|
+
# domain_name: "DomainName", # required
|
1861
|
+
# tags_to_update: [
|
1862
|
+
# {
|
1863
|
+
# key: "TagKey",
|
1864
|
+
# value: "TagValue",
|
1865
|
+
# },
|
1866
|
+
# ],
|
1867
|
+
# }
|
1868
|
+
#
|
1869
|
+
# @!attribute [rw] domain_name
|
1870
|
+
# The domain for which you want to add or update tags.
|
1871
|
+
# @return [String]
|
1872
|
+
#
|
1873
|
+
# @!attribute [rw] tags_to_update
|
1874
|
+
# A list of the tag keys and values that you want to add or update. If
|
1875
|
+
# you specify a key that already exists, the corresponding value will
|
1876
|
+
# be replaced.
|
1877
|
+
# @return [Array<Types::Tag>]
|
1878
|
+
#
|
1879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateTagsForDomainRequest AWS API Documentation
|
1880
|
+
#
|
1881
|
+
class UpdateTagsForDomainRequest < Struct.new(
|
1882
|
+
:domain_name,
|
1883
|
+
:tags_to_update)
|
1884
|
+
include Aws::Structure
|
1885
|
+
end
|
2290
1886
|
|
2291
|
-
|
2292
|
-
|
2293
|
-
|
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
|
1887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/UpdateTagsForDomainResponse AWS API Documentation
|
1888
|
+
#
|
1889
|
+
class UpdateTagsForDomainResponse < Aws::EmptyStructure; end
|
2360
1890
|
|
2361
|
-
|
2362
|
-
|
2363
|
-
|
2364
|
-
|
2365
|
-
|
2366
|
-
|
2367
|
-
|
2368
|
-
|
2369
|
-
|
2370
|
-
|
2371
|
-
|
2372
|
-
|
2373
|
-
|
2374
|
-
|
2375
|
-
|
2376
|
-
|
2377
|
-
|
2378
|
-
|
2379
|
-
|
2380
|
-
|
2381
|
-
|
2382
|
-
|
2383
|
-
|
2384
|
-
|
1891
|
+
# The ViewBilling request includes the following elements.
|
1892
|
+
#
|
1893
|
+
# @note When making an API call, you may pass ViewBillingRequest
|
1894
|
+
# data as a hash:
|
1895
|
+
#
|
1896
|
+
# {
|
1897
|
+
# start: Time.now,
|
1898
|
+
# end: Time.now,
|
1899
|
+
# marker: "PageMarker",
|
1900
|
+
# max_items: 1,
|
1901
|
+
# }
|
1902
|
+
#
|
1903
|
+
# @!attribute [rw] start
|
1904
|
+
# The beginning date and time for the time period for which you want a
|
1905
|
+
# list of billing records. Specify the date in Unix time format.
|
1906
|
+
# @return [Time]
|
1907
|
+
#
|
1908
|
+
# @!attribute [rw] end
|
1909
|
+
# The end date and time for the time period for which you want a list
|
1910
|
+
# of billing records. Specify the date in Unix time format.
|
1911
|
+
# @return [Time]
|
1912
|
+
#
|
1913
|
+
# @!attribute [rw] marker
|
1914
|
+
# For an initial request for a list of billing records, omit this
|
1915
|
+
# element. If the number of billing records that are associated with
|
1916
|
+
# the current AWS account during the specified period is greater than
|
1917
|
+
# the value that you specified for `MaxItems`, you can use `Marker` to
|
1918
|
+
# return additional billing records. Get the value of `NextPageMarker`
|
1919
|
+
# from the previous response, and submit another request that includes
|
1920
|
+
# the value of `NextPageMarker` in the `Marker` element.
|
1921
|
+
#
|
1922
|
+
# Constraints: The marker must match the value of `NextPageMarker`
|
1923
|
+
# that was returned in the previous response.
|
1924
|
+
# @return [String]
|
1925
|
+
#
|
1926
|
+
# @!attribute [rw] max_items
|
1927
|
+
# The number of billing records to be returned.
|
1928
|
+
#
|
1929
|
+
# Default: 20
|
1930
|
+
# @return [Integer]
|
1931
|
+
#
|
1932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ViewBillingRequest AWS API Documentation
|
1933
|
+
#
|
1934
|
+
class ViewBillingRequest < Struct.new(
|
1935
|
+
:start,
|
1936
|
+
:end,
|
1937
|
+
:marker,
|
1938
|
+
:max_items)
|
1939
|
+
include Aws::Structure
|
1940
|
+
end
|
2385
1941
|
|
1942
|
+
# The ViewBilling response includes the following elements.
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] next_page_marker
|
1945
|
+
# If there are more billing records than you specified for `MaxItems`
|
1946
|
+
# in the request, submit another request and include the value of
|
1947
|
+
# `NextPageMarker` in the value of `Marker`.
|
1948
|
+
# @return [String]
|
1949
|
+
#
|
1950
|
+
# @!attribute [rw] billing_records
|
1951
|
+
# A summary of billing records.
|
1952
|
+
# @return [Array<Types::BillingRecord>]
|
1953
|
+
#
|
1954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ViewBillingResponse AWS API Documentation
|
1955
|
+
#
|
1956
|
+
class ViewBillingResponse < Struct.new(
|
1957
|
+
:next_page_marker,
|
1958
|
+
:billing_records)
|
1959
|
+
include Aws::Structure
|
2386
1960
|
end
|
1961
|
+
|
2387
1962
|
end
|
2388
1963
|
end
|