aws-sdk-core 2.0.0.rc5 → 2.0.0.rc6

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,6 +5,9 @@
5
5
  "output_token": "NextToken",
6
6
  "result_key": "StackEvents"
7
7
  },
8
+ "DescribeStackResources": {
9
+ "result_key": "StackResources"
10
+ },
8
11
  "DescribeStacks": {
9
12
  "input_token": "NextToken",
10
13
  "output_token": "NextToken",
@@ -0,0 +1,2134 @@
1
+ {
2
+ "api_version": "2013-04-01",
3
+ "type": "rest-xml",
4
+ "signature_version": "v3https",
5
+ "service_full_name": "Amazon Route 53",
6
+ "service_abbreviation": "Route 53",
7
+ "global_endpoint": "route53.amazonaws.com",
8
+ "endpoint_prefix": "route53",
9
+ "xmlnamespace": "https://route53.amazonaws.com/doc/2013-04-01/",
10
+ "documentation": "\n ",
11
+ "operations": {
12
+ "ChangeResourceRecordSets": {
13
+ "name": "ChangeResourceRecordSets",
14
+ "http": {
15
+ "method": "POST",
16
+ "uri": "/2013-04-01/hostedzone/{HostedZoneId}/rrset/"
17
+ },
18
+ "input": {
19
+ "shape_name": "ChangeResourceRecordSetsRequest",
20
+ "type": "structure",
21
+ "members": {
22
+ "HostedZoneId": {
23
+ "shape_name": "ResourceId",
24
+ "type": "string",
25
+ "max_length": 32,
26
+ "documentation": "\n <p> The ID of the hosted zone that contains the resource record sets that you want to change.</p>\n ",
27
+ "required": true,
28
+ "location": "uri"
29
+ },
30
+ "ChangeBatch": {
31
+ "shape_name": "ChangeBatch",
32
+ "type": "structure",
33
+ "members": {
34
+ "Comment": {
35
+ "shape_name": "ResourceDescription",
36
+ "type": "string",
37
+ "max_length": 256,
38
+ "documentation": "\n <p><i>Optional:</i> Any comments you want to include about a change batch request.</p>\n "
39
+ },
40
+ "Changes": {
41
+ "shape_name": "Changes",
42
+ "type": "list",
43
+ "members": {
44
+ "shape_name": "Change",
45
+ "type": "structure",
46
+ "members": {
47
+ "Action": {
48
+ "shape_name": "ChangeAction",
49
+ "type": "string",
50
+ "enum": [
51
+ "CREATE",
52
+ "DELETE",
53
+ "UPSERT"
54
+ ],
55
+ "documentation": "\n <p>The action to perform.</p>\n <p>Valid values: <code>CREATE</code> | <code>DELETE</code> | <code>UPSERT</code></p>\n ",
56
+ "required": true
57
+ },
58
+ "ResourceRecordSet": {
59
+ "shape_name": "ResourceRecordSet",
60
+ "type": "structure",
61
+ "members": {
62
+ "Name": {
63
+ "shape_name": "DNSName",
64
+ "type": "string",
65
+ "max_length": 1024,
66
+ "documentation": "\n <p>The domain name of the current resource record set.</p>\n ",
67
+ "required": true
68
+ },
69
+ "Type": {
70
+ "shape_name": "RRType",
71
+ "type": "string",
72
+ "enum": [
73
+ "SOA",
74
+ "A",
75
+ "TXT",
76
+ "NS",
77
+ "CNAME",
78
+ "MX",
79
+ "PTR",
80
+ "SRV",
81
+ "SPF",
82
+ "AAAA"
83
+ ],
84
+ "documentation": "\n <p>The type of the current resource record set.</p>\n ",
85
+ "required": true
86
+ },
87
+ "SetIdentifier": {
88
+ "shape_name": "ResourceRecordSetIdentifier",
89
+ "type": "string",
90
+ "min_length": 1,
91
+ "max_length": 128,
92
+ "documentation": "\n <p><i>Weighted, Regional, and Failover resource record sets only:</i> An identifier that differentiates among multiple resource record sets that have the same combination of DNS name and type.</p>\n "
93
+ },
94
+ "Weight": {
95
+ "shape_name": "ResourceRecordSetWeight",
96
+ "type": "long",
97
+ "min_length": 0,
98
+ "max_length": 255,
99
+ "documentation": "\n <p><i>Weighted resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that determines what portion of traffic for the current resource record set is routed to the associated location.</p>\n "
100
+ },
101
+ "Region": {
102
+ "shape_name": "ResourceRecordSetRegion",
103
+ "type": "string",
104
+ "min_length": 1,
105
+ "max_length": 64,
106
+ "enum": [
107
+ "us-east-1",
108
+ "us-west-1",
109
+ "us-west-2",
110
+ "eu-west-1",
111
+ "ap-southeast-1",
112
+ "ap-southeast-2",
113
+ "ap-northeast-1",
114
+ "sa-east-1",
115
+ "cn-north-1"
116
+ ],
117
+ "documentation": "\n <p><i>Regional resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that specifies the AWS region for the current resource record set.</p>\n "
118
+ },
119
+ "Failover": {
120
+ "shape_name": "ResourceRecordSetFailover",
121
+ "type": "string",
122
+ "enum": [
123
+ "PRIMARY",
124
+ "SECONDARY"
125
+ ],
126
+ "documentation": "\n <p><i>Failover resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that indicates whether the current resource record set is a primary or secondary resource record set. A failover set may contain at most one resource record set marked as primary and one resource record set marked as secondary. A resource record set marked as primary will be returned if any of the following are true: (1) an associated health check is passing, (2) if the resource record set is an alias with the evaluate target health and at least one target resource record set is healthy, (3) both the primary and secondary resource record set are failing health checks or (4) there is no secondary resource record set. A secondary resource record set will be returned if: (1) the primary is failing a health check and either the secondary is passing a health check or has no associated health check, or (2) there is no primary resource record set. </p>\n <p>Valid values: <code>PRIMARY</code> | <code>SECONDARY</code></p>\n "
127
+ },
128
+ "TTL": {
129
+ "shape_name": "TTL",
130
+ "type": "long",
131
+ "min_length": 0,
132
+ "max_length": 2147483647,
133
+ "documentation": "\n <p>The cache time to live for the current resource record set.</p>\n "
134
+ },
135
+ "ResourceRecords": {
136
+ "shape_name": "ResourceRecords",
137
+ "type": "list",
138
+ "members": {
139
+ "shape_name": "ResourceRecord",
140
+ "type": "structure",
141
+ "members": {
142
+ "Value": {
143
+ "shape_name": "RData",
144
+ "type": "string",
145
+ "max_length": 4000,
146
+ "documentation": "\n <p>The value of the <code>Value</code> element for the current resource record set.</p>\n ",
147
+ "required": true
148
+ }
149
+ },
150
+ "member_order": [
151
+ "Value"
152
+ ],
153
+ "documentation": "\n <p>A complex type that contains the value of the <code>Value</code> element for the current resource record set.</p>\n ",
154
+ "xmlname": "ResourceRecord"
155
+ },
156
+ "min_length": 1,
157
+ "documentation": "\n <p>A complex type that contains the resource records for the current resource record set.</p>\n "
158
+ },
159
+ "AliasTarget": {
160
+ "shape_name": "AliasTarget",
161
+ "type": "structure",
162
+ "members": {
163
+ "HostedZoneId": {
164
+ "shape_name": "ResourceId",
165
+ "type": "string",
166
+ "max_length": 32,
167
+ "documentation": "\n <p><i>Alias resource record sets only:</i> The value of the hosted zone ID for the AWS resource.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
168
+ "required": true
169
+ },
170
+ "DNSName": {
171
+ "shape_name": "DNSName",
172
+ "type": "string",
173
+ "max_length": 1024,
174
+ "documentation": "\n <p><i>Alias resource record sets only:</i> The external DNS name associated with the AWS Resource.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
175
+ "required": true
176
+ },
177
+ "EvaluateTargetHealth": {
178
+ "shape_name": "AliasHealthEnabled",
179
+ "type": "boolean",
180
+ "documentation": "\n <p><i>Alias resource record sets only:</i> A boolean value that indicates whether this Resource Record Set should respect the health status of any health checks associated with the ALIAS target record which it is linked to.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
181
+ "required": true
182
+ }
183
+ },
184
+ "member_order": [
185
+ "HostedZoneId",
186
+ "DNSName",
187
+ "EvaluateTargetHealth"
188
+ ],
189
+ "documentation": "\n <p><i>Alias resource record sets only:</i> Information about the AWS resource to which you are redirecting traffic.</p>\n "
190
+ },
191
+ "HealthCheckId": {
192
+ "shape_name": "HealthCheckId",
193
+ "type": "string",
194
+ "max_length": 64,
195
+ "documentation": "\n <p><i>Health Check resource record sets only, not required for alias resource record sets:</i> An identifier that is used to identify health check associated with the resource record set.</p>\n "
196
+ }
197
+ },
198
+ "member_order": [
199
+ "Name",
200
+ "Type",
201
+ "SetIdentifier",
202
+ "Weight",
203
+ "Region",
204
+ "Failover",
205
+ "TTL",
206
+ "ResourceRecords",
207
+ "AliasTarget",
208
+ "HealthCheckId"
209
+ ],
210
+ "documentation": "\n <p>Information about the resource record set to create or delete.</p>\n ",
211
+ "required": true
212
+ }
213
+ },
214
+ "member_order": [
215
+ "Action",
216
+ "ResourceRecordSet"
217
+ ],
218
+ "documentation": "\n <p>A complex type that contains the information for each change in a change batch request.</p>\n ",
219
+ "xmlname": "Change"
220
+ },
221
+ "min_length": 1,
222
+ "documentation": "\n <p>A complex type that contains one <code>Change</code> element for each resource record set that you want to create or delete.</p>\n ",
223
+ "required": true
224
+ }
225
+ },
226
+ "member_order": [
227
+ "Comment",
228
+ "Changes"
229
+ ],
230
+ "documentation": "\n <p>A complex type that contains an optional comment and the <code>Changes</code> element.</p>\n ",
231
+ "required": true
232
+ }
233
+ },
234
+ "member_order": [
235
+ "HostedZoneId",
236
+ "ChangeBatch"
237
+ ],
238
+ "documentation": "\n <p>A complex type that contains a change batch.</p>\n "
239
+ },
240
+ "output": {
241
+ "shape_name": "ChangeResourceRecordSetsResponse",
242
+ "type": "structure",
243
+ "members": {
244
+ "ChangeInfo": {
245
+ "shape_name": "ChangeInfo",
246
+ "type": "structure",
247
+ "members": {
248
+ "Id": {
249
+ "shape_name": "ResourceId",
250
+ "type": "string",
251
+ "max_length": 32,
252
+ "documentation": "\n <p>The ID of the request. Use this ID to track when the change has completed across all Amazon Route 53 DNS servers.</p>\n ",
253
+ "required": true
254
+ },
255
+ "Status": {
256
+ "shape_name": "ChangeStatus",
257
+ "type": "string",
258
+ "enum": [
259
+ "PENDING",
260
+ "INSYNC"
261
+ ],
262
+ "documentation": "\n <p>The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.</p>\n <p>Valid Values: <code>PENDING</code> | <code>INSYNC</code></p>\n ",
263
+ "required": true
264
+ },
265
+ "SubmittedAt": {
266
+ "shape_name": "TimeStamp",
267
+ "type": "timestamp",
268
+ "documentation": "\n <p>The date and time the change was submitted, in the format <code>YYYY-MM-DDThh:mm:ssZ</code>, as specified in the ISO 8601 standard (for example, 2009-11-19T19:37:58Z). The <code>Z</code> after the time indicates that the time is listed in Coordinated Universal Time (UTC), which is synonymous with Greenwich Mean Time in this context.</p>\n ",
269
+ "required": true
270
+ },
271
+ "Comment": {
272
+ "shape_name": "ResourceDescription",
273
+ "type": "string",
274
+ "max_length": 256,
275
+ "documentation": "\n <p>A complex type that describes change information about changes made to your hosted zone.</p>\n <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>\n "
276
+ }
277
+ },
278
+ "member_order": [
279
+ "Id",
280
+ "Status",
281
+ "SubmittedAt",
282
+ "Comment"
283
+ ],
284
+ "documentation": "\n <p>A complex type that contains information about changes made to your hosted zone.</p>\n <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>\n ",
285
+ "required": true
286
+ }
287
+ },
288
+ "member_order": [
289
+ "ChangeInfo"
290
+ ],
291
+ "documentation": "\n <p>A complex type containing the response for the request.</p>\n "
292
+ },
293
+ "errors": [
294
+ {
295
+ "shape_name": "NoSuchHostedZone",
296
+ "type": "structure",
297
+ "members": {
298
+ "message": {
299
+ "shape_name": "ErrorMessage",
300
+ "type": "string",
301
+ "documentation": null
302
+ }
303
+ },
304
+ "documentation": null
305
+ },
306
+ {
307
+ "shape_name": "NoSuchHealthCheck",
308
+ "type": "structure",
309
+ "members": {
310
+ "message": {
311
+ "shape_name": "ErrorMessage",
312
+ "type": "string",
313
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
314
+ }
315
+ },
316
+ "documentation": "\n <p>The health check you are trying to get or delete does not exist.</p>\n "
317
+ },
318
+ {
319
+ "shape_name": "InvalidChangeBatch",
320
+ "type": "structure",
321
+ "members": {
322
+ "messages": {
323
+ "shape_name": "ErrorMessages",
324
+ "type": "list",
325
+ "members": {
326
+ "shape_name": "ErrorMessage",
327
+ "type": "string",
328
+ "documentation": null,
329
+ "xmlname": "Message"
330
+ },
331
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
332
+ }
333
+ },
334
+ "documentation": "\n <p>This error contains a list of one or more error messages. Each error message indicates one error in the change batch. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html#example_Errors\">Example InvalidChangeBatch Errors</a>. </p>\n "
335
+ },
336
+ {
337
+ "shape_name": "InvalidInput",
338
+ "type": "structure",
339
+ "members": {
340
+ "message": {
341
+ "shape_name": "ErrorMessage",
342
+ "type": "string",
343
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
344
+ }
345
+ },
346
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
347
+ },
348
+ {
349
+ "shape_name": "PriorRequestNotComplete",
350
+ "type": "structure",
351
+ "members": {
352
+ "message": {
353
+ "shape_name": "ErrorMessage",
354
+ "type": "string",
355
+ "documentation": null
356
+ }
357
+ },
358
+ "documentation": "\n <p>The request was rejected because Route 53 was still processing a prior request.</p>\n "
359
+ }
360
+ ],
361
+ "documentation": "\n <p>Use this action to create or change your authoritative DNS information. To use this action, send a <code>POST</code> request to the <code>2013-04-01/hostedzone/<i>hosted Zone ID</i>/rrset</code> resource. The request body must include an XML document with a <code>ChangeResourceRecordSetsRequest</code> element.</p>\n <p>Changes are a list of change items and are considered transactional. For more information on transactional changes, also known as change batches, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/RRSchanges.html#RRSchanges_API\">Creating, Changing, and Deleting Resource Record Sets Using the Route 53 API</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>\n <important>Due to the nature of transactional changes, you cannot delete the same resource record set more than once in a single change batch. If you attempt to delete the same change batch more than once, Route 53 returns an <code>InvalidChangeBatch</code> error.</important>\n <p>In response to a <code>ChangeResourceRecordSets</code> request, your DNS data is changed on all Route 53 DNS servers. Initially, the status of a change is <code>PENDING</code>. This means the change has not yet propagated to all the authoritative Route 53 DNS servers. When the change is propagated to all hosts, the change returns a status of <code>INSYNC</code>.</p>\n <p>Note the following limitations on a <code>ChangeResourceRecordSets</code> request:</p>\n <p>- A request cannot contain more than 100 Change elements.</p>\n <p>- A request cannot contain more than 1000 ResourceRecord elements.</p>\n <p>The sum of the number of characters (including spaces) in all <code>Value</code> elements in a request cannot exceed 32,000 characters.</p>\n "
362
+ },
363
+ "CreateHealthCheck": {
364
+ "name": "CreateHealthCheck",
365
+ "http": {
366
+ "method": "POST",
367
+ "uri": "/2013-04-01/healthcheck",
368
+ "response_code": 201
369
+ },
370
+ "input": {
371
+ "shape_name": "CreateHealthCheckRequest",
372
+ "type": "structure",
373
+ "members": {
374
+ "CallerReference": {
375
+ "shape_name": "HealthCheckNonce",
376
+ "type": "string",
377
+ "min_length": 1,
378
+ "max_length": 64,
379
+ "documentation": "\n <p>A unique string that identifies the request and that allows failed <code>CreateHealthCheck</code> requests to be retried without the risk of executing the operation twice. You must use a unique <code>CallerReference</code> string every time you create a health check. <code>CallerReference</code> can be any unique string; you might choose to use a string that identifies your project.</p>\n <p>Valid characters are any Unicode code points that are legal in an XML 1.0 document. The UTF-8 encoding of the value must be less than 128 bytes.</p>\n ",
380
+ "required": true
381
+ },
382
+ "HealthCheckConfig": {
383
+ "shape_name": "HealthCheckConfig",
384
+ "type": "structure",
385
+ "members": {
386
+ "IPAddress": {
387
+ "shape_name": "IPAddress",
388
+ "type": "string",
389
+ "max_length": 15,
390
+ "pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",
391
+ "documentation": "\n <p>IP Address of the instance being checked. </p>\n ",
392
+ "required": true
393
+ },
394
+ "Port": {
395
+ "shape_name": "Port",
396
+ "type": "integer",
397
+ "min_length": 1,
398
+ "max_length": 65535,
399
+ "documentation": "\n <p>Port on which connection will be opened to the instance to health check. For HTTP and HTTP_STR_MATCH this defaults to 80 if the port is not specified. For HTTPS and HTTPS_STR_MATCH this defaults to 443 if the port is not specified.</p>\n "
400
+ },
401
+ "Type": {
402
+ "shape_name": "HealthCheckType",
403
+ "type": "string",
404
+ "enum": [
405
+ "HTTP",
406
+ "HTTPS",
407
+ "HTTP_STR_MATCH",
408
+ "HTTPS_STR_MATCH",
409
+ "TCP"
410
+ ],
411
+ "documentation": "\n <p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH.</p>\n ",
412
+ "required": true
413
+ },
414
+ "ResourcePath": {
415
+ "shape_name": "ResourcePath",
416
+ "type": "string",
417
+ "max_length": 255,
418
+ "documentation": "\n <p>Path to ping on the instance to check the health. Required for HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH health checks, HTTP request is issued to the instance on the given port and path.</p>\n "
419
+ },
420
+ "FullyQualifiedDomainName": {
421
+ "shape_name": "FullyQualifiedDomainName",
422
+ "type": "string",
423
+ "max_length": 255,
424
+ "documentation": "\n <p>Fully qualified domain name of the instance to be health checked.</p>\n "
425
+ },
426
+ "SearchString": {
427
+ "shape_name": "SearchString",
428
+ "type": "string",
429
+ "max_length": 255,
430
+ "documentation": "\n <p>A string to search for in the body of a health check response. Required for HTTP_STR_MATCH and HTTPS_STR_MATCH health checks.</p>\n "
431
+ }
432
+ },
433
+ "member_order": [
434
+ "IPAddress",
435
+ "Port",
436
+ "Type",
437
+ "ResourcePath",
438
+ "FullyQualifiedDomainName",
439
+ "SearchString"
440
+ ],
441
+ "documentation": "\n <p>A complex type that contains health check configuration.</p>\n ",
442
+ "required": true
443
+ }
444
+ },
445
+ "member_order": [
446
+ "CallerReference",
447
+ "HealthCheckConfig"
448
+ ],
449
+ "documentation": "\n <p>&gt;A complex type that contains information about the request to create a health check.</p>\n "
450
+ },
451
+ "output": {
452
+ "shape_name": "CreateHealthCheckResponse",
453
+ "type": "structure",
454
+ "members": {
455
+ "HealthCheck": {
456
+ "shape_name": "HealthCheck",
457
+ "type": "structure",
458
+ "members": {
459
+ "Id": {
460
+ "shape_name": "HealthCheckId",
461
+ "type": "string",
462
+ "max_length": 64,
463
+ "documentation": "\n <p>The ID of the specified health check.</p>\n ",
464
+ "required": true
465
+ },
466
+ "CallerReference": {
467
+ "shape_name": "HealthCheckNonce",
468
+ "type": "string",
469
+ "min_length": 1,
470
+ "max_length": 64,
471
+ "documentation": "\n <p>A unique string that identifies the request to create the health check.</p>\n ",
472
+ "required": true
473
+ },
474
+ "HealthCheckConfig": {
475
+ "shape_name": "HealthCheckConfig",
476
+ "type": "structure",
477
+ "members": {
478
+ "IPAddress": {
479
+ "shape_name": "IPAddress",
480
+ "type": "string",
481
+ "max_length": 15,
482
+ "pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",
483
+ "documentation": "\n <p>IP Address of the instance being checked. </p>\n ",
484
+ "required": true
485
+ },
486
+ "Port": {
487
+ "shape_name": "Port",
488
+ "type": "integer",
489
+ "min_length": 1,
490
+ "max_length": 65535,
491
+ "documentation": "\n <p>Port on which connection will be opened to the instance to health check. For HTTP and HTTP_STR_MATCH this defaults to 80 if the port is not specified. For HTTPS and HTTPS_STR_MATCH this defaults to 443 if the port is not specified.</p>\n "
492
+ },
493
+ "Type": {
494
+ "shape_name": "HealthCheckType",
495
+ "type": "string",
496
+ "enum": [
497
+ "HTTP",
498
+ "HTTPS",
499
+ "HTTP_STR_MATCH",
500
+ "HTTPS_STR_MATCH",
501
+ "TCP"
502
+ ],
503
+ "documentation": "\n <p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH.</p>\n ",
504
+ "required": true
505
+ },
506
+ "ResourcePath": {
507
+ "shape_name": "ResourcePath",
508
+ "type": "string",
509
+ "max_length": 255,
510
+ "documentation": "\n <p>Path to ping on the instance to check the health. Required for HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH health checks, HTTP request is issued to the instance on the given port and path.</p>\n "
511
+ },
512
+ "FullyQualifiedDomainName": {
513
+ "shape_name": "FullyQualifiedDomainName",
514
+ "type": "string",
515
+ "max_length": 255,
516
+ "documentation": "\n <p>Fully qualified domain name of the instance to be health checked.</p>\n "
517
+ },
518
+ "SearchString": {
519
+ "shape_name": "SearchString",
520
+ "type": "string",
521
+ "max_length": 255,
522
+ "documentation": "\n <p>A string to search for in the body of a health check response. Required for HTTP_STR_MATCH and HTTPS_STR_MATCH health checks.</p>\n "
523
+ }
524
+ },
525
+ "member_order": [
526
+ "IPAddress",
527
+ "Port",
528
+ "Type",
529
+ "ResourcePath",
530
+ "FullyQualifiedDomainName",
531
+ "SearchString"
532
+ ],
533
+ "documentation": "\n <p>A complex type that contains the health check configuration.</p>\n ",
534
+ "required": true
535
+ }
536
+ },
537
+ "member_order": [
538
+ "Id",
539
+ "CallerReference",
540
+ "HealthCheckConfig"
541
+ ],
542
+ "documentation": "\n <p>A complex type that contains identifying information about the health check.</p>\n ",
543
+ "required": true
544
+ },
545
+ "Location": {
546
+ "shape_name": "ResourceURI",
547
+ "type": "string",
548
+ "max_length": 1024,
549
+ "documentation": "\n <p>The unique URL representing the new health check.</p>\n ",
550
+ "required": true,
551
+ "location": "header",
552
+ "location_name": "Location"
553
+ }
554
+ },
555
+ "member_order": [
556
+ "HealthCheck",
557
+ "Location"
558
+ ],
559
+ "documentation": "\n <p>A complex type containing the response information for the new health check.</p>\n "
560
+ },
561
+ "errors": [
562
+ {
563
+ "shape_name": "TooManyHealthChecks",
564
+ "type": "structure",
565
+ "members": {
566
+ "message": {
567
+ "shape_name": "ErrorMessage",
568
+ "type": "string",
569
+ "documentation": null
570
+ }
571
+ },
572
+ "documentation": null
573
+ },
574
+ {
575
+ "shape_name": "HealthCheckAlreadyExists",
576
+ "type": "structure",
577
+ "members": {
578
+ "message": {
579
+ "shape_name": "ErrorMessage",
580
+ "type": "string",
581
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
582
+ }
583
+ },
584
+ "documentation": "\n <p>The health check you are trying to create already exists. Route 53 returns this error when a health check has already been created with the specified <code>CallerReference</code>.</p>\n "
585
+ },
586
+ {
587
+ "shape_name": "InvalidInput",
588
+ "type": "structure",
589
+ "members": {
590
+ "message": {
591
+ "shape_name": "ErrorMessage",
592
+ "type": "string",
593
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
594
+ }
595
+ },
596
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
597
+ }
598
+ ],
599
+ "documentation": "\n <p> This action creates a new health check.</p>\n <p> To create a new health check, send a <code>POST</code> request to the <code>2013-04-01/healthcheck</code> resource. The request body must include an XML document with a <code>CreateHealthCheckRequest</code> element. The response returns the <code>CreateHealthCheckResponse</code> element that contains metadata about the health check.</p>\n "
600
+ },
601
+ "CreateHostedZone": {
602
+ "name": "CreateHostedZone",
603
+ "http": {
604
+ "method": "POST",
605
+ "uri": "/2013-04-01/hostedzone",
606
+ "response_code": 201
607
+ },
608
+ "input": {
609
+ "shape_name": "CreateHostedZoneRequest",
610
+ "type": "structure",
611
+ "members": {
612
+ "Name": {
613
+ "shape_name": "DNSName",
614
+ "type": "string",
615
+ "max_length": 1024,
616
+ "documentation": "\n <p>The name of the domain. This must be a fully-specified domain, for example, www.example.com. The trailing dot is optional; Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.</p>\n <p>This is the name you have registered with your DNS registrar. You should ask your registrar to change the authoritative name servers for your domain to the set of <code>NameServers</code> elements returned in <code>DelegationSet</code>.</p>\n ",
617
+ "required": true
618
+ },
619
+ "CallerReference": {
620
+ "shape_name": "Nonce",
621
+ "type": "string",
622
+ "min_length": 1,
623
+ "max_length": 128,
624
+ "documentation": "\n <p>A unique string that identifies the request and that allows failed <code>CreateHostedZone</code> requests to be retried without the risk of executing the operation twice. You must use a unique <code>CallerReference</code> string every time you create a hosted zone. <code>CallerReference</code> can be any unique string; you might choose to use a string that identifies your project, such as <code>DNSMigration_01</code>.</p>\n<p>Valid characters are any Unicode code points that are legal in an XML 1.0 document. The UTF-8 encoding of the value must be less than 128 bytes.</p>\n ",
625
+ "required": true
626
+ },
627
+ "HostedZoneConfig": {
628
+ "shape_name": "HostedZoneConfig",
629
+ "type": "structure",
630
+ "members": {
631
+ "Comment": {
632
+ "shape_name": "ResourceDescription",
633
+ "type": "string",
634
+ "max_length": 256,
635
+ "documentation": "\n <p>An optional comment about your hosted zone. If you don't want to specify a comment, you can omit the <code>HostedZoneConfig</code> and <code>Comment</code> elements from the XML document.</p>\n "
636
+ }
637
+ },
638
+ "member_order": [
639
+ "Comment"
640
+ ],
641
+ "documentation": "\n <p>A complex type that contains an optional comment about your hosted zone.</p>\n "
642
+ }
643
+ },
644
+ "member_order": [
645
+ "Name",
646
+ "CallerReference",
647
+ "HostedZoneConfig"
648
+ ],
649
+ "documentation": "\n <p>A complex type that contains information about the request to create a hosted zone.</p>\n "
650
+ },
651
+ "output": {
652
+ "shape_name": "CreateHostedZoneResponse",
653
+ "type": "structure",
654
+ "members": {
655
+ "HostedZone": {
656
+ "shape_name": "HostedZone",
657
+ "type": "structure",
658
+ "members": {
659
+ "Id": {
660
+ "shape_name": "ResourceId",
661
+ "type": "string",
662
+ "max_length": 32,
663
+ "documentation": "\n <p>The ID of the specified hosted zone.</p>\n ",
664
+ "required": true
665
+ },
666
+ "Name": {
667
+ "shape_name": "DNSName",
668
+ "type": "string",
669
+ "max_length": 1024,
670
+ "documentation": "\n <p>The name of the domain. This must be a fully-specified domain, for example, www.example.com. The trailing dot is optional; Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.</p>\n <p>This is the name you have registered with your DNS registrar. You should ask your registrar to change the authoritative name servers for your domain to the set of <code>NameServers</code> elements returned in <code>DelegationSet</code>.</p>\n ",
671
+ "required": true
672
+ },
673
+ "CallerReference": {
674
+ "shape_name": "Nonce",
675
+ "type": "string",
676
+ "min_length": 1,
677
+ "max_length": 128,
678
+ "documentation": "\n <p>A unique string that identifies the request to create the hosted zone.</p>\n ",
679
+ "required": true
680
+ },
681
+ "Config": {
682
+ "shape_name": "HostedZoneConfig",
683
+ "type": "structure",
684
+ "members": {
685
+ "Comment": {
686
+ "shape_name": "ResourceDescription",
687
+ "type": "string",
688
+ "max_length": 256,
689
+ "documentation": "\n <p>An optional comment about your hosted zone. If you don't want to specify a comment, you can omit the <code>HostedZoneConfig</code> and <code>Comment</code> elements from the XML document.</p>\n "
690
+ }
691
+ },
692
+ "member_order": [
693
+ "Comment"
694
+ ],
695
+ "documentation": "\n <p>A complex type that contains the <code>Comment</code> element.</p>\n "
696
+ },
697
+ "ResourceRecordSetCount": {
698
+ "shape_name": "HostedZoneRRSetCount",
699
+ "type": "long",
700
+ "documentation": "\n <p>Total number of resource record sets in the hosted zone.</p>\n "
701
+ }
702
+ },
703
+ "member_order": [
704
+ "Id",
705
+ "Name",
706
+ "CallerReference",
707
+ "Config",
708
+ "ResourceRecordSetCount"
709
+ ],
710
+ "documentation": "\n <p>A complex type that contains identifying information about the hosted zone.</p>\n ",
711
+ "required": true
712
+ },
713
+ "ChangeInfo": {
714
+ "shape_name": "ChangeInfo",
715
+ "type": "structure",
716
+ "members": {
717
+ "Id": {
718
+ "shape_name": "ResourceId",
719
+ "type": "string",
720
+ "max_length": 32,
721
+ "documentation": "\n <p>The ID of the request. Use this ID to track when the change has completed across all Amazon Route 53 DNS servers.</p>\n ",
722
+ "required": true
723
+ },
724
+ "Status": {
725
+ "shape_name": "ChangeStatus",
726
+ "type": "string",
727
+ "enum": [
728
+ "PENDING",
729
+ "INSYNC"
730
+ ],
731
+ "documentation": "\n <p>The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.</p>\n <p>Valid Values: <code>PENDING</code> | <code>INSYNC</code></p>\n ",
732
+ "required": true
733
+ },
734
+ "SubmittedAt": {
735
+ "shape_name": "TimeStamp",
736
+ "type": "timestamp",
737
+ "documentation": "\n <p>The date and time the change was submitted, in the format <code>YYYY-MM-DDThh:mm:ssZ</code>, as specified in the ISO 8601 standard (for example, 2009-11-19T19:37:58Z). The <code>Z</code> after the time indicates that the time is listed in Coordinated Universal Time (UTC), which is synonymous with Greenwich Mean Time in this context.</p>\n ",
738
+ "required": true
739
+ },
740
+ "Comment": {
741
+ "shape_name": "ResourceDescription",
742
+ "type": "string",
743
+ "max_length": 256,
744
+ "documentation": "\n <p>A complex type that describes change information about changes made to your hosted zone.</p>\n <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>\n "
745
+ }
746
+ },
747
+ "member_order": [
748
+ "Id",
749
+ "Status",
750
+ "SubmittedAt",
751
+ "Comment"
752
+ ],
753
+ "documentation": "\n <p>A complex type that contains information about the request to create a hosted zone. This includes an ID that you use when you call the <a>GetChange</a> action to get the current status of the change request.</p>\n ",
754
+ "required": true
755
+ },
756
+ "DelegationSet": {
757
+ "shape_name": "DelegationSet",
758
+ "type": "structure",
759
+ "members": {
760
+ "NameServers": {
761
+ "shape_name": "DelegationSetNameServers",
762
+ "type": "list",
763
+ "members": {
764
+ "shape_name": "DNSName",
765
+ "type": "string",
766
+ "max_length": 1024,
767
+ "documentation": null,
768
+ "xmlname": "NameServer"
769
+ },
770
+ "min_length": 1,
771
+ "documentation": "\n <p>A complex type that contains the authoritative name servers for the hosted zone. Use the method provided by your domain registrar to add an NS record to your domain for each <code>NameServer</code> that is assigned to your hosted zone.</p>\n ",
772
+ "required": true
773
+ }
774
+ },
775
+ "member_order": [
776
+ "NameServers"
777
+ ],
778
+ "documentation": "\n <p>A complex type that contains name server information.</p>\n ",
779
+ "required": true
780
+ },
781
+ "Location": {
782
+ "shape_name": "ResourceURI",
783
+ "type": "string",
784
+ "max_length": 1024,
785
+ "documentation": "\n <p>The unique URL representing the new hosted zone.</p>\n ",
786
+ "required": true,
787
+ "location": "header",
788
+ "location_name": "Location"
789
+ }
790
+ },
791
+ "member_order": [
792
+ "HostedZone",
793
+ "ChangeInfo",
794
+ "DelegationSet",
795
+ "Location"
796
+ ],
797
+ "documentation": "\n <p>A complex type containing the response information for the new hosted zone.</p>\n "
798
+ },
799
+ "errors": [
800
+ {
801
+ "shape_name": "InvalidDomainName",
802
+ "type": "structure",
803
+ "members": {
804
+ "message": {
805
+ "shape_name": "ErrorMessage",
806
+ "type": "string",
807
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
808
+ }
809
+ },
810
+ "documentation": "\n <p>This error indicates that the specified domain name is not valid.</p>\n "
811
+ },
812
+ {
813
+ "shape_name": "HostedZoneAlreadyExists",
814
+ "type": "structure",
815
+ "members": {
816
+ "message": {
817
+ "shape_name": "ErrorMessage",
818
+ "type": "string",
819
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
820
+ }
821
+ },
822
+ "documentation": "\n <p>The hosted zone you are trying to create already exists. Route 53 returns this error when a hosted zone has already been created with the specified <code>CallerReference</code>.</p>\n "
823
+ },
824
+ {
825
+ "shape_name": "TooManyHostedZones",
826
+ "type": "structure",
827
+ "members": {
828
+ "message": {
829
+ "shape_name": "ErrorMessage",
830
+ "type": "string",
831
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
832
+ }
833
+ },
834
+ "documentation": "\n <p>This error indicates that you've reached the maximum number of hosted zones that can be created for the current AWS account. You can request an increase to the limit on the <a href=\"http://aws.amazon.com/route53-request/\">Contact Us</a> page.</p>\n "
835
+ },
836
+ {
837
+ "shape_name": "InvalidInput",
838
+ "type": "structure",
839
+ "members": {
840
+ "message": {
841
+ "shape_name": "ErrorMessage",
842
+ "type": "string",
843
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
844
+ }
845
+ },
846
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
847
+ },
848
+ {
849
+ "shape_name": "DelegationSetNotAvailable",
850
+ "type": "structure",
851
+ "members": {
852
+ "message": {
853
+ "shape_name": "ErrorMessage",
854
+ "type": "string",
855
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
856
+ }
857
+ },
858
+ "documentation": "\n <p>Route 53 allows some duplicate domain names, but there is a maximum number of duplicate names. This error indicates that you have reached that maximum. If you want to create another hosted zone with the same name and Route 53 generates this error, you can request an increase to the limit on the <a href=\"http://aws.amazon.com/route53-request/\">Contact Us</a> page.</p>\n "
859
+ }
860
+ ],
861
+ "documentation": "\n <p> This action creates a new hosted zone.</p>\n <p>To create a new hosted zone, send a <code>POST</code> request to the <code>2013-04-01/hostedzone</code> resource. The request body must include an XML document with a <code>CreateHostedZoneRequest</code> element. The response returns the <code>CreateHostedZoneResponse</code> element that contains metadata about the hosted zone.</p>\n <p>Route 53 automatically creates a default SOA record and four NS records for the zone. The NS records in the hosted zone are the name servers you give your registrar to delegate your domain to. For more information about SOA and NS records, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html\">NS and SOA Records that Route 53 Creates for a Hosted Zone</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>\n <p>When you create a zone, its initial status is <code>PENDING</code>. This means that it is not yet available on all DNS servers. The status of the zone changes to <code>INSYNC</code> when the NS and SOA records are available on all Route 53 DNS servers. </p>\n "
862
+ },
863
+ "DeleteHealthCheck": {
864
+ "name": "DeleteHealthCheck",
865
+ "http": {
866
+ "method": "DELETE",
867
+ "uri": "/2013-04-01/healthcheck/{HealthCheckId}"
868
+ },
869
+ "input": {
870
+ "shape_name": "DeleteHealthCheckRequest",
871
+ "type": "structure",
872
+ "members": {
873
+ "HealthCheckId": {
874
+ "shape_name": "HealthCheckId",
875
+ "type": "string",
876
+ "max_length": 64,
877
+ "documentation": "\n <p>The ID of the health check to delete.</p>\n ",
878
+ "required": true,
879
+ "location": "uri"
880
+ }
881
+ },
882
+ "member_order": [
883
+ "HealthCheckId"
884
+ ],
885
+ "documentation": "\n <p>A complex type containing the request information for delete health check.</p>\n "
886
+ },
887
+ "output": {
888
+ "shape_name": "DeleteHealthCheckResponse",
889
+ "type": "structure",
890
+ "members": {
891
+ },
892
+ "documentation": "\n <p>Empty response for the request.</p>\n "
893
+ },
894
+ "errors": [
895
+ {
896
+ "shape_name": "NoSuchHealthCheck",
897
+ "type": "structure",
898
+ "members": {
899
+ "message": {
900
+ "shape_name": "ErrorMessage",
901
+ "type": "string",
902
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
903
+ }
904
+ },
905
+ "documentation": "\n <p>The health check you are trying to get or delete does not exist.</p>\n "
906
+ },
907
+ {
908
+ "shape_name": "HealthCheckInUse",
909
+ "type": "structure",
910
+ "members": {
911
+ "message": {
912
+ "shape_name": "ErrorMessage",
913
+ "type": "string",
914
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
915
+ }
916
+ },
917
+ "documentation": "\n <p>There are resource records associated with this health check. Before you can delete the health check, you must disassociate it from the resource record sets.</p>\n "
918
+ },
919
+ {
920
+ "shape_name": "InvalidInput",
921
+ "type": "structure",
922
+ "members": {
923
+ "message": {
924
+ "shape_name": "ErrorMessage",
925
+ "type": "string",
926
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
927
+ }
928
+ },
929
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
930
+ }
931
+ ],
932
+ "documentation": "\n <p>This action deletes a health check. To delete a health check, send a <code>DELETE</code> request to the <code>2013-04-01/healthcheck/<i>health check ID</i></code> resource.</p>\n <important> You can delete a health check only if there are no resource record sets associated with this health check. If resource record sets are associated with this health check, you must disassociate them before you can delete your health check. If you try to delete a health check that is associated with resource record sets, Route 53 will deny your request with a <code>HealthCheckInUse</code> error. For information about disassociating the records from your health check, see <a>ChangeResourceRecordSets</a>.</important>\n "
933
+ },
934
+ "DeleteHostedZone": {
935
+ "name": "DeleteHostedZone",
936
+ "http": {
937
+ "method": "DELETE",
938
+ "uri": "/2013-04-01/hostedzone/{Id}"
939
+ },
940
+ "input": {
941
+ "shape_name": "DeleteHostedZoneRequest",
942
+ "type": "structure",
943
+ "members": {
944
+ "Id": {
945
+ "shape_name": "ResourceId",
946
+ "type": "string",
947
+ "max_length": 32,
948
+ "documentation": "\n <p> The ID of the request. Include this ID in a call to <a>GetChange</a> to track when the change has propagated to all Route 53 DNS servers.</p>\n ",
949
+ "required": true,
950
+ "location": "uri"
951
+ }
952
+ },
953
+ "member_order": [
954
+ "Id"
955
+ ],
956
+ "documentation": "\n <p>A complex type containing the response information for the delete request.</p>\n "
957
+ },
958
+ "output": {
959
+ "shape_name": "DeleteHostedZoneResponse",
960
+ "type": "structure",
961
+ "members": {
962
+ "ChangeInfo": {
963
+ "shape_name": "ChangeInfo",
964
+ "type": "structure",
965
+ "members": {
966
+ "Id": {
967
+ "shape_name": "ResourceId",
968
+ "type": "string",
969
+ "max_length": 32,
970
+ "documentation": "\n <p>The ID of the request. Use this ID to track when the change has completed across all Amazon Route 53 DNS servers.</p>\n ",
971
+ "required": true
972
+ },
973
+ "Status": {
974
+ "shape_name": "ChangeStatus",
975
+ "type": "string",
976
+ "enum": [
977
+ "PENDING",
978
+ "INSYNC"
979
+ ],
980
+ "documentation": "\n <p>The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.</p>\n <p>Valid Values: <code>PENDING</code> | <code>INSYNC</code></p>\n ",
981
+ "required": true
982
+ },
983
+ "SubmittedAt": {
984
+ "shape_name": "TimeStamp",
985
+ "type": "timestamp",
986
+ "documentation": "\n <p>The date and time the change was submitted, in the format <code>YYYY-MM-DDThh:mm:ssZ</code>, as specified in the ISO 8601 standard (for example, 2009-11-19T19:37:58Z). The <code>Z</code> after the time indicates that the time is listed in Coordinated Universal Time (UTC), which is synonymous with Greenwich Mean Time in this context.</p>\n ",
987
+ "required": true
988
+ },
989
+ "Comment": {
990
+ "shape_name": "ResourceDescription",
991
+ "type": "string",
992
+ "max_length": 256,
993
+ "documentation": "\n <p>A complex type that describes change information about changes made to your hosted zone.</p>\n <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>\n "
994
+ }
995
+ },
996
+ "member_order": [
997
+ "Id",
998
+ "Status",
999
+ "SubmittedAt",
1000
+ "Comment"
1001
+ ],
1002
+ "documentation": "\n <p>A complex type that contains the ID, the status, and the date and time of your delete request.</p>\n ",
1003
+ "required": true
1004
+ }
1005
+ },
1006
+ "member_order": [
1007
+ "ChangeInfo"
1008
+ ],
1009
+ "documentation": "\n <p>A complex type containing the response information for the request.</p>\n "
1010
+ },
1011
+ "errors": [
1012
+ {
1013
+ "shape_name": "NoSuchHostedZone",
1014
+ "type": "structure",
1015
+ "members": {
1016
+ "message": {
1017
+ "shape_name": "ErrorMessage",
1018
+ "type": "string",
1019
+ "documentation": null
1020
+ }
1021
+ },
1022
+ "documentation": null
1023
+ },
1024
+ {
1025
+ "shape_name": "HostedZoneNotEmpty",
1026
+ "type": "structure",
1027
+ "members": {
1028
+ "message": {
1029
+ "shape_name": "ErrorMessage",
1030
+ "type": "string",
1031
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1032
+ }
1033
+ },
1034
+ "documentation": "\n <p>The hosted zone contains resource record sets in addition to the default NS and SOA resource record sets. Before you can delete the hosted zone, you must delete the additional resource record sets.</p>\n "
1035
+ },
1036
+ {
1037
+ "shape_name": "PriorRequestNotComplete",
1038
+ "type": "structure",
1039
+ "members": {
1040
+ "message": {
1041
+ "shape_name": "ErrorMessage",
1042
+ "type": "string",
1043
+ "documentation": null
1044
+ }
1045
+ },
1046
+ "documentation": "\n <p>The request was rejected because Route 53 was still processing a prior request.</p>\n "
1047
+ },
1048
+ {
1049
+ "shape_name": "InvalidInput",
1050
+ "type": "structure",
1051
+ "members": {
1052
+ "message": {
1053
+ "shape_name": "ErrorMessage",
1054
+ "type": "string",
1055
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1056
+ }
1057
+ },
1058
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1059
+ }
1060
+ ],
1061
+ "documentation": "\n <p>This action deletes a hosted zone. To delete a hosted zone, send a <code>DELETE</code> request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i></code> resource.</p>\n <p>For more information about deleting a hosted zone, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html\">Deleting a Hosted Zone</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>\n <important> You can delete a hosted zone only if there are no resource record sets other than the default SOA record and NS resource record sets. If your hosted zone contains other resource record sets, you must delete them before you can delete your hosted zone. If you try to delete a hosted zone that contains other resource record sets, Route 53 will deny your request with a <code>HostedZoneNotEmpty</code> error. For information about deleting records from your hosted zone, see <a>ChangeResourceRecordSets</a>.</important>\n "
1062
+ },
1063
+ "GetChange": {
1064
+ "name": "GetChange",
1065
+ "http": {
1066
+ "method": "GET",
1067
+ "uri": "/2013-04-01/change/{Id}"
1068
+ },
1069
+ "input": {
1070
+ "shape_name": "GetChangeRequest",
1071
+ "type": "structure",
1072
+ "members": {
1073
+ "Id": {
1074
+ "shape_name": "ResourceId",
1075
+ "type": "string",
1076
+ "max_length": 32,
1077
+ "documentation": "\n <p> The ID of the change batch request. The value that you specify here is the value that <code>ChangeResourceRecordSets</code> returned in the Id element when you submitted the request.</p>\n ",
1078
+ "required": true,
1079
+ "location": "uri"
1080
+ }
1081
+ },
1082
+ "member_order": [
1083
+ "Id"
1084
+ ],
1085
+ "documentation": "\n <p>The input for a GetChange request.</p>\n "
1086
+ },
1087
+ "output": {
1088
+ "shape_name": "GetChangeResponse",
1089
+ "type": "structure",
1090
+ "members": {
1091
+ "ChangeInfo": {
1092
+ "shape_name": "ChangeInfo",
1093
+ "type": "structure",
1094
+ "members": {
1095
+ "Id": {
1096
+ "shape_name": "ResourceId",
1097
+ "type": "string",
1098
+ "max_length": 32,
1099
+ "documentation": "\n <p>The ID of the request. Use this ID to track when the change has completed across all Amazon Route 53 DNS servers.</p>\n ",
1100
+ "required": true
1101
+ },
1102
+ "Status": {
1103
+ "shape_name": "ChangeStatus",
1104
+ "type": "string",
1105
+ "enum": [
1106
+ "PENDING",
1107
+ "INSYNC"
1108
+ ],
1109
+ "documentation": "\n <p>The current state of the request. <code>PENDING</code> indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.</p>\n <p>Valid Values: <code>PENDING</code> | <code>INSYNC</code></p>\n ",
1110
+ "required": true
1111
+ },
1112
+ "SubmittedAt": {
1113
+ "shape_name": "TimeStamp",
1114
+ "type": "timestamp",
1115
+ "documentation": "\n <p>The date and time the change was submitted, in the format <code>YYYY-MM-DDThh:mm:ssZ</code>, as specified in the ISO 8601 standard (for example, 2009-11-19T19:37:58Z). The <code>Z</code> after the time indicates that the time is listed in Coordinated Universal Time (UTC), which is synonymous with Greenwich Mean Time in this context.</p>\n ",
1116
+ "required": true
1117
+ },
1118
+ "Comment": {
1119
+ "shape_name": "ResourceDescription",
1120
+ "type": "string",
1121
+ "max_length": 256,
1122
+ "documentation": "\n <p>A complex type that describes change information about changes made to your hosted zone.</p>\n <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>\n "
1123
+ }
1124
+ },
1125
+ "member_order": [
1126
+ "Id",
1127
+ "Status",
1128
+ "SubmittedAt",
1129
+ "Comment"
1130
+ ],
1131
+ "documentation": "\n <p>A complex type that contains information about the specified change batch, including the change batch ID, the status of the change, and the date and time of the request.</p>\n ",
1132
+ "required": true
1133
+ }
1134
+ },
1135
+ "member_order": [
1136
+ "ChangeInfo"
1137
+ ],
1138
+ "documentation": "\n <p>A complex type that contains the <code>ChangeInfo</code> element.</p>\n "
1139
+ },
1140
+ "errors": [
1141
+ {
1142
+ "shape_name": "NoSuchChange",
1143
+ "type": "structure",
1144
+ "members": {
1145
+ "message": {
1146
+ "shape_name": "ErrorMessage",
1147
+ "type": "string",
1148
+ "documentation": null
1149
+ }
1150
+ },
1151
+ "documentation": null
1152
+ },
1153
+ {
1154
+ "shape_name": "InvalidInput",
1155
+ "type": "structure",
1156
+ "members": {
1157
+ "message": {
1158
+ "shape_name": "ErrorMessage",
1159
+ "type": "string",
1160
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1161
+ }
1162
+ },
1163
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1164
+ }
1165
+ ],
1166
+ "documentation": "\n <p> This action returns the current status of a change batch request. The status is one of the following values:</p>\n <p>- <code>PENDING</code> indicates that the changes in this request have not replicated to all Route 53 DNS servers. This is the initial status of all change batch requests.</p>\n <p>- <code>INSYNC</code> indicates that the changes have replicated to all Amazon Route 53 DNS servers. </p>\n "
1167
+ },
1168
+ "GetHealthCheck": {
1169
+ "name": "GetHealthCheck",
1170
+ "http": {
1171
+ "method": "GET",
1172
+ "uri": "/2013-04-01/healthcheck/{HealthCheckId}"
1173
+ },
1174
+ "input": {
1175
+ "shape_name": "GetHealthCheckRequest",
1176
+ "type": "structure",
1177
+ "members": {
1178
+ "HealthCheckId": {
1179
+ "shape_name": "HealthCheckId",
1180
+ "type": "string",
1181
+ "max_length": 64,
1182
+ "documentation": "\n <p>The ID of the health check to retrieve.</p>\n ",
1183
+ "required": true,
1184
+ "location": "uri"
1185
+ }
1186
+ },
1187
+ "member_order": [
1188
+ "HealthCheckId"
1189
+ ],
1190
+ "documentation": "\n <p>A complex type that contains information about the request to get a health check.</p>\n "
1191
+ },
1192
+ "output": {
1193
+ "shape_name": "GetHealthCheckResponse",
1194
+ "type": "structure",
1195
+ "members": {
1196
+ "HealthCheck": {
1197
+ "shape_name": "HealthCheck",
1198
+ "type": "structure",
1199
+ "members": {
1200
+ "Id": {
1201
+ "shape_name": "HealthCheckId",
1202
+ "type": "string",
1203
+ "max_length": 64,
1204
+ "documentation": "\n <p>The ID of the specified health check.</p>\n ",
1205
+ "required": true
1206
+ },
1207
+ "CallerReference": {
1208
+ "shape_name": "HealthCheckNonce",
1209
+ "type": "string",
1210
+ "min_length": 1,
1211
+ "max_length": 64,
1212
+ "documentation": "\n <p>A unique string that identifies the request to create the health check.</p>\n ",
1213
+ "required": true
1214
+ },
1215
+ "HealthCheckConfig": {
1216
+ "shape_name": "HealthCheckConfig",
1217
+ "type": "structure",
1218
+ "members": {
1219
+ "IPAddress": {
1220
+ "shape_name": "IPAddress",
1221
+ "type": "string",
1222
+ "max_length": 15,
1223
+ "pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",
1224
+ "documentation": "\n <p>IP Address of the instance being checked. </p>\n ",
1225
+ "required": true
1226
+ },
1227
+ "Port": {
1228
+ "shape_name": "Port",
1229
+ "type": "integer",
1230
+ "min_length": 1,
1231
+ "max_length": 65535,
1232
+ "documentation": "\n <p>Port on which connection will be opened to the instance to health check. For HTTP and HTTP_STR_MATCH this defaults to 80 if the port is not specified. For HTTPS and HTTPS_STR_MATCH this defaults to 443 if the port is not specified.</p>\n "
1233
+ },
1234
+ "Type": {
1235
+ "shape_name": "HealthCheckType",
1236
+ "type": "string",
1237
+ "enum": [
1238
+ "HTTP",
1239
+ "HTTPS",
1240
+ "HTTP_STR_MATCH",
1241
+ "HTTPS_STR_MATCH",
1242
+ "TCP"
1243
+ ],
1244
+ "documentation": "\n <p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH.</p>\n ",
1245
+ "required": true
1246
+ },
1247
+ "ResourcePath": {
1248
+ "shape_name": "ResourcePath",
1249
+ "type": "string",
1250
+ "max_length": 255,
1251
+ "documentation": "\n <p>Path to ping on the instance to check the health. Required for HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH health checks, HTTP request is issued to the instance on the given port and path.</p>\n "
1252
+ },
1253
+ "FullyQualifiedDomainName": {
1254
+ "shape_name": "FullyQualifiedDomainName",
1255
+ "type": "string",
1256
+ "max_length": 255,
1257
+ "documentation": "\n <p>Fully qualified domain name of the instance to be health checked.</p>\n "
1258
+ },
1259
+ "SearchString": {
1260
+ "shape_name": "SearchString",
1261
+ "type": "string",
1262
+ "max_length": 255,
1263
+ "documentation": "\n <p>A string to search for in the body of a health check response. Required for HTTP_STR_MATCH and HTTPS_STR_MATCH health checks.</p>\n "
1264
+ }
1265
+ },
1266
+ "member_order": [
1267
+ "IPAddress",
1268
+ "Port",
1269
+ "Type",
1270
+ "ResourcePath",
1271
+ "FullyQualifiedDomainName",
1272
+ "SearchString"
1273
+ ],
1274
+ "documentation": "\n <p>A complex type that contains the health check configuration.</p>\n ",
1275
+ "required": true
1276
+ }
1277
+ },
1278
+ "member_order": [
1279
+ "Id",
1280
+ "CallerReference",
1281
+ "HealthCheckConfig"
1282
+ ],
1283
+ "documentation": "\n <p>A complex type that contains the information about the specified health check.</p>\n ",
1284
+ "required": true
1285
+ }
1286
+ },
1287
+ "member_order": [
1288
+ "HealthCheck"
1289
+ ],
1290
+ "documentation": "\n <p>A complex type containing information about the specified health check.</p>\n "
1291
+ },
1292
+ "errors": [
1293
+ {
1294
+ "shape_name": "NoSuchHealthCheck",
1295
+ "type": "structure",
1296
+ "members": {
1297
+ "message": {
1298
+ "shape_name": "ErrorMessage",
1299
+ "type": "string",
1300
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1301
+ }
1302
+ },
1303
+ "documentation": "\n <p>The health check you are trying to get or delete does not exist.</p>\n "
1304
+ },
1305
+ {
1306
+ "shape_name": "InvalidInput",
1307
+ "type": "structure",
1308
+ "members": {
1309
+ "message": {
1310
+ "shape_name": "ErrorMessage",
1311
+ "type": "string",
1312
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1313
+ }
1314
+ },
1315
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1316
+ },
1317
+ {
1318
+ "shape_name": "IncompatibleVersion",
1319
+ "type": "structure",
1320
+ "members": {
1321
+ "message": {
1322
+ "shape_name": "ErrorMessage",
1323
+ "type": "string",
1324
+ "documentation": null
1325
+ }
1326
+ },
1327
+ "documentation": "\n <p>The resource you are trying to access is unsupported on this Route 53 endpoint. Please consider using a newer endpoint or a tool that does so.</p>\n "
1328
+ }
1329
+ ],
1330
+ "documentation": "\n <p> To retrieve the health check, send a <code>GET</code> request to the <code>2013-04-01/healthcheck/<i>health check ID</i></code> resource. </p>\n "
1331
+ },
1332
+ "GetHostedZone": {
1333
+ "name": "GetHostedZone",
1334
+ "http": {
1335
+ "method": "GET",
1336
+ "uri": "/2013-04-01/hostedzone/{Id}"
1337
+ },
1338
+ "input": {
1339
+ "shape_name": "GetHostedZoneRequest",
1340
+ "type": "structure",
1341
+ "members": {
1342
+ "Id": {
1343
+ "shape_name": "ResourceId",
1344
+ "type": "string",
1345
+ "max_length": 32,
1346
+ "documentation": "\n <p>The ID of the hosted zone for which you want to get a list of the name servers in the delegation set.</p>\n ",
1347
+ "required": true,
1348
+ "location": "uri"
1349
+ }
1350
+ },
1351
+ "member_order": [
1352
+ "Id"
1353
+ ],
1354
+ "documentation": "\n <p> The input for a GetHostedZone request.</p>\n "
1355
+ },
1356
+ "output": {
1357
+ "shape_name": "GetHostedZoneResponse",
1358
+ "type": "structure",
1359
+ "members": {
1360
+ "HostedZone": {
1361
+ "shape_name": "HostedZone",
1362
+ "type": "structure",
1363
+ "members": {
1364
+ "Id": {
1365
+ "shape_name": "ResourceId",
1366
+ "type": "string",
1367
+ "max_length": 32,
1368
+ "documentation": "\n <p>The ID of the specified hosted zone.</p>\n ",
1369
+ "required": true
1370
+ },
1371
+ "Name": {
1372
+ "shape_name": "DNSName",
1373
+ "type": "string",
1374
+ "max_length": 1024,
1375
+ "documentation": "\n <p>The name of the domain. This must be a fully-specified domain, for example, www.example.com. The trailing dot is optional; Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.</p>\n <p>This is the name you have registered with your DNS registrar. You should ask your registrar to change the authoritative name servers for your domain to the set of <code>NameServers</code> elements returned in <code>DelegationSet</code>.</p>\n ",
1376
+ "required": true
1377
+ },
1378
+ "CallerReference": {
1379
+ "shape_name": "Nonce",
1380
+ "type": "string",
1381
+ "min_length": 1,
1382
+ "max_length": 128,
1383
+ "documentation": "\n <p>A unique string that identifies the request to create the hosted zone.</p>\n ",
1384
+ "required": true
1385
+ },
1386
+ "Config": {
1387
+ "shape_name": "HostedZoneConfig",
1388
+ "type": "structure",
1389
+ "members": {
1390
+ "Comment": {
1391
+ "shape_name": "ResourceDescription",
1392
+ "type": "string",
1393
+ "max_length": 256,
1394
+ "documentation": "\n <p>An optional comment about your hosted zone. If you don't want to specify a comment, you can omit the <code>HostedZoneConfig</code> and <code>Comment</code> elements from the XML document.</p>\n "
1395
+ }
1396
+ },
1397
+ "member_order": [
1398
+ "Comment"
1399
+ ],
1400
+ "documentation": "\n <p>A complex type that contains the <code>Comment</code> element.</p>\n "
1401
+ },
1402
+ "ResourceRecordSetCount": {
1403
+ "shape_name": "HostedZoneRRSetCount",
1404
+ "type": "long",
1405
+ "documentation": "\n <p>Total number of resource record sets in the hosted zone.</p>\n "
1406
+ }
1407
+ },
1408
+ "member_order": [
1409
+ "Id",
1410
+ "Name",
1411
+ "CallerReference",
1412
+ "Config",
1413
+ "ResourceRecordSetCount"
1414
+ ],
1415
+ "documentation": "\n <p>A complex type that contains the information about the specified hosted zone.</p>\n ",
1416
+ "required": true
1417
+ },
1418
+ "DelegationSet": {
1419
+ "shape_name": "DelegationSet",
1420
+ "type": "structure",
1421
+ "members": {
1422
+ "NameServers": {
1423
+ "shape_name": "DelegationSetNameServers",
1424
+ "type": "list",
1425
+ "members": {
1426
+ "shape_name": "DNSName",
1427
+ "type": "string",
1428
+ "max_length": 1024,
1429
+ "documentation": null,
1430
+ "xmlname": "NameServer"
1431
+ },
1432
+ "min_length": 1,
1433
+ "documentation": "\n <p>A complex type that contains the authoritative name servers for the hosted zone. Use the method provided by your domain registrar to add an NS record to your domain for each <code>NameServer</code> that is assigned to your hosted zone.</p>\n ",
1434
+ "required": true
1435
+ }
1436
+ },
1437
+ "member_order": [
1438
+ "NameServers"
1439
+ ],
1440
+ "documentation": "\n <p>A complex type that contains information about the name servers for the specified hosted zone.</p>\n ",
1441
+ "required": true
1442
+ }
1443
+ },
1444
+ "member_order": [
1445
+ "HostedZone",
1446
+ "DelegationSet"
1447
+ ],
1448
+ "documentation": "\n <p>A complex type containing information about the specified hosted zone.</p>\n "
1449
+ },
1450
+ "errors": [
1451
+ {
1452
+ "shape_name": "NoSuchHostedZone",
1453
+ "type": "structure",
1454
+ "members": {
1455
+ "message": {
1456
+ "shape_name": "ErrorMessage",
1457
+ "type": "string",
1458
+ "documentation": null
1459
+ }
1460
+ },
1461
+ "documentation": null
1462
+ },
1463
+ {
1464
+ "shape_name": "InvalidInput",
1465
+ "type": "structure",
1466
+ "members": {
1467
+ "message": {
1468
+ "shape_name": "ErrorMessage",
1469
+ "type": "string",
1470
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1471
+ }
1472
+ },
1473
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1474
+ }
1475
+ ],
1476
+ "documentation": "\n <p> To retrieve the delegation set for a hosted zone, send a <code>GET</code> request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i></code> resource. The delegation set is the four Route 53 name servers that were assigned to the hosted zone when you created it.</p>\n "
1477
+ },
1478
+ "ListHealthChecks": {
1479
+ "name": "ListHealthChecks",
1480
+ "http": {
1481
+ "method": "GET",
1482
+ "uri": "/2013-04-01/healthcheck?marker={Marker}&maxitems={MaxItems}"
1483
+ },
1484
+ "input": {
1485
+ "shape_name": "ListHealthChecksRequest",
1486
+ "type": "structure",
1487
+ "members": {
1488
+ "Marker": {
1489
+ "shape_name": "PageMarker",
1490
+ "type": "string",
1491
+ "max_length": 64,
1492
+ "documentation": "\n <p>If the request returned more than one page of results, submit another request and specify the value of <code>NextMarker</code> from the last response in the <code>marker</code> parameter to get the next page of results.</p>\n ",
1493
+ "location": "uri"
1494
+ },
1495
+ "MaxItems": {
1496
+ "shape_name": "PageMaxItems",
1497
+ "type": "string",
1498
+ "documentation": "\n <p>Specify the maximum number of health checks to return per page of results.</p>\n ",
1499
+ "location": "uri"
1500
+ }
1501
+ },
1502
+ "member_order": [
1503
+ "Marker",
1504
+ "MaxItems"
1505
+ ],
1506
+ "documentation": "\n <p> To retrieve a list of your health checks, send a <code>GET</code> request to the <code>2013-04-01/healthcheck</code> resource. The response to this request includes a <code>HealthChecks</code> element with zero or more <code>HealthCheck</code> child elements. By default, the list of health checks is displayed on a single page. You can control the length of the page that is displayed by using the <code>MaxItems</code> parameter. You can use the <code>Marker</code> parameter to control the health check that the list begins with.</p>\n <note> Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Route 53 returns only the first 100.</note>\n "
1507
+ },
1508
+ "output": {
1509
+ "shape_name": "ListHealthChecksResponse",
1510
+ "type": "structure",
1511
+ "members": {
1512
+ "HealthChecks": {
1513
+ "shape_name": "HealthChecks",
1514
+ "type": "list",
1515
+ "members": {
1516
+ "shape_name": "HealthCheck",
1517
+ "type": "structure",
1518
+ "members": {
1519
+ "Id": {
1520
+ "shape_name": "HealthCheckId",
1521
+ "type": "string",
1522
+ "max_length": 64,
1523
+ "documentation": "\n <p>The ID of the specified health check.</p>\n ",
1524
+ "required": true
1525
+ },
1526
+ "CallerReference": {
1527
+ "shape_name": "HealthCheckNonce",
1528
+ "type": "string",
1529
+ "min_length": 1,
1530
+ "max_length": 64,
1531
+ "documentation": "\n <p>A unique string that identifies the request to create the health check.</p>\n ",
1532
+ "required": true
1533
+ },
1534
+ "HealthCheckConfig": {
1535
+ "shape_name": "HealthCheckConfig",
1536
+ "type": "structure",
1537
+ "members": {
1538
+ "IPAddress": {
1539
+ "shape_name": "IPAddress",
1540
+ "type": "string",
1541
+ "max_length": 15,
1542
+ "pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$",
1543
+ "documentation": "\n <p>IP Address of the instance being checked. </p>\n ",
1544
+ "required": true
1545
+ },
1546
+ "Port": {
1547
+ "shape_name": "Port",
1548
+ "type": "integer",
1549
+ "min_length": 1,
1550
+ "max_length": 65535,
1551
+ "documentation": "\n <p>Port on which connection will be opened to the instance to health check. For HTTP and HTTP_STR_MATCH this defaults to 80 if the port is not specified. For HTTPS and HTTPS_STR_MATCH this defaults to 443 if the port is not specified.</p>\n "
1552
+ },
1553
+ "Type": {
1554
+ "shape_name": "HealthCheckType",
1555
+ "type": "string",
1556
+ "enum": [
1557
+ "HTTP",
1558
+ "HTTPS",
1559
+ "HTTP_STR_MATCH",
1560
+ "HTTPS_STR_MATCH",
1561
+ "TCP"
1562
+ ],
1563
+ "documentation": "\n <p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH.</p>\n ",
1564
+ "required": true
1565
+ },
1566
+ "ResourcePath": {
1567
+ "shape_name": "ResourcePath",
1568
+ "type": "string",
1569
+ "max_length": 255,
1570
+ "documentation": "\n <p>Path to ping on the instance to check the health. Required for HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH health checks, HTTP request is issued to the instance on the given port and path.</p>\n "
1571
+ },
1572
+ "FullyQualifiedDomainName": {
1573
+ "shape_name": "FullyQualifiedDomainName",
1574
+ "type": "string",
1575
+ "max_length": 255,
1576
+ "documentation": "\n <p>Fully qualified domain name of the instance to be health checked.</p>\n "
1577
+ },
1578
+ "SearchString": {
1579
+ "shape_name": "SearchString",
1580
+ "type": "string",
1581
+ "max_length": 255,
1582
+ "documentation": "\n <p>A string to search for in the body of a health check response. Required for HTTP_STR_MATCH and HTTPS_STR_MATCH health checks.</p>\n "
1583
+ }
1584
+ },
1585
+ "member_order": [
1586
+ "IPAddress",
1587
+ "Port",
1588
+ "Type",
1589
+ "ResourcePath",
1590
+ "FullyQualifiedDomainName",
1591
+ "SearchString"
1592
+ ],
1593
+ "documentation": "\n <p>A complex type that contains the health check configuration.</p>\n ",
1594
+ "required": true
1595
+ }
1596
+ },
1597
+ "member_order": [
1598
+ "Id",
1599
+ "CallerReference",
1600
+ "HealthCheckConfig"
1601
+ ],
1602
+ "documentation": "\n <p>A complex type that contains identifying information about the health check.</p>\n ",
1603
+ "xmlname": "HealthCheck"
1604
+ },
1605
+ "documentation": "\n <p>A complex type that contains information about the health checks associated with the current AWS account.</p>\n ",
1606
+ "required": true
1607
+ },
1608
+ "Marker": {
1609
+ "shape_name": "PageMarker",
1610
+ "type": "string",
1611
+ "max_length": 64,
1612
+ "documentation": "\n <p>If the request returned more than one page of results, submit another request and specify the value of <code>NextMarker</code> from the last response in the <code>marker</code> parameter to get the next page of results.</p>\n ",
1613
+ "required": true
1614
+ },
1615
+ "IsTruncated": {
1616
+ "shape_name": "PageTruncated",
1617
+ "type": "boolean",
1618
+ "documentation": "\n <p> A flag indicating whether there are more health checks to be listed. If your results were truncated, you can make a follow-up request for the next page of results by using the <code>Marker</code> element.</p>\n <p>Valid Values: <code>true</code> | <code>false</code></p>\n ",
1619
+ "required": true
1620
+ },
1621
+ "NextMarker": {
1622
+ "shape_name": "PageMarker",
1623
+ "type": "string",
1624
+ "max_length": 64,
1625
+ "documentation": "\n <p> Indicates where to continue listing health checks. If <a>ListHealthChecksResponse$IsTruncated</a> is <code>true</code>, make another request to <code>ListHealthChecks</code> and include the value of the <code>NextMarker</code> element in the <code>Marker</code> element to get the next page of results.</p>\n "
1626
+ },
1627
+ "MaxItems": {
1628
+ "shape_name": "PageMaxItems",
1629
+ "type": "string",
1630
+ "documentation": "\n <p>The maximum number of health checks to be included in the response body. If the number of health checks associated with this AWS account exceeds <code>MaxItems</code>, the value of <a>ListHealthChecksResponse$IsTruncated</a> in the response is <code>true</code>. Call <code>ListHealthChecks</code> again and specify the value of <a>ListHealthChecksResponse$NextMarker</a> in the <a>ListHostedZonesRequest$Marker</a> element to get the next page of results.</p>\n ",
1631
+ "required": true
1632
+ }
1633
+ },
1634
+ "member_order": [
1635
+ "HealthChecks",
1636
+ "Marker",
1637
+ "IsTruncated",
1638
+ "NextMarker",
1639
+ "MaxItems"
1640
+ ],
1641
+ "documentation": "\n <p> A complex type that contains the response for the request.</p>\n "
1642
+ },
1643
+ "errors": [
1644
+ {
1645
+ "shape_name": "InvalidInput",
1646
+ "type": "structure",
1647
+ "members": {
1648
+ "message": {
1649
+ "shape_name": "ErrorMessage",
1650
+ "type": "string",
1651
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1652
+ }
1653
+ },
1654
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1655
+ },
1656
+ {
1657
+ "shape_name": "IncompatibleVersion",
1658
+ "type": "structure",
1659
+ "members": {
1660
+ "message": {
1661
+ "shape_name": "ErrorMessage",
1662
+ "type": "string",
1663
+ "documentation": null
1664
+ }
1665
+ },
1666
+ "documentation": "\n <p>The resource you are trying to access is unsupported on this Route 53 endpoint. Please consider using a newer endpoint or a tool that does so.</p>\n "
1667
+ }
1668
+ ],
1669
+ "documentation": "\n <p> To retrieve a list of your health checks, send a <code>GET</code> request to the <code>2013-04-01/healthcheck</code> resource. The response to this request includes a <code>HealthChecks</code> element with zero, one, or multiple <code>HealthCheck</code> child elements. By default, the list of health checks is displayed on a single page. You can control the length of the page that is displayed by using the <code>MaxItems</code> parameter. You can use the <code>Marker</code> parameter to control the health check that the list begins with. </p>\n <note> Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to a value greater than 100, Amazon Route 53 returns only the first 100.</note>\n "
1670
+ },
1671
+ "ListHostedZones": {
1672
+ "name": "ListHostedZones",
1673
+ "http": {
1674
+ "method": "GET",
1675
+ "uri": "/2013-04-01/hostedzone?marker={Marker}&maxitems={MaxItems}"
1676
+ },
1677
+ "input": {
1678
+ "shape_name": "ListHostedZonesRequest",
1679
+ "type": "structure",
1680
+ "members": {
1681
+ "Marker": {
1682
+ "shape_name": "PageMarker",
1683
+ "type": "string",
1684
+ "max_length": 64,
1685
+ "documentation": "\n <p>If the request returned more than one page of results, submit another request and specify the value of <code>NextMarker</code> from the last response in the <code>marker</code> parameter to get the next page of results.</p>\n ",
1686
+ "location": "uri"
1687
+ },
1688
+ "MaxItems": {
1689
+ "shape_name": "PageMaxItems",
1690
+ "type": "string",
1691
+ "documentation": "\n <p>Specify the maximum number of hosted zones to return per page of results.</p>\n ",
1692
+ "location": "uri"
1693
+ }
1694
+ },
1695
+ "member_order": [
1696
+ "Marker",
1697
+ "MaxItems"
1698
+ ],
1699
+ "documentation": "\n <p> To retrieve a list of your hosted zones, send a <code>GET</code> request to the <code>2013-04-01/hostedzone</code> resource. The response to this request includes a <code>HostedZones</code> element with zero or more <code>HostedZone</code> child elements. By default, the list of hosted zones is displayed on a single page. You can control the length of the page that is displayed by using the <code>MaxItems</code> parameter. You can use the <code>Marker</code> parameter to control the hosted zone that the list begins with. For more information about listing hosted zones, see <a href=\"http://docs.amazonwebservices.com/Route53/latest/DeveloperGuide/ListInfoOnHostedZone.html\">Listing the Hosted Zones for an AWS Account</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>\n <note> Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Route 53 returns only the first 100.</note>\n "
1700
+ },
1701
+ "output": {
1702
+ "shape_name": "ListHostedZonesResponse",
1703
+ "type": "structure",
1704
+ "members": {
1705
+ "HostedZones": {
1706
+ "shape_name": "HostedZones",
1707
+ "type": "list",
1708
+ "members": {
1709
+ "shape_name": "HostedZone",
1710
+ "type": "structure",
1711
+ "members": {
1712
+ "Id": {
1713
+ "shape_name": "ResourceId",
1714
+ "type": "string",
1715
+ "max_length": 32,
1716
+ "documentation": "\n <p>The ID of the specified hosted zone.</p>\n ",
1717
+ "required": true
1718
+ },
1719
+ "Name": {
1720
+ "shape_name": "DNSName",
1721
+ "type": "string",
1722
+ "max_length": 1024,
1723
+ "documentation": "\n <p>The name of the domain. This must be a fully-specified domain, for example, www.example.com. The trailing dot is optional; Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.</p>\n <p>This is the name you have registered with your DNS registrar. You should ask your registrar to change the authoritative name servers for your domain to the set of <code>NameServers</code> elements returned in <code>DelegationSet</code>.</p>\n ",
1724
+ "required": true
1725
+ },
1726
+ "CallerReference": {
1727
+ "shape_name": "Nonce",
1728
+ "type": "string",
1729
+ "min_length": 1,
1730
+ "max_length": 128,
1731
+ "documentation": "\n <p>A unique string that identifies the request to create the hosted zone.</p>\n ",
1732
+ "required": true
1733
+ },
1734
+ "Config": {
1735
+ "shape_name": "HostedZoneConfig",
1736
+ "type": "structure",
1737
+ "members": {
1738
+ "Comment": {
1739
+ "shape_name": "ResourceDescription",
1740
+ "type": "string",
1741
+ "max_length": 256,
1742
+ "documentation": "\n <p>An optional comment about your hosted zone. If you don't want to specify a comment, you can omit the <code>HostedZoneConfig</code> and <code>Comment</code> elements from the XML document.</p>\n "
1743
+ }
1744
+ },
1745
+ "member_order": [
1746
+ "Comment"
1747
+ ],
1748
+ "documentation": "\n <p>A complex type that contains the <code>Comment</code> element.</p>\n "
1749
+ },
1750
+ "ResourceRecordSetCount": {
1751
+ "shape_name": "HostedZoneRRSetCount",
1752
+ "type": "long",
1753
+ "documentation": "\n <p>Total number of resource record sets in the hosted zone.</p>\n "
1754
+ }
1755
+ },
1756
+ "member_order": [
1757
+ "Id",
1758
+ "Name",
1759
+ "CallerReference",
1760
+ "Config",
1761
+ "ResourceRecordSetCount"
1762
+ ],
1763
+ "documentation": "\n <p>A complex type that contain information about the specified hosted zone.</p>\n ",
1764
+ "xmlname": "HostedZone"
1765
+ },
1766
+ "documentation": "\n <p>A complex type that contains information about the hosted zones associated with the current AWS account.</p>\n ",
1767
+ "required": true
1768
+ },
1769
+ "Marker": {
1770
+ "shape_name": "PageMarker",
1771
+ "type": "string",
1772
+ "max_length": 64,
1773
+ "documentation": "\n <p>If the request returned more than one page of results, submit another request and specify the value of <code>NextMarker</code> from the last response in the <code>marker</code> parameter to get the next page of results.</p>\n ",
1774
+ "required": true
1775
+ },
1776
+ "IsTruncated": {
1777
+ "shape_name": "PageTruncated",
1778
+ "type": "boolean",
1779
+ "documentation": "\n <p> A flag indicating whether there are more hosted zones to be listed. If your results were truncated, you can make a follow-up request for the next page of results by using the <code>Marker</code> element.</p>\n <p>Valid Values: <code>true</code> | <code>false</code></p>\n ",
1780
+ "required": true
1781
+ },
1782
+ "NextMarker": {
1783
+ "shape_name": "PageMarker",
1784
+ "type": "string",
1785
+ "max_length": 64,
1786
+ "documentation": "\n <p> Indicates where to continue listing hosted zones. If <a>ListHostedZonesResponse$IsTruncated</a> is <code>true</code>, make another request to <code>ListHostedZones</code> and include the value of the <code>NextMarker</code> element in the <code>Marker</code> element to get the next page of results.</p>\n "
1787
+ },
1788
+ "MaxItems": {
1789
+ "shape_name": "PageMaxItems",
1790
+ "type": "string",
1791
+ "documentation": "\n <p>The maximum number of hosted zones to be included in the response body. If the number of hosted zones associated with this AWS account exceeds <code>MaxItems</code>, the value of <a>ListHostedZonesResponse$IsTruncated</a> in the response is <code>true</code>. Call <code>ListHostedZones</code> again and specify the value of <a>ListHostedZonesResponse$NextMarker</a> in the <a>ListHostedZonesRequest$Marker</a> element to get the next page of results.</p>\n ",
1792
+ "required": true
1793
+ }
1794
+ },
1795
+ "member_order": [
1796
+ "HostedZones",
1797
+ "Marker",
1798
+ "IsTruncated",
1799
+ "NextMarker",
1800
+ "MaxItems"
1801
+ ],
1802
+ "documentation": "\n <p> A complex type that contains the response for the request.</p>\n "
1803
+ },
1804
+ "errors": [
1805
+ {
1806
+ "shape_name": "InvalidInput",
1807
+ "type": "structure",
1808
+ "members": {
1809
+ "message": {
1810
+ "shape_name": "ErrorMessage",
1811
+ "type": "string",
1812
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
1813
+ }
1814
+ },
1815
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
1816
+ }
1817
+ ],
1818
+ "documentation": "\n <p> To retrieve a list of your hosted zones, send a <code>GET</code> request to the <code>2013-04-01/hostedzone</code> resource. The response to this request includes a <code>HostedZones</code> element with zero, one, or multiple <code>HostedZone</code> child elements. By default, the list of hosted zones is displayed on a single page. You can control the length of the page that is displayed by using the <code>MaxItems</code> parameter. You can use the <code>Marker</code> parameter to control the hosted zone that the list begins with. </p>\n <note> Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to a value greater than 100, Amazon Route 53 returns only the first 100.</note>\n "
1819
+ },
1820
+ "ListResourceRecordSets": {
1821
+ "name": "ListResourceRecordSets",
1822
+ "http": {
1823
+ "method": "GET",
1824
+ "uri": "/2013-04-01/hostedzone/{HostedZoneId}/rrset?type={StartRecordType}&name={StartRecordName}&identifier={StartRecordIdentifier}&maxitems={MaxItems}"
1825
+ },
1826
+ "input": {
1827
+ "shape_name": "ListResourceRecordSetsRequest",
1828
+ "type": "structure",
1829
+ "members": {
1830
+ "HostedZoneId": {
1831
+ "shape_name": "ResourceId",
1832
+ "type": "string",
1833
+ "max_length": 32,
1834
+ "documentation": "\n <p> The ID of the hosted zone that contains the resource record sets that you want to get.</p>\n ",
1835
+ "required": true,
1836
+ "location": "uri"
1837
+ },
1838
+ "StartRecordName": {
1839
+ "shape_name": "DNSName",
1840
+ "type": "string",
1841
+ "max_length": 1024,
1842
+ "documentation": "\n <p>The first name in the lexicographic ordering of domain names that you want the <code>ListResourceRecordSets</code> request to list.</p>\n ",
1843
+ "location": "uri"
1844
+ },
1845
+ "StartRecordType": {
1846
+ "shape_name": "RRType",
1847
+ "type": "string",
1848
+ "enum": [
1849
+ "SOA",
1850
+ "A",
1851
+ "TXT",
1852
+ "NS",
1853
+ "CNAME",
1854
+ "MX",
1855
+ "PTR",
1856
+ "SRV",
1857
+ "SPF",
1858
+ "AAAA"
1859
+ ],
1860
+ "documentation": "\n <p>The DNS type at which to begin the listing of resource record sets. </p>\n <p>Valid values: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>MX</code> | <code>NS</code> | <code>PTR</code> | <code>SOA</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code></p>\n <p>Values for Weighted Resource Record Sets: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>TXT</code></p>\n <p> Values for Regional Resource Record Sets: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>TXT</code></p>\n <p>Values for Alias Resource Record Sets: <code>A</code> | <code>AAAA</code></p>\n <p>Constraint: Specifying <code>type</code> without specifying <code>name</code> returns an <a>InvalidInput</a> error.</p>\n ",
1861
+ "location": "uri"
1862
+ },
1863
+ "StartRecordIdentifier": {
1864
+ "shape_name": "ResourceRecordSetIdentifier",
1865
+ "type": "string",
1866
+ "min_length": 1,
1867
+ "max_length": 128,
1868
+ "documentation": "\n <p><i>Weighted resource record sets only:</i> If results were truncated for a given DNS name and type, specify the value of <code>ListResourceRecordSetsResponse$NextRecordIdentifier</code> from the previous response to get the next resource record set that has the current DNS name and type.</p>\n ",
1869
+ "location": "uri"
1870
+ },
1871
+ "MaxItems": {
1872
+ "shape_name": "PageMaxItems",
1873
+ "type": "string",
1874
+ "documentation": "\n <p>The maximum number of records you want in the response body.</p>\n ",
1875
+ "location": "uri"
1876
+ }
1877
+ },
1878
+ "member_order": [
1879
+ "HostedZoneId",
1880
+ "StartRecordName",
1881
+ "StartRecordType",
1882
+ "StartRecordIdentifier",
1883
+ "MaxItems"
1884
+ ],
1885
+ "documentation": "\n <p> The input for a ListResourceRecordSets request.</p>\n "
1886
+ },
1887
+ "output": {
1888
+ "shape_name": "ListResourceRecordSetsResponse",
1889
+ "type": "structure",
1890
+ "members": {
1891
+ "ResourceRecordSets": {
1892
+ "shape_name": "ResourceRecordSets",
1893
+ "type": "list",
1894
+ "members": {
1895
+ "shape_name": "ResourceRecordSet",
1896
+ "type": "structure",
1897
+ "members": {
1898
+ "Name": {
1899
+ "shape_name": "DNSName",
1900
+ "type": "string",
1901
+ "max_length": 1024,
1902
+ "documentation": "\n <p>The domain name of the current resource record set.</p>\n ",
1903
+ "required": true
1904
+ },
1905
+ "Type": {
1906
+ "shape_name": "RRType",
1907
+ "type": "string",
1908
+ "enum": [
1909
+ "SOA",
1910
+ "A",
1911
+ "TXT",
1912
+ "NS",
1913
+ "CNAME",
1914
+ "MX",
1915
+ "PTR",
1916
+ "SRV",
1917
+ "SPF",
1918
+ "AAAA"
1919
+ ],
1920
+ "documentation": "\n <p>The type of the current resource record set.</p>\n ",
1921
+ "required": true
1922
+ },
1923
+ "SetIdentifier": {
1924
+ "shape_name": "ResourceRecordSetIdentifier",
1925
+ "type": "string",
1926
+ "min_length": 1,
1927
+ "max_length": 128,
1928
+ "documentation": "\n <p><i>Weighted, Regional, and Failover resource record sets only:</i> An identifier that differentiates among multiple resource record sets that have the same combination of DNS name and type.</p>\n "
1929
+ },
1930
+ "Weight": {
1931
+ "shape_name": "ResourceRecordSetWeight",
1932
+ "type": "long",
1933
+ "min_length": 0,
1934
+ "max_length": 255,
1935
+ "documentation": "\n <p><i>Weighted resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that determines what portion of traffic for the current resource record set is routed to the associated location.</p>\n "
1936
+ },
1937
+ "Region": {
1938
+ "shape_name": "ResourceRecordSetRegion",
1939
+ "type": "string",
1940
+ "min_length": 1,
1941
+ "max_length": 64,
1942
+ "enum": [
1943
+ "us-east-1",
1944
+ "us-west-1",
1945
+ "us-west-2",
1946
+ "eu-west-1",
1947
+ "ap-southeast-1",
1948
+ "ap-southeast-2",
1949
+ "ap-northeast-1",
1950
+ "sa-east-1",
1951
+ "cn-north-1"
1952
+ ],
1953
+ "documentation": "\n <p><i>Regional resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that specifies the AWS region for the current resource record set.</p>\n "
1954
+ },
1955
+ "Failover": {
1956
+ "shape_name": "ResourceRecordSetFailover",
1957
+ "type": "string",
1958
+ "enum": [
1959
+ "PRIMARY",
1960
+ "SECONDARY"
1961
+ ],
1962
+ "documentation": "\n <p><i>Failover resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that indicates whether the current resource record set is a primary or secondary resource record set. A failover set may contain at most one resource record set marked as primary and one resource record set marked as secondary. A resource record set marked as primary will be returned if any of the following are true: (1) an associated health check is passing, (2) if the resource record set is an alias with the evaluate target health and at least one target resource record set is healthy, (3) both the primary and secondary resource record set are failing health checks or (4) there is no secondary resource record set. A secondary resource record set will be returned if: (1) the primary is failing a health check and either the secondary is passing a health check or has no associated health check, or (2) there is no primary resource record set. </p>\n <p>Valid values: <code>PRIMARY</code> | <code>SECONDARY</code></p>\n "
1963
+ },
1964
+ "TTL": {
1965
+ "shape_name": "TTL",
1966
+ "type": "long",
1967
+ "min_length": 0,
1968
+ "max_length": 2147483647,
1969
+ "documentation": "\n <p>The cache time to live for the current resource record set.</p>\n "
1970
+ },
1971
+ "ResourceRecords": {
1972
+ "shape_name": "ResourceRecords",
1973
+ "type": "list",
1974
+ "members": {
1975
+ "shape_name": "ResourceRecord",
1976
+ "type": "structure",
1977
+ "members": {
1978
+ "Value": {
1979
+ "shape_name": "RData",
1980
+ "type": "string",
1981
+ "max_length": 4000,
1982
+ "documentation": "\n <p>The value of the <code>Value</code> element for the current resource record set.</p>\n ",
1983
+ "required": true
1984
+ }
1985
+ },
1986
+ "member_order": [
1987
+ "Value"
1988
+ ],
1989
+ "documentation": "\n <p>A complex type that contains the value of the <code>Value</code> element for the current resource record set.</p>\n ",
1990
+ "xmlname": "ResourceRecord"
1991
+ },
1992
+ "min_length": 1,
1993
+ "documentation": "\n <p>A complex type that contains the resource records for the current resource record set.</p>\n "
1994
+ },
1995
+ "AliasTarget": {
1996
+ "shape_name": "AliasTarget",
1997
+ "type": "structure",
1998
+ "members": {
1999
+ "HostedZoneId": {
2000
+ "shape_name": "ResourceId",
2001
+ "type": "string",
2002
+ "max_length": 32,
2003
+ "documentation": "\n <p><i>Alias resource record sets only:</i> The value of the hosted zone ID for the AWS resource.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
2004
+ "required": true
2005
+ },
2006
+ "DNSName": {
2007
+ "shape_name": "DNSName",
2008
+ "type": "string",
2009
+ "max_length": 1024,
2010
+ "documentation": "\n <p><i>Alias resource record sets only:</i> The external DNS name associated with the AWS Resource.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
2011
+ "required": true
2012
+ },
2013
+ "EvaluateTargetHealth": {
2014
+ "shape_name": "AliasHealthEnabled",
2015
+ "type": "boolean",
2016
+ "documentation": "\n <p><i>Alias resource record sets only:</i> A boolean value that indicates whether this Resource Record Set should respect the health status of any health checks associated with the ALIAS target record which it is linked to.</p>\n <p>For more information and an example, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/CreatingAliasRRSets.html\">Creating Alias Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p>.\n ",
2017
+ "required": true
2018
+ }
2019
+ },
2020
+ "member_order": [
2021
+ "HostedZoneId",
2022
+ "DNSName",
2023
+ "EvaluateTargetHealth"
2024
+ ],
2025
+ "documentation": "\n <p><i>Alias resource record sets only:</i> Information about the AWS resource to which you are redirecting traffic.</p>\n "
2026
+ },
2027
+ "HealthCheckId": {
2028
+ "shape_name": "HealthCheckId",
2029
+ "type": "string",
2030
+ "max_length": 64,
2031
+ "documentation": "\n <p><i>Health Check resource record sets only, not required for alias resource record sets:</i> An identifier that is used to identify health check associated with the resource record set.</p>\n "
2032
+ }
2033
+ },
2034
+ "member_order": [
2035
+ "Name",
2036
+ "Type",
2037
+ "SetIdentifier",
2038
+ "Weight",
2039
+ "Region",
2040
+ "Failover",
2041
+ "TTL",
2042
+ "ResourceRecords",
2043
+ "AliasTarget",
2044
+ "HealthCheckId"
2045
+ ],
2046
+ "documentation": "\n <p>A complex type that contains information about the current resource record set.</p>\n ",
2047
+ "xmlname": "ResourceRecordSet"
2048
+ },
2049
+ "documentation": "\n <p>A complex type that contains information about the resource record sets that are returned by the request.</p>\n ",
2050
+ "required": true
2051
+ },
2052
+ "IsTruncated": {
2053
+ "shape_name": "PageTruncated",
2054
+ "type": "boolean",
2055
+ "documentation": "\n <p> A flag that indicates whether there are more resource record sets to be listed. If your results were truncated, you can make a follow-up request for the next page of results by using the <a>ListResourceRecordSetsResponse$NextRecordName</a> element.</p>\n <p>Valid Values: <code>true</code> | <code>false</code></p>\n ",
2056
+ "required": true
2057
+ },
2058
+ "NextRecordName": {
2059
+ "shape_name": "DNSName",
2060
+ "type": "string",
2061
+ "max_length": 1024,
2062
+ "documentation": "\n <p>If the results were truncated, the name of the next record in the list. This element is present only if <a>ListResourceRecordSetsResponse$IsTruncated</a> is true. </p>\n "
2063
+ },
2064
+ "NextRecordType": {
2065
+ "shape_name": "RRType",
2066
+ "type": "string",
2067
+ "enum": [
2068
+ "SOA",
2069
+ "A",
2070
+ "TXT",
2071
+ "NS",
2072
+ "CNAME",
2073
+ "MX",
2074
+ "PTR",
2075
+ "SRV",
2076
+ "SPF",
2077
+ "AAAA"
2078
+ ],
2079
+ "documentation": "\n <p>If the results were truncated, the type of the next record in the list. This element is present only if <a>ListResourceRecordSetsResponse$IsTruncated</a> is true. </p>\n "
2080
+ },
2081
+ "NextRecordIdentifier": {
2082
+ "shape_name": "ResourceRecordSetIdentifier",
2083
+ "type": "string",
2084
+ "min_length": 1,
2085
+ "max_length": 128,
2086
+ "documentation": "\n <p><i>Weighted resource record sets only:</i> If results were truncated for a given DNS name and type, the value of <code>SetIdentifier</code> for the next resource record set that has the current DNS name and type.</p>\n "
2087
+ },
2088
+ "MaxItems": {
2089
+ "shape_name": "PageMaxItems",
2090
+ "type": "string",
2091
+ "documentation": "\n <p>The maximum number of records you requested. The maximum value of <code>MaxItems</code> is 100.</p>\n ",
2092
+ "required": true
2093
+ }
2094
+ },
2095
+ "member_order": [
2096
+ "ResourceRecordSets",
2097
+ "IsTruncated",
2098
+ "NextRecordName",
2099
+ "NextRecordType",
2100
+ "NextRecordIdentifier",
2101
+ "MaxItems"
2102
+ ],
2103
+ "documentation": "\n <p>A complex type that contains information about the resource record sets that are returned by the request and information about the response.</p>\n "
2104
+ },
2105
+ "errors": [
2106
+ {
2107
+ "shape_name": "NoSuchHostedZone",
2108
+ "type": "structure",
2109
+ "members": {
2110
+ "message": {
2111
+ "shape_name": "ErrorMessage",
2112
+ "type": "string",
2113
+ "documentation": null
2114
+ }
2115
+ },
2116
+ "documentation": null
2117
+ },
2118
+ {
2119
+ "shape_name": "InvalidInput",
2120
+ "type": "structure",
2121
+ "members": {
2122
+ "message": {
2123
+ "shape_name": "ErrorMessage",
2124
+ "type": "string",
2125
+ "documentation": "\n <p>Descriptive message for the error response.</p>\n "
2126
+ }
2127
+ },
2128
+ "documentation": "\n <p>Some value specified in the request is invalid or the XML document is malformed.</p>\n "
2129
+ }
2130
+ ],
2131
+ "documentation": "\n <p>Imagine all the resource record sets in a zone listed out in front of you.\n Imagine them sorted lexicographically first by DNS name (with the labels\n reversed, like \"com.amazon.www\" for example), and secondarily,\n lexicographically by record type. This operation retrieves at most MaxItems\n resource record sets from this list, in order, starting at a position\n specified by the Name and Type arguments:</p>\n <ul>\n <li>If both Name and Type are omitted, this means start the results at the\n first RRSET in the HostedZone.</li>\n <li>If Name is specified but Type is omitted, this means start the results\n at the first RRSET in the list whose name is greater than or equal to Name.\n </li>\n <li>If both Name and Type are specified, this means start the results at the\n first RRSET in the list whose name is greater than or equal to Name and\n whose type is greater than or equal to Type.</li>\n <li>It is an error to specify the Type but not the Name.</li>\n </ul>\n <p>Use ListResourceRecordSets to retrieve a single known record set by\n specifying the record set's name and type, and setting MaxItems = 1</p>\n <p>To retrieve all the records in a HostedZone, first pause any processes\n making calls to ChangeResourceRecordSets. Initially call ListResourceRecordSets\n without a Name and Type to get the first page of record sets. For subsequent\n calls, set Name and Type to the NextName and NextType values returned by the\n previous response.\n </p>\n <p>In the presence of concurrent ChangeResourceRecordSets calls, there is no\n consistency of results across calls to ListResourceRecordSets. The only way\n to get a consistent multi-page snapshot of all RRSETs in a zone is to stop\n making changes while pagination is in progress.</p>\n <p>However, the results from ListResourceRecordSets are consistent within a\n page. If MakeChange calls are taking place concurrently, the result of each\n one will either be completely visible in your results or not at all. You will\n not see partial changes, or changes that do not ultimately succeed. (This\n follows from the fact that MakeChange is atomic)\n </p>\n <p>The results from ListResourceRecordSets are strongly consistent with\n ChangeResourceRecordSets. To be precise, if a single process makes a call to\n ChangeResourceRecordSets and receives a successful response, the effects of that\n change will be visible in a subsequent call to ListResourceRecordSets by\n that process.</p>\n "
2132
+ }
2133
+ }
2134
+ }