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