aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,1159 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AssociateVPCWithHostedZone": "<p> This action associates a VPC with an hosted zone. </p> <p> To associate a VPC with an hosted zone, send a <code>POST</code> request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i>/associatevpc</code> resource. The request body must include an XML document with a <code>AssociateVPCWithHostedZoneRequest</code> element. The response returns the <code>AssociateVPCWithHostedZoneResponse</code> element that contains <code>ChangeInfo</code> for you to track the progress of the <code>AssociateVPCWithHostedZoneRequest</code> you made. See <code>GetChange</code> operation for how to track the progress of your change.</p>",
5
- "ChangeResourceRecordSets": "<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> <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> <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> <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> <p>Note the following limitations on a <code>ChangeResourceRecordSets</code> request:</p> <p>- A request cannot contain more than 100 Change elements.</p> <p>- A request cannot contain more than 1000 ResourceRecord elements.</p> <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>",
6
- "ChangeTagsForResource": null,
7
- "CreateHealthCheck": "<p> This action creates a new health check.</p> <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>",
8
- "CreateHostedZone": "<p> This action creates a new hosted zone.</p> <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> <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> <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> <p>When trying to create a hosted zone using a reusable delegation set, you could specify an optional DelegationSetId, and Route53 would assign those 4 NS records for the zone, instead of alloting a new one.</p>",
9
- "CreateReusableDelegationSet": "<p> This action creates a reusable delegationSet.</p> <p> To create a new reusable delegationSet, send a <code>POST</code> request to the <code>2013-04-01/delegationset</code> resource. The request body must include an XML document with a <code>CreateReusableDelegationSetRequest</code> element. The response returns the <code>CreateReusableDelegationSetResponse</code> element that contains metadata about the delegationSet. </p> <p> If the optional parameter HostedZoneId is specified, it marks the delegationSet associated with that particular hosted zone as reusable. </p>",
10
- "DeleteHealthCheck": "<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> <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>",
11
- "DeleteHostedZone": "<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> <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> <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>",
12
- "DeleteReusableDelegationSet": "<p>This action deletes a reusable delegation set. To delete a reusable delegation set, send a <code>DELETE</code> request to the <code>2013-04-01/delegationset/<i>delegation set ID</i></code> resource.</p> <important> You can delete a reusable delegation set only if there are no associated hosted zones. If your reusable delegation set contains associated hosted zones, you must delete them before you can delete your reusable delegation set. If you try to delete a reusable delegation set that contains associated hosted zones, Route 53 will deny your request with a <code>DelegationSetInUse</code> error.</important>",
13
- "DisassociateVPCFromHostedZone": "<p> This action disassociates a VPC from an hosted zone. </p> <p> To disassociate a VPC to a hosted zone, send a <code>POST</code> request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i>/disassociatevpc</code> resource. The request body must include an XML document with a <code>DisassociateVPCFromHostedZoneRequest</code> element. The response returns the <code>DisassociateVPCFromHostedZoneResponse</code> element that contains <code>ChangeInfo</code> for you to track the progress of the <code>DisassociateVPCFromHostedZoneRequest</code> you made. See <code>GetChange</code> operation for how to track the progress of your change.</p>",
14
- "GetChange": "<p> This action returns the current status of a change batch request. The status is one of the following values:</p> <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> <p>- <code>INSYNC</code> indicates that the changes have replicated to all Amazon Route 53 DNS servers. </p>",
15
- "GetCheckerIpRanges": "<p> To retrieve a list of the IP ranges used by Amazon Route 53 health checkers to check the health of your resources, send a <code>GET</code> request to the <code>2013-04-01/checkeripranges</code> resource. You can use these IP addresses to configure router and firewall rules to allow health checkers to check the health of your resources.</p>",
16
- "GetGeoLocation": "<p> To retrieve a single geo location, send a <code>GET</code> request to the <code>2013-04-01/geolocation</code> resource with one of these options: continentcode | countrycode | countrycode and subdivisioncode.</p>",
17
- "GetHealthCheck": "<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>",
18
- "GetHealthCheckCount": "<p> To retrieve a count of all your health checks, send a <code>GET</code> request to the <code>2013-04-01/healthcheckcount</code> resource.</p>",
19
- "GetHealthCheckLastFailureReason": "<p>If you want to learn why a health check is currently failing or why it failed most recently (if at all), you can get the failure reason for the most recent failure. Send a <code>GET</code> request to the <code>2013-04-01/healthcheck/<i>health check ID</i>/lastfailurereason</code> resource.</p>",
20
- "GetHealthCheckStatus": "<p> To retrieve the health check status, send a <code>GET</code> request to the <code>2013-04-01/healthcheck/<i>health check ID</i>/status</code> resource. You can use this call to get a health check's current status. </p>",
21
- "GetHostedZone": "<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>",
22
- "GetHostedZoneCount": "<p> To retrieve a count of all your hosted zones, send a <code>GET</code> request to the <code>2013-04-01/hostedzonecount</code> resource.</p>",
23
- "GetReusableDelegationSet": "<p> To retrieve the reusable delegation set, send a <code>GET</code> request to the <code>2013-04-01/delegationset/<i>delegation set ID</i></code> resource.</p>",
24
- "ListGeoLocations": "<p> To retrieve a list of supported geo locations, send a <code>GET</code> request to the <code>2013-04-01/geolocations</code> resource. The response to this request includes a <code>GeoLocationDetailsList</code> element with zero, one, or multiple <code>GeoLocationDetails</code> child elements. The list is sorted by country code, and then subdivision code, followed by continents at the end of the list. </p> <p> By default, the list of geo locations is displayed on a single page. You can control the length of the page that is displayed by using the <code>MaxItems</code> parameter. If the list is truncated, <code>IsTruncated</code> will be set to <i>true</i> and a combination of <code>NextContinentCode, NextCountryCode, NextSubdivisionCode</code> will be populated. You can pass these as parameters to <code>StartContinentCode, StartCountryCode, StartSubdivisionCode</code> to control the geo location that the list begins with. </p>",
25
- "ListHealthChecks": "<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> <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>",
26
- "ListHostedZones": "<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> <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>",
27
- "ListHostedZonesByName": "<p> To retrieve a list of your hosted zones in lexicographic order, send a <code>GET</code> request to the <code>2013-04-01/hostedzonesbyname</code> resource. The response to this request includes a <code>HostedZones</code> element with zero or more <code>HostedZone</code> child elements lexicographically ordered by DNS name. 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>DNSName</code> and <code>HostedZoneId</code> parameters to control the hosted zone that the list begins with.</p> <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>",
28
- "ListResourceRecordSets": "<p>Imagine all the resource record sets in a zone listed out in front of you. Imagine them sorted lexicographically first by DNS name (with the labels reversed, like \"com.amazon.www\" for example), and secondarily, lexicographically by record type. This operation retrieves at most MaxItems resource record sets from this list, in order, starting at a position specified by the Name and Type arguments:</p> <ul> <li>If both Name and Type are omitted, this means start the results at the first RRSET in the HostedZone.</li> <li>If Name is specified but Type is omitted, this means start the results at the first RRSET in the list whose name is greater than or equal to Name. </li> <li>If both Name and Type are specified, this means start the results at the first RRSET in the list whose name is greater than or equal to Name and whose type is greater than or equal to Type.</li> <li>It is an error to specify the Type but not the Name.</li> </ul> <p>Use ListResourceRecordSets to retrieve a single known record set by specifying the record set's name and type, and setting MaxItems = 1</p> <p>To retrieve all the records in a HostedZone, first pause any processes making calls to ChangeResourceRecordSets. Initially call ListResourceRecordSets without a Name and Type to get the first page of record sets. For subsequent calls, set Name and Type to the NextName and NextType values returned by the previous response. </p> <p>In the presence of concurrent ChangeResourceRecordSets calls, there is no consistency of results across calls to ListResourceRecordSets. The only way to get a consistent multi-page snapshot of all RRSETs in a zone is to stop making changes while pagination is in progress.</p> <p>However, the results from ListResourceRecordSets are consistent within a page. If MakeChange calls are taking place concurrently, the result of each one will either be completely visible in your results or not at all. You will not see partial changes, or changes that do not ultimately succeed. (This follows from the fact that MakeChange is atomic) </p> <p>The results from ListResourceRecordSets are strongly consistent with ChangeResourceRecordSets. To be precise, if a single process makes a call to ChangeResourceRecordSets and receives a successful response, the effects of that change will be visible in a subsequent call to ListResourceRecordSets by that process.</p>",
29
- "ListReusableDelegationSets": "<p> To retrieve a list of your reusable delegation sets, send a <code>GET</code> request to the <code>2013-04-01/delegationset</code> resource. The response to this request includes a <code>DelegationSets</code> element with zero, one, or multiple <code>DelegationSet</code> child elements. By default, the list of delegation sets 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 delegation set that the list begins with. </p> <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>",
30
- "ListTagsForResource": null,
31
- "ListTagsForResources": null,
32
- "UpdateHealthCheck": "<p> This action updates an existing health check.</p> <p> To update a health check, send a <code>POST</code> request to the <code>2013-04-01/healthcheck/<i>health check ID</i></code> resource. The request body must include an XML document with an <code>UpdateHealthCheckRequest</code> element. The response returns an <code>UpdateHealthCheckResponse</code> element, which contains metadata about the health check.</p>",
33
- "UpdateHostedZoneComment": "<p> To update the hosted zone comment, send a <code>POST</code> request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i></code> resource. The request body must include an XML document with a <code>UpdateHostedZoneCommentRequest</code> element. The response to this request includes the modified <code>HostedZone</code> element.</p> <note> The comment can have a maximum length of 256 characters.</note>"
34
- },
35
- "service": null,
36
- "shapes": {
37
- "AliasHealthEnabled": {
38
- "base": null,
39
- "refs": {
40
- "AliasTarget$EvaluateTargetHealth": "<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> <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>."
41
- }
42
- },
43
- "AliasTarget": {
44
- "base": "<p><i>Alias resource record sets only:</i> Information about the domain to which you are redirecting traffic.</p> <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>.",
45
- "refs": {
46
- "ResourceRecordSet$AliasTarget": "<p><i>Alias resource record sets only:</i> Information about the AWS resource to which you are redirecting traffic.</p>"
47
- }
48
- },
49
- "AssociateVPCComment": {
50
- "base": null,
51
- "refs": {
52
- "AssociateVPCWithHostedZoneRequest$Comment": "<p><i>Optional:</i> Any comments you want to include about a <code>AssociateVPCWithHostedZoneRequest</code>.</p>"
53
- }
54
- },
55
- "AssociateVPCWithHostedZoneRequest": {
56
- "base": "<p>A complex type that contains information about the request to associate a VPC with an hosted zone.</p>",
57
- "refs": {
58
- }
59
- },
60
- "AssociateVPCWithHostedZoneResponse": {
61
- "base": "<p>A complex type containing the response information for the request.</p>",
62
- "refs": {
63
- }
64
- },
65
- "Change": {
66
- "base": "<p>A complex type that contains the information for each change in a change batch request.</p>",
67
- "refs": {
68
- "Changes$member": null
69
- }
70
- },
71
- "ChangeAction": {
72
- "base": null,
73
- "refs": {
74
- "Change$Action": "<p>The action to perform.</p> <p>Valid values: <code>CREATE</code> | <code>DELETE</code> | <code>UPSERT</code></p>"
75
- }
76
- },
77
- "ChangeBatch": {
78
- "base": "<p>A complex type that contains an optional comment and the changes that you want to make with a change batch request.</p>",
79
- "refs": {
80
- "ChangeResourceRecordSetsRequest$ChangeBatch": "<p>A complex type that contains an optional comment and the <code>Changes</code> element.</p>"
81
- }
82
- },
83
- "ChangeInfo": {
84
- "base": "<p>A complex type that describes change information about changes made to your hosted zone.</p> <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>",
85
- "refs": {
86
- "AssociateVPCWithHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your <code>AssociateVPCWithHostedZoneRequest</code>.</p>",
87
- "ChangeResourceRecordSetsResponse$ChangeInfo": "<p>A complex type that contains information about changes made to your hosted zone.</p> <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>",
88
- "CreateHostedZoneResponse$ChangeInfo": "<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>",
89
- "DeleteHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your delete request.</p>",
90
- "DisassociateVPCFromHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your <code>DisassociateVPCFromHostedZoneRequest</code>.</p>",
91
- "GetChangeResponse$ChangeInfo": "<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>"
92
- }
93
- },
94
- "ChangeResourceRecordSetsRequest": {
95
- "base": "<p>A complex type that contains a change batch.</p>",
96
- "refs": {
97
- }
98
- },
99
- "ChangeResourceRecordSetsResponse": {
100
- "base": "<p>A complex type containing the response for the request.</p>",
101
- "refs": {
102
- }
103
- },
104
- "ChangeStatus": {
105
- "base": null,
106
- "refs": {
107
- "ChangeInfo$Status": "<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> <p>Valid Values: <code>PENDING</code> | <code>INSYNC</code></p>"
108
- }
109
- },
110
- "ChangeTagsForResourceRequest": {
111
- "base": "<p>A complex type containing information about a request to add, change, or delete the tags that are associated with a resource.</p>",
112
- "refs": {
113
- }
114
- },
115
- "ChangeTagsForResourceResponse": {
116
- "base": "<p>Empty response for the request.</p>",
117
- "refs": {
118
- }
119
- },
120
- "Changes": {
121
- "base": null,
122
- "refs": {
123
- "ChangeBatch$Changes": "<p>A complex type that contains one <code>Change</code> element for each resource record set that you want to create or delete.</p>"
124
- }
125
- },
126
- "CheckerIpRanges": {
127
- "base": null,
128
- "refs": {
129
- "GetCheckerIpRangesResponse$CheckerIpRanges": "<p>A complex type that contains sorted list of IP ranges in CIDR format for Amazon Route 53 health checkers.</p>"
130
- }
131
- },
132
- "ConflictingDomainExists": {
133
- "base": null,
134
- "refs": {
135
- }
136
- },
137
- "CreateHealthCheckRequest": {
138
- "base": "<p>&gt;A complex type that contains information about the request to create a health check.</p>",
139
- "refs": {
140
- }
141
- },
142
- "CreateHealthCheckResponse": {
143
- "base": "<p>A complex type containing the response information for the new health check.</p>",
144
- "refs": {
145
- }
146
- },
147
- "CreateHostedZoneRequest": {
148
- "base": "<p>A complex type that contains information about the request to create a hosted zone.</p>",
149
- "refs": {
150
- }
151
- },
152
- "CreateHostedZoneResponse": {
153
- "base": "<p>A complex type containing the response information for the new hosted zone.</p>",
154
- "refs": {
155
- }
156
- },
157
- "CreateReusableDelegationSetRequest": {
158
- "base": null,
159
- "refs": {
160
- }
161
- },
162
- "CreateReusableDelegationSetResponse": {
163
- "base": null,
164
- "refs": {
165
- }
166
- },
167
- "DNSName": {
168
- "base": null,
169
- "refs": {
170
- "AliasTarget$DNSName": "<p><i>Alias resource record sets only:</i> The external DNS name associated with the AWS Resource.</p> <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>.",
171
- "CreateHostedZoneRequest$Name": "<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> <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>",
172
- "DelegationSetNameServers$member": null,
173
- "HostedZone$Name": "<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> <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>",
174
- "ListHostedZonesByNameRequest$DNSName": "<p>The first name in the lexicographic ordering of domain names that you want the <code>ListHostedZonesByNameRequest</code> request to list.</p> <p>If the request returned more than one page of results, submit another request and specify the value of <code>NextDNSName</code> and <code>NextHostedZoneId</code> from the last response in the <code>DNSName</code> and <code>HostedZoneId</code> parameters to get the next page of results.</p>",
175
- "ListHostedZonesByNameResponse$DNSName": "<p>The <code>DNSName</code> value sent in the request.</p>",
176
- "ListHostedZonesByNameResponse$NextDNSName": "<p>If <a>ListHostedZonesByNameResponse$IsTruncated</a> is <code>true</code>, there are more hosted zones associated with the current AWS account. To get the next page of results, make another request to <code>ListHostedZonesByName</code>. Specify the value of <a>ListHostedZonesByNameResponse$NextDNSName</a> in the <a>ListHostedZonesByNameRequest$DNSName</a> element and <a>ListHostedZonesByNameResponse$NextHostedZoneId</a> in the <a>ListHostedZonesByNameRequest$HostedZoneId</a> element.</p>",
177
- "ListResourceRecordSetsRequest$StartRecordName": "<p>The first name in the lexicographic ordering of domain names that you want the <code>ListResourceRecordSets</code> request to list.</p>",
178
- "ListResourceRecordSetsResponse$NextRecordName": "<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>",
179
- "ResourceRecordSet$Name": "<p>The domain name of the current resource record set.</p>"
180
- }
181
- },
182
- "DelegationSet": {
183
- "base": "<p>A complex type that contains name server information.</p>",
184
- "refs": {
185
- "CreateHostedZoneResponse$DelegationSet": "<p>A complex type that contains name server information.</p>",
186
- "CreateReusableDelegationSetResponse$DelegationSet": "<p>A complex type that contains name server information.</p>",
187
- "DelegationSets$member": null,
188
- "GetHostedZoneResponse$DelegationSet": "<p>A complex type that contains information about the name servers for the specified hosted zone.</p>",
189
- "GetReusableDelegationSetResponse$DelegationSet": "<p>A complex type that contains the information about the nameservers for the specified delegation set ID.</p>"
190
- }
191
- },
192
- "DelegationSetAlreadyCreated": {
193
- "base": "<p>A delegation set with the same owner and caller reference combination has already been created.</p>",
194
- "refs": {
195
- }
196
- },
197
- "DelegationSetAlreadyReusable": {
198
- "base": "<p>The specified delegation set has already been marked as reusable.</p>",
199
- "refs": {
200
- }
201
- },
202
- "DelegationSetInUse": {
203
- "base": "<p>The specified delegation contains associated hosted zones which must be deleted before the reusable delegation set can be deleted.</p>",
204
- "refs": {
205
- }
206
- },
207
- "DelegationSetNameServers": {
208
- "base": null,
209
- "refs": {
210
- "DelegationSet$NameServers": "<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>"
211
- }
212
- },
213
- "DelegationSetNotAvailable": {
214
- "base": "<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>",
215
- "refs": {
216
- }
217
- },
218
- "DelegationSetNotReusable": {
219
- "base": "<p>The specified delegation set has not been marked as reusable.</p>",
220
- "refs": {
221
- }
222
- },
223
- "DelegationSets": {
224
- "base": null,
225
- "refs": {
226
- "ListReusableDelegationSetsResponse$DelegationSets": "<p>A complex type that contains information about the reusable delegation sets associated with the current AWS account.</p>"
227
- }
228
- },
229
- "DeleteHealthCheckRequest": {
230
- "base": "<p>A complex type containing the request information for delete health check.</p>",
231
- "refs": {
232
- }
233
- },
234
- "DeleteHealthCheckResponse": {
235
- "base": "<p>Empty response for the request.</p>",
236
- "refs": {
237
- }
238
- },
239
- "DeleteHostedZoneRequest": {
240
- "base": "<p>A complex type that contains information about the hosted zone that you want to delete.</p>",
241
- "refs": {
242
- }
243
- },
244
- "DeleteHostedZoneResponse": {
245
- "base": "<p>A complex type containing the response information for the request.</p>",
246
- "refs": {
247
- }
248
- },
249
- "DeleteReusableDelegationSetRequest": {
250
- "base": "<p>A complex type containing the information for the delete request.</p>",
251
- "refs": {
252
- }
253
- },
254
- "DeleteReusableDelegationSetResponse": {
255
- "base": "<p>Empty response for the request.</p>",
256
- "refs": {
257
- }
258
- },
259
- "DisassociateVPCComment": {
260
- "base": null,
261
- "refs": {
262
- "DisassociateVPCFromHostedZoneRequest$Comment": "<p><i>Optional:</i> Any comments you want to include about a <code>DisassociateVPCFromHostedZoneRequest</code>.</p>"
263
- }
264
- },
265
- "DisassociateVPCFromHostedZoneRequest": {
266
- "base": "<p>A complex type that contains information about the request to disassociate a VPC from an hosted zone.</p>",
267
- "refs": {
268
- }
269
- },
270
- "DisassociateVPCFromHostedZoneResponse": {
271
- "base": "<p>A complex type containing the response information for the request.</p>",
272
- "refs": {
273
- }
274
- },
275
- "ErrorMessage": {
276
- "base": null,
277
- "refs": {
278
- "ConflictingDomainExists$message": null,
279
- "DelegationSetAlreadyCreated$message": "<p>Descriptive message for the error response.</p>",
280
- "DelegationSetAlreadyReusable$message": "<p>Descriptive message for the error response.</p>",
281
- "DelegationSetInUse$message": "<p>Descriptive message for the error response.</p>",
282
- "DelegationSetNotAvailable$message": "<p>Descriptive message for the error response.</p>",
283
- "DelegationSetNotReusable$message": "<p>Descriptive message for the error response.</p>",
284
- "ErrorMessages$member": null,
285
- "HealthCheckAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
286
- "HealthCheckInUse$message": "<p>Descriptive message for the error response.</p>",
287
- "HealthCheckVersionMismatch$message": null,
288
- "HostedZoneAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
289
- "HostedZoneNotEmpty$message": "<p>Descriptive message for the error response.</p>",
290
- "HostedZoneNotFound$message": "<p>Descriptive message for the error response.</p>",
291
- "IncompatibleVersion$message": null,
292
- "InvalidArgument$message": "<p>Descriptive message for the error response.</p>",
293
- "InvalidDomainName$message": "<p>Descriptive message for the error response.</p>",
294
- "InvalidInput$message": "<p>Descriptive message for the error response.</p>",
295
- "InvalidVPCId$message": "<p>Descriptive message for the error response.</p>",
296
- "LastVPCAssociation$message": "<p>Descriptive message for the error response.</p>",
297
- "LimitsExceeded$message": "<p>Descriptive message for the error response.</p>",
298
- "NoSuchChange$message": null,
299
- "NoSuchDelegationSet$message": "<p>Descriptive message for the error response.</p>",
300
- "NoSuchGeoLocation$message": "<p>Descriptive message for the error response.</p>",
301
- "NoSuchHealthCheck$message": "<p>Descriptive message for the error response.</p>",
302
- "NoSuchHostedZone$message": null,
303
- "PriorRequestNotComplete$message": null,
304
- "PublicZoneVPCAssociation$message": "<p>Descriptive message for the error response.</p>",
305
- "ThrottlingException$message": null,
306
- "TooManyHealthChecks$message": null,
307
- "TooManyHostedZones$message": "<p>Descriptive message for the error response.</p>",
308
- "VPCAssociationNotFound$message": "<p>Descriptive message for the error response.</p>"
309
- }
310
- },
311
- "ErrorMessages": {
312
- "base": null,
313
- "refs": {
314
- "InvalidChangeBatch$messages": "<p>Descriptive message for the error response.</p>"
315
- }
316
- },
317
- "FailureThreshold": {
318
- "base": null,
319
- "refs": {
320
- "HealthCheckConfig$FailureThreshold": "<p>The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa.</p> <p>Valid values are integers between 1 and 10. For more information, see \"How Amazon Route 53 Determines Whether an Endpoint Is Healthy\" in the Amazon Route 53 Developer Guide.</p>",
321
- "UpdateHealthCheckRequest$FailureThreshold": "<p>The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa.</p> <p>Valid values are integers between 1 and 10. For more information, see \"How Amazon Route 53 Determines Whether an Endpoint Is Healthy\" in the Amazon Route 53 Developer Guide.</p> <p>Specify this value only if you want to change it.</p>"
322
- }
323
- },
324
- "FullyQualifiedDomainName": {
325
- "base": null,
326
- "refs": {
327
- "HealthCheckConfig$FullyQualifiedDomainName": "<p>Fully qualified domain name of the instance to be health checked.</p>",
328
- "UpdateHealthCheckRequest$FullyQualifiedDomainName": "<p>Fully qualified domain name of the instance to be health checked.</p> <p>Specify this value only if you want to change it.</p>"
329
- }
330
- },
331
- "GeoLocation": {
332
- "base": "<p>A complex type that contains information about a geo location.</p>",
333
- "refs": {
334
- "ResourceRecordSet$GeoLocation": "<p><i>Geo location resource record sets only:</i> Among resource record sets that have the same combination of DNS name and type, a value that specifies the geo location for the current resource record set.</p>"
335
- }
336
- },
337
- "GeoLocationContinentCode": {
338
- "base": null,
339
- "refs": {
340
- "GeoLocation$ContinentCode": "<p>The code for a continent geo location. Note: only continent locations have a continent code.</p> <p>Valid values: <code>AF</code> | <code>AN</code> | <code>AS</code> | <code>EU</code> | <code>OC</code> | <code>NA</code> | <code>SA</code></p> <p>Constraint: Specifying <code>ContinentCode</code> with either <code>CountryCode</code> or <code>SubdivisionCode</code> returns an <a>InvalidInput</a> error.</p>",
341
- "GeoLocationDetails$ContinentCode": "<p>The code for a continent geo location. Note: only continent locations have a continent code.</p>",
342
- "GetGeoLocationRequest$ContinentCode": "<p>The code for a continent geo location. Note: only continent locations have a continent code.</p> <p>Valid values: <code>AF</code> | <code>AN</code> | <code>AS</code> | <code>EU</code> | <code>OC</code> | <code>NA</code> | <code>SA</code></p> <p>Constraint: Specifying <code>ContinentCode</code> with either <code>CountryCode</code> or <code>SubdivisionCode</code> returns an <a>InvalidInput</a> error.</p>",
343
- "ListGeoLocationsRequest$StartContinentCode": "<p>The first continent code in the lexicographic ordering of geo locations that you want the <code>ListGeoLocations</code> request to list. For non-continent geo locations, this should be null.</p> <p>Valid values: <code>AF</code> | <code>AN</code> | <code>AS</code> | <code>EU</code> | <code>OC</code> | <code>NA</code> | <code>SA</code></p> <p>Constraint: Specifying <code>ContinentCode</code> with either <code>CountryCode</code> or <code>SubdivisionCode</code> returns an <a>InvalidInput</a> error.</p>",
344
- "ListGeoLocationsResponse$NextContinentCode": "<p>If the results were truncated, the continent code of the next geo location in the list. This element is present only if <a>ListGeoLocationsResponse$IsTruncated</a> is true and the next geo location to list is a continent location. </p>"
345
- }
346
- },
347
- "GeoLocationContinentName": {
348
- "base": null,
349
- "refs": {
350
- "GeoLocationDetails$ContinentName": "<p>The name of the continent. This element is only present if <code>ContinentCode</code> is also present.</p>"
351
- }
352
- },
353
- "GeoLocationCountryCode": {
354
- "base": null,
355
- "refs": {
356
- "GeoLocation$CountryCode": "<p>The code for a country geo location. The default location uses '*' for the country code and will match all locations that are not matched by a geo location.</p> <p>The default geo location uses a <code>*</code> for the country code. All other country codes follow the ISO 3166 two-character code.</p>",
357
- "GeoLocationDetails$CountryCode": "<p>The code for a country geo location. The default location uses '*' for the country code and will match all locations that are not matched by a geo location.</p> <p>The default geo location uses a <code>*</code> for the country code. All other country codes follow the ISO 3166 two-character code.</p>",
358
- "GetGeoLocationRequest$CountryCode": "<p>The code for a country geo location. The default location uses '*' for the country code and will match all locations that are not matched by a geo location.</p> <p>The default geo location uses a <code>*</code> for the country code. All other country codes follow the ISO 3166 two-character code.</p>",
359
- "ListGeoLocationsRequest$StartCountryCode": "<p>The first country code in the lexicographic ordering of geo locations that you want the <code>ListGeoLocations</code> request to list.</p> <p>The default geo location uses a <code>*</code> for the country code. All other country codes follow the ISO 3166 two-character code.</p>",
360
- "ListGeoLocationsResponse$NextCountryCode": "<p>If the results were truncated, the country code of the next geo location in the list. This element is present only if <a>ListGeoLocationsResponse$IsTruncated</a> is true and the next geo location to list is not a continent location. </p>"
361
- }
362
- },
363
- "GeoLocationCountryName": {
364
- "base": null,
365
- "refs": {
366
- "GeoLocationDetails$CountryName": "<p>The name of the country. This element is only present if <code>CountryCode</code> is also present.</p>"
367
- }
368
- },
369
- "GeoLocationDetails": {
370
- "base": "<p>A complex type that contains information about a <code>GeoLocation</code>.</p>",
371
- "refs": {
372
- "GeoLocationDetailsList$member": null,
373
- "GetGeoLocationResponse$GeoLocationDetails": "<p>A complex type that contains the information about the specified geo location.</p>"
374
- }
375
- },
376
- "GeoLocationDetailsList": {
377
- "base": null,
378
- "refs": {
379
- "ListGeoLocationsResponse$GeoLocationDetailsList": "<p>A complex type that contains information about the geo locations that are returned by the request.</p>"
380
- }
381
- },
382
- "GeoLocationSubdivisionCode": {
383
- "base": null,
384
- "refs": {
385
- "GeoLocation$SubdivisionCode": "<p>The code for a country's subdivision (e.g., a province of Canada). A subdivision code is only valid with the appropriate country code.</p> <p>Constraint: Specifying <code>SubdivisionCode</code> without <code>CountryCode</code> returns an <a>InvalidInput</a> error.</p>",
386
- "GeoLocationDetails$SubdivisionCode": "<p>The code for a country's subdivision (e.g., a province of Canada). A subdivision code is only valid with the appropriate country code.</p>",
387
- "GetGeoLocationRequest$SubdivisionCode": "<p>The code for a country's subdivision (e.g., a province of Canada). A subdivision code is only valid with the appropriate country code.</p> <p>Constraint: Specifying <code>SubdivisionCode</code> without <code>CountryCode</code> returns an <a>InvalidInput</a> error.</p>",
388
- "ListGeoLocationsRequest$StartSubdivisionCode": "<p>The first subdivision code in the lexicographic ordering of geo locations that you want the <code>ListGeoLocations</code> request to list.</p> <p>Constraint: Specifying <code>SubdivisionCode</code> without <code>CountryCode</code> returns an <a>InvalidInput</a> error.</p>",
389
- "ListGeoLocationsResponse$NextSubdivisionCode": "<p>If the results were truncated, the subdivision code of the next geo location in the list. This element is present only if <a>ListGeoLocationsResponse$IsTruncated</a> is true and the next geo location has a subdivision. </p>"
390
- }
391
- },
392
- "GeoLocationSubdivisionName": {
393
- "base": null,
394
- "refs": {
395
- "GeoLocationDetails$SubdivisionName": "<p>The name of the subdivision. This element is only present if <code>SubdivisionCode</code> is also present.</p>"
396
- }
397
- },
398
- "GetChangeRequest": {
399
- "base": "<p>The input for a GetChange request.</p>",
400
- "refs": {
401
- }
402
- },
403
- "GetChangeResponse": {
404
- "base": "<p>A complex type that contains the <code>ChangeInfo</code> element.</p>",
405
- "refs": {
406
- }
407
- },
408
- "GetCheckerIpRangesRequest": {
409
- "base": "<p>Empty request.</p>",
410
- "refs": {
411
- }
412
- },
413
- "GetCheckerIpRangesResponse": {
414
- "base": "<p>A complex type that contains the <code>CheckerIpRanges</code> element.</p>",
415
- "refs": {
416
- }
417
- },
418
- "GetGeoLocationRequest": {
419
- "base": "<p>A complex type that contains information about the request to get a geo location.</p>",
420
- "refs": {
421
- }
422
- },
423
- "GetGeoLocationResponse": {
424
- "base": "<p>A complex type containing information about the specified geo location.</p>",
425
- "refs": {
426
- }
427
- },
428
- "GetHealthCheckCountRequest": {
429
- "base": "<p> To retrieve a count of all your health checks, send a <code>GET</code> request to the <code>2013-04-01/healthcheckcount</code> resource.</p>",
430
- "refs": {
431
- }
432
- },
433
- "GetHealthCheckCountResponse": {
434
- "base": "<p> A complex type that contains the count of health checks associated with the current AWS account.</p>",
435
- "refs": {
436
- }
437
- },
438
- "GetHealthCheckLastFailureReasonRequest": {
439
- "base": "<p>A complex type that contains information about the request to get the most recent failure reason for a health check.</p>",
440
- "refs": {
441
- }
442
- },
443
- "GetHealthCheckLastFailureReasonResponse": {
444
- "base": "<p>A complex type that contains information about the most recent failure for the specified health check.</p>",
445
- "refs": {
446
- }
447
- },
448
- "GetHealthCheckRequest": {
449
- "base": "<p>A complex type that contains information about the request to get a health check.</p>",
450
- "refs": {
451
- }
452
- },
453
- "GetHealthCheckResponse": {
454
- "base": "<p>A complex type containing information about the specified health check.</p>",
455
- "refs": {
456
- }
457
- },
458
- "GetHealthCheckStatusRequest": {
459
- "base": "<p>A complex type that contains information about the request to get health check status for a health check.</p>",
460
- "refs": {
461
- }
462
- },
463
- "GetHealthCheckStatusResponse": {
464
- "base": "<p>A complex type that contains information about the status of the specified health check.</p>",
465
- "refs": {
466
- }
467
- },
468
- "GetHostedZoneCountRequest": {
469
- "base": "<p> To retrieve a count of all your hosted zones, send a <code>GET</code> request to the <code>2013-04-01/hostedzonecount</code> resource.</p>",
470
- "refs": {
471
- }
472
- },
473
- "GetHostedZoneCountResponse": {
474
- "base": "<p> A complex type that contains the count of hosted zones associated with the current AWS account.</p>",
475
- "refs": {
476
- }
477
- },
478
- "GetHostedZoneRequest": {
479
- "base": "<p> The input for a GetHostedZone request.</p>",
480
- "refs": {
481
- }
482
- },
483
- "GetHostedZoneResponse": {
484
- "base": "<p>A complex type containing information about the specified hosted zone.</p>",
485
- "refs": {
486
- }
487
- },
488
- "GetReusableDelegationSetRequest": {
489
- "base": "<p> The input for a GetReusableDelegationSet request.</p>",
490
- "refs": {
491
- }
492
- },
493
- "GetReusableDelegationSetResponse": {
494
- "base": "<p>A complex type containing information about the specified reusable delegation set.</p>",
495
- "refs": {
496
- }
497
- },
498
- "HealthCheck": {
499
- "base": "<p>A complex type that contains identifying information about the health check.</p>",
500
- "refs": {
501
- "CreateHealthCheckResponse$HealthCheck": "<p>A complex type that contains identifying information about the health check.</p>",
502
- "GetHealthCheckResponse$HealthCheck": "<p>A complex type that contains the information about the specified health check.</p>",
503
- "HealthChecks$member": null,
504
- "UpdateHealthCheckResponse$HealthCheck": null
505
- }
506
- },
507
- "HealthCheckAlreadyExists": {
508
- "base": "<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>",
509
- "refs": {
510
- }
511
- },
512
- "HealthCheckConfig": {
513
- "base": "<p>A complex type that contains the health check configuration.</p>",
514
- "refs": {
515
- "CreateHealthCheckRequest$HealthCheckConfig": "<p>A complex type that contains health check configuration.</p>",
516
- "HealthCheck$HealthCheckConfig": "<p>A complex type that contains the health check configuration.</p>"
517
- }
518
- },
519
- "HealthCheckCount": {
520
- "base": null,
521
- "refs": {
522
- "GetHealthCheckCountResponse$HealthCheckCount": "<p> The number of health checks associated with the current AWS account.</p>"
523
- }
524
- },
525
- "HealthCheckId": {
526
- "base": null,
527
- "refs": {
528
- "DeleteHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to delete.</p>",
529
- "GetHealthCheckLastFailureReasonRequest$HealthCheckId": "<p>The ID of the health check for which you want to retrieve the reason for the most recent failure.</p>",
530
- "GetHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to retrieve.</p>",
531
- "GetHealthCheckStatusRequest$HealthCheckId": "<p>The ID of the health check for which you want to retrieve the most recent status.</p>",
532
- "HealthCheck$Id": "<p>The ID of the specified health check.</p>",
533
- "ResourceRecordSet$HealthCheckId": "<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>",
534
- "UpdateHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to update.</p>"
535
- }
536
- },
537
- "HealthCheckInUse": {
538
- "base": "<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>",
539
- "refs": {
540
- }
541
- },
542
- "HealthCheckNonce": {
543
- "base": null,
544
- "refs": {
545
- "CreateHealthCheckRequest$CallerReference": "<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> <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>",
546
- "HealthCheck$CallerReference": "<p>A unique string that identifies the request to create the health check.</p>"
547
- }
548
- },
549
- "HealthCheckObservation": {
550
- "base": "<p>A complex type that contains the IP address of a Route 53 health checker and the reason for the health check status.</p>",
551
- "refs": {
552
- "HealthCheckObservations$member": null
553
- }
554
- },
555
- "HealthCheckObservations": {
556
- "base": null,
557
- "refs": {
558
- "GetHealthCheckLastFailureReasonResponse$HealthCheckObservations": "<p>A list that contains one <code>HealthCheckObservation</code> element for each Route 53 health checker.</p>",
559
- "GetHealthCheckStatusResponse$HealthCheckObservations": "<p>A list that contains one <code>HealthCheckObservation</code> element for each Route 53 health checker.</p>"
560
- }
561
- },
562
- "HealthCheckType": {
563
- "base": null,
564
- "refs": {
565
- "HealthCheckConfig$Type": "<p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, and HTTPS_STR_MATCH.</p>"
566
- }
567
- },
568
- "HealthCheckVersion": {
569
- "base": null,
570
- "refs": {
571
- "HealthCheck$HealthCheckVersion": "<p>The version of the health check. You can optionally pass this value in a call to <code>UpdateHealthCheck</code> to prevent overwriting another change to the health check.</p>",
572
- "UpdateHealthCheckRequest$HealthCheckVersion": "<p>Optional. When you specify a health check version, Route 53 compares this value with the current value in the health check, which prevents you from updating the health check when the versions don't match. Using <code>HealthCheckVersion</code> lets you prevent overwriting another change to the health check.</p>"
573
- }
574
- },
575
- "HealthCheckVersionMismatch": {
576
- "base": null,
577
- "refs": {
578
- }
579
- },
580
- "HealthChecks": {
581
- "base": null,
582
- "refs": {
583
- "ListHealthChecksResponse$HealthChecks": "<p>A complex type that contains information about the health checks associated with the current AWS account.</p>"
584
- }
585
- },
586
- "HostedZone": {
587
- "base": "<p>A complex type that contain information about the specified hosted zone.</p>",
588
- "refs": {
589
- "CreateHostedZoneResponse$HostedZone": "<p>A complex type that contains identifying information about the hosted zone.</p>",
590
- "GetHostedZoneResponse$HostedZone": "<p>A complex type that contains the information about the specified hosted zone.</p>",
591
- "HostedZones$member": null,
592
- "UpdateHostedZoneCommentResponse$HostedZone": null
593
- }
594
- },
595
- "HostedZoneAlreadyExists": {
596
- "base": "<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>",
597
- "refs": {
598
- }
599
- },
600
- "HostedZoneConfig": {
601
- "base": "<p>A complex type that contains 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>",
602
- "refs": {
603
- "CreateHostedZoneRequest$HostedZoneConfig": "<p>A complex type that contains an optional comment about your hosted zone.</p>",
604
- "HostedZone$Config": "<p>A complex type that contains the <code>Comment</code> element.</p>"
605
- }
606
- },
607
- "HostedZoneCount": {
608
- "base": null,
609
- "refs": {
610
- "GetHostedZoneCountResponse$HostedZoneCount": "<p> The number of hosted zones associated with the current AWS account.</p>"
611
- }
612
- },
613
- "HostedZoneNotEmpty": {
614
- "base": "<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>",
615
- "refs": {
616
- }
617
- },
618
- "HostedZoneNotFound": {
619
- "base": "<p>The specified HostedZone cannot be found.</p>",
620
- "refs": {
621
- }
622
- },
623
- "HostedZoneRRSetCount": {
624
- "base": null,
625
- "refs": {
626
- "HostedZone$ResourceRecordSetCount": "<p>Total number of resource record sets in the hosted zone.</p>"
627
- }
628
- },
629
- "HostedZones": {
630
- "base": null,
631
- "refs": {
632
- "ListHostedZonesByNameResponse$HostedZones": "<p>A complex type that contains information about the hosted zones associated with the current AWS account.</p>",
633
- "ListHostedZonesResponse$HostedZones": "<p>A complex type that contains information about the hosted zones associated with the current AWS account.</p>"
634
- }
635
- },
636
- "IPAddress": {
637
- "base": null,
638
- "refs": {
639
- "HealthCheckConfig$IPAddress": "<p>IP Address of the instance being checked. </p>",
640
- "HealthCheckObservation$IPAddress": "<p>The IP address of the Route 53 health checker that performed the health check.</p>",
641
- "UpdateHealthCheckRequest$IPAddress": "<p>The IP address of the resource that you want to check.</p> <p>Specify this value only if you want to change it.</p>"
642
- }
643
- },
644
- "IPAddressCidr": {
645
- "base": null,
646
- "refs": {
647
- "CheckerIpRanges$member": null
648
- }
649
- },
650
- "IncompatibleVersion": {
651
- "base": "<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>",
652
- "refs": {
653
- }
654
- },
655
- "InvalidArgument": {
656
- "base": "<p>At least one of the specified arguments is invalid.</p>",
657
- "refs": {
658
- }
659
- },
660
- "InvalidChangeBatch": {
661
- "base": "<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>",
662
- "refs": {
663
- }
664
- },
665
- "InvalidDomainName": {
666
- "base": "<p>This error indicates that the specified domain name is not valid.</p>",
667
- "refs": {
668
- }
669
- },
670
- "InvalidInput": {
671
- "base": "<p>Some value specified in the request is invalid or the XML document is malformed.</p>",
672
- "refs": {
673
- }
674
- },
675
- "InvalidVPCId": {
676
- "base": "<p>The hosted zone you are trying to create for your VPC_ID does not belong to you. Route 53 returns this error when the VPC specified by <code>VPCId</code> does not belong to you.</p>",
677
- "refs": {
678
- }
679
- },
680
- "IsPrivateZone": {
681
- "base": null,
682
- "refs": {
683
- "HostedZoneConfig$PrivateZone": "<p>A value that indicates whether this is a private hosted zone. The value is returned in the response; do not specify it in the request.</p>"
684
- }
685
- },
686
- "LastVPCAssociation": {
687
- "base": "<p>The VPC you are trying to disassociate from the hosted zone is the last the VPC that is associated with the hosted zone. Route 53 currently doesn't support disassociate the last VPC from the hosted zone.</p>",
688
- "refs": {
689
- }
690
- },
691
- "LimitsExceeded": {
692
- "base": "<p>The limits specified for a resource have been exceeded.</p>",
693
- "refs": {
694
- }
695
- },
696
- "ListGeoLocationsRequest": {
697
- "base": "<p> The input for a ListGeoLocations request.</p>",
698
- "refs": {
699
- }
700
- },
701
- "ListGeoLocationsResponse": {
702
- "base": "<p>A complex type that contains information about the geo locations that are returned by the request and information about the response.</p>",
703
- "refs": {
704
- }
705
- },
706
- "ListHealthChecksRequest": {
707
- "base": "<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> <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>",
708
- "refs": {
709
- }
710
- },
711
- "ListHealthChecksResponse": {
712
- "base": "<p> A complex type that contains the response for the request.</p>",
713
- "refs": {
714
- }
715
- },
716
- "ListHostedZonesByNameRequest": {
717
- "base": "<p>To retrieve a list of your hosted zones in lexicographic order, send a <code>GET</code> request to the <code>2013-04-01/hostedzonesbyname</code> resource. The response to this request includes a <code>HostedZones</code> element with zero or more <code>HostedZone</code> child elements lexicographically ordered by DNS name. 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>DNSName</code> and <code>HostedZoneId</code> parameters to control the hosted zone that the list begins with.</p> <p>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>",
718
- "refs": {
719
- }
720
- },
721
- "ListHostedZonesByNameResponse": {
722
- "base": "<p>A complex type that contains the response for the request.</p>",
723
- "refs": {
724
- }
725
- },
726
- "ListHostedZonesRequest": {
727
- "base": "<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> <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>",
728
- "refs": {
729
- }
730
- },
731
- "ListHostedZonesResponse": {
732
- "base": "<p> A complex type that contains the response for the request.</p>",
733
- "refs": {
734
- }
735
- },
736
- "ListResourceRecordSetsRequest": {
737
- "base": "<p> The input for a ListResourceRecordSets request.</p>",
738
- "refs": {
739
- }
740
- },
741
- "ListResourceRecordSetsResponse": {
742
- "base": "<p>A complex type that contains information about the resource record sets that are returned by the request and information about the response.</p>",
743
- "refs": {
744
- }
745
- },
746
- "ListReusableDelegationSetsRequest": {
747
- "base": "<p> To retrieve a list of your reusable delegation sets, send a <code>GET</code> request to the <code>2013-04-01/delegationset</code> resource. The response to this request includes a <code>DelegationSets</code> element with zero or more <code>DelegationSet</code> child elements. By default, the list of reusable delegation sets 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 delegation set that the list begins with.</p> <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>",
748
- "refs": {
749
- }
750
- },
751
- "ListReusableDelegationSetsResponse": {
752
- "base": "<p> A complex type that contains the response for the request.</p>",
753
- "refs": {
754
- }
755
- },
756
- "ListTagsForResourceRequest": {
757
- "base": "<p>A complex type containing information about a request for a list of the tags that are associated with an individual resource.</p>",
758
- "refs": {
759
- }
760
- },
761
- "ListTagsForResourceResponse": {
762
- "base": "<p>A complex type containing tags for the specified resource.</p>",
763
- "refs": {
764
- }
765
- },
766
- "ListTagsForResourcesRequest": {
767
- "base": "<p>A complex type containing information about a request for a list of the tags that are associated with up to 10 specified resources.</p>",
768
- "refs": {
769
- }
770
- },
771
- "ListTagsForResourcesResponse": {
772
- "base": "<p>A complex type containing tags for the specified resources.</p>",
773
- "refs": {
774
- }
775
- },
776
- "NoSuchChange": {
777
- "base": null,
778
- "refs": {
779
- }
780
- },
781
- "NoSuchDelegationSet": {
782
- "base": "<p>The specified delegation set does not exist.</p>",
783
- "refs": {
784
- }
785
- },
786
- "NoSuchGeoLocation": {
787
- "base": "<p>The geo location you are trying to get does not exist.</p>",
788
- "refs": {
789
- }
790
- },
791
- "NoSuchHealthCheck": {
792
- "base": "<p>The health check you are trying to get or delete does not exist.</p>",
793
- "refs": {
794
- }
795
- },
796
- "NoSuchHostedZone": {
797
- "base": null,
798
- "refs": {
799
- }
800
- },
801
- "Nonce": {
802
- "base": null,
803
- "refs": {
804
- "CreateHostedZoneRequest$CallerReference": "<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> <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>",
805
- "CreateReusableDelegationSetRequest$CallerReference": "<p>A unique string that identifies the request and that allows failed <code>CreateReusableDelegationSet</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 reusable delegation set. <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> <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>",
806
- "DelegationSet$CallerReference": null,
807
- "HostedZone$CallerReference": "<p>A unique string that identifies the request to create the hosted zone.</p>"
808
- }
809
- },
810
- "PageMarker": {
811
- "base": null,
812
- "refs": {
813
- "ListHealthChecksRequest$Marker": "<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>",
814
- "ListHealthChecksResponse$Marker": "<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>",
815
- "ListHealthChecksResponse$NextMarker": "<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>",
816
- "ListHostedZonesRequest$Marker": "<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>",
817
- "ListHostedZonesResponse$Marker": "<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>",
818
- "ListHostedZonesResponse$NextMarker": "<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>",
819
- "ListReusableDelegationSetsRequest$Marker": "<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>",
820
- "ListReusableDelegationSetsResponse$Marker": "<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>",
821
- "ListReusableDelegationSetsResponse$NextMarker": "<p> Indicates where to continue listing reusable delegation sets. If <a>ListReusableDelegationSetsResponse$IsTruncated</a> is <code>true</code>, make another request to <code>ListReusableDelegationSets</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>"
822
- }
823
- },
824
- "PageMaxItems": {
825
- "base": null,
826
- "refs": {
827
- "ListGeoLocationsRequest$MaxItems": "<p>The maximum number of geo locations you want in the response body.</p>",
828
- "ListGeoLocationsResponse$MaxItems": "<p>The maximum number of records you requested. The maximum value of <code>MaxItems</code> is 100.</p>",
829
- "ListHealthChecksRequest$MaxItems": "<p>Specify the maximum number of health checks to return per page of results.</p>",
830
- "ListHealthChecksResponse$MaxItems": "<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>",
831
- "ListHostedZonesByNameRequest$MaxItems": "<p>Specify the maximum number of hosted zones to return per page of results.</p>",
832
- "ListHostedZonesByNameResponse$MaxItems": "<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>ListHostedZonesByNameResponse$IsTruncated</a> in the response is <code>true</code>. Call <code>ListHostedZonesByName</code> again and specify the value of <a>ListHostedZonesByNameResponse$NextDNSName</a> and <a>ListHostedZonesByNameResponse$NextHostedZoneId</a> elements respectively to get the next page of results.</p>",
833
- "ListHostedZonesRequest$MaxItems": "<p>Specify the maximum number of hosted zones to return per page of results.</p>",
834
- "ListHostedZonesResponse$MaxItems": "<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>",
835
- "ListResourceRecordSetsRequest$MaxItems": "<p>The maximum number of records you want in the response body.</p>",
836
- "ListResourceRecordSetsResponse$MaxItems": "<p>The maximum number of records you requested. The maximum value of <code>MaxItems</code> is 100.</p>",
837
- "ListReusableDelegationSetsRequest$MaxItems": "<p>Specify the maximum number of reusable delegation sets to return per page of results.</p>",
838
- "ListReusableDelegationSetsResponse$MaxItems": "<p>The maximum number of reusable delegation sets to be included in the response body. If the number of reusable delegation sets associated with this AWS account exceeds <code>MaxItems</code>, the value of <a>ListReusablDelegationSetsResponse$IsTruncated</a> in the response is <code>true</code>. Call <code>ListReusableDelegationSets</code> again and specify the value of <a>ListReusableDelegationSetsResponse$NextMarker</a> in the <a>ListReusableDelegationSetsRequest$Marker</a> element to get the next page of results.</p>"
839
- }
840
- },
841
- "PageTruncated": {
842
- "base": null,
843
- "refs": {
844
- "ListGeoLocationsResponse$IsTruncated": "<p> A flag that indicates whether there are more geo locations to be listed. If your results were truncated, you can make a follow-up request for the next page of results by using the values included in the <a>ListGeoLocationsResponse$NextContinentCode</a>, <a>ListGeoLocationsResponse$NextCountryCode</a> and <a>ListGeoLocationsResponse$NextSubdivisionCode</a> elements.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
845
- "ListHealthChecksResponse$IsTruncated": "<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> <p>Valid Values: <code>true</code> | <code>false</code></p>",
846
- "ListHostedZonesByNameResponse$IsTruncated": "<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>NextDNSName</code> and <code>NextHostedZoneId</code> elements.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
847
- "ListHostedZonesResponse$IsTruncated": "<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> <p>Valid Values: <code>true</code> | <code>false</code></p>",
848
- "ListResourceRecordSetsResponse$IsTruncated": "<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> <p>Valid Values: <code>true</code> | <code>false</code></p>",
849
- "ListReusableDelegationSetsResponse$IsTruncated": "<p> A flag indicating whether there are more reusable delegation 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 <code>Marker</code> element.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>"
850
- }
851
- },
852
- "Port": {
853
- "base": null,
854
- "refs": {
855
- "HealthCheckConfig$Port": "<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>",
856
- "UpdateHealthCheckRequest$Port": "<p>The port on which you want Route 53 to open a connection to perform health checks.</p> <p>Specify this value only if you want to change it.</p>"
857
- }
858
- },
859
- "PriorRequestNotComplete": {
860
- "base": "<p>The request was rejected because Route 53 was still processing a prior request.</p>",
861
- "refs": {
862
- }
863
- },
864
- "PublicZoneVPCAssociation": {
865
- "base": "<p>The hosted zone you are trying to associate VPC with doesn't have any VPC association. Route 53 currently doesn't support associate a VPC with a public hosted zone.</p>",
866
- "refs": {
867
- }
868
- },
869
- "RData": {
870
- "base": null,
871
- "refs": {
872
- "ResourceRecord$Value": "<p>The value of the <code>Value</code> element for the current resource record set.</p>"
873
- }
874
- },
875
- "RRType": {
876
- "base": null,
877
- "refs": {
878
- "ListResourceRecordSetsRequest$StartRecordType": "<p>The DNS type at which to begin the listing of resource record sets. </p> <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> <p>Values for Weighted Resource Record Sets: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>TXT</code></p> <p> Values for Regional Resource Record Sets: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>TXT</code></p> <p>Values for Alias Resource Record Sets: <code>A</code> | <code>AAAA</code></p> <p>Constraint: Specifying <code>type</code> without specifying <code>name</code> returns an <a>InvalidInput</a> error.</p>",
879
- "ListResourceRecordSetsResponse$NextRecordType": "<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>",
880
- "ResourceRecordSet$Type": "<p>The type of the current resource record set.</p>"
881
- }
882
- },
883
- "RequestInterval": {
884
- "base": null,
885
- "refs": {
886
- "HealthCheckConfig$RequestInterval": "<p>The number of seconds between the time that Route 53 gets a response from your endpoint and the time that it sends the next health-check request.</p> <p>Each Route 53 health checker makes requests at this interval. Valid values are 10 and 30. The default value is 30.</p>"
887
- }
888
- },
889
- "ResourceDescription": {
890
- "base": null,
891
- "refs": {
892
- "ChangeBatch$Comment": "<p><i>Optional:</i> Any comments you want to include about a change batch request.</p>",
893
- "ChangeInfo$Comment": "<p>A complex type that describes change information about changes made to your hosted zone.</p> <p>This element contains an ID that you use when performing a <a>GetChange</a> action to get detailed information about the change.</p>",
894
- "HostedZoneConfig$Comment": "<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>",
895
- "UpdateHostedZoneCommentRequest$Comment": "<p>A comment about your hosted zone.</p>"
896
- }
897
- },
898
- "ResourceId": {
899
- "base": null,
900
- "refs": {
901
- "AliasTarget$HostedZoneId": "<p><i>Alias resource record sets only:</i> The value of the hosted zone ID for the AWS resource.</p> <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>.",
902
- "AssociateVPCWithHostedZoneRequest$HostedZoneId": "<p> The ID of the hosted zone you want to associate your VPC with.</p> <p>Note that you cannot associate a VPC with a hosted zone that doesn't have an existing VPC association.</p>",
903
- "ChangeInfo$Id": "<p>The ID of the request. Use this ID to track when the change has completed across all Amazon Route 53 DNS servers.</p>",
904
- "ChangeResourceRecordSetsRequest$HostedZoneId": "<p> The ID of the hosted zone that contains the resource record sets that you want to change.</p>",
905
- "CreateHostedZoneRequest$DelegationSetId": "<p>The delegation set id of the reusable delgation set whose NS records you want to assign to the new hosted zone.</p>",
906
- "CreateReusableDelegationSetRequest$HostedZoneId": "<p>The ID of the hosted zone whose delegation set you want to mark as reusable. It is an optional parameter.</p>",
907
- "DelegationSet$Id": null,
908
- "DeleteHostedZoneRequest$Id": "<p> The ID of the hosted zone you want to delete.</p>",
909
- "DeleteReusableDelegationSetRequest$Id": "<p> The ID of the reusable delegation set you want to delete.</p>",
910
- "DisassociateVPCFromHostedZoneRequest$HostedZoneId": "<p> The ID of the hosted zone you want to disassociate your VPC from.</p> <p>Note that you cannot disassociate the last VPC from a hosted zone.</p>",
911
- "GetChangeRequest$Id": "<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>",
912
- "GetHostedZoneRequest$Id": "<p>The ID of the hosted zone for which you want to get a list of the name servers in the delegation set.</p>",
913
- "GetReusableDelegationSetRequest$Id": "<p>The ID of the reusable delegation set for which you want to get a list of the name server.</p>",
914
- "HostedZone$Id": "<p>The ID of the specified hosted zone.</p>",
915
- "ListHostedZonesByNameRequest$HostedZoneId": "<p>If the request returned more than one page of results, submit another request and specify the value of <code>NextDNSName</code> and <code>NextHostedZoneId</code> from the last response in the <code>DNSName</code> and <code>HostedZoneId</code> parameters to get the next page of results.</p>",
916
- "ListHostedZonesByNameResponse$HostedZoneId": "<p>The <code>HostedZoneId</code> value sent in the request.</p>",
917
- "ListHostedZonesByNameResponse$NextHostedZoneId": "<p>If <a>ListHostedZonesByNameResponse$IsTruncated</a> is <code>true</code>, there are more hosted zones associated with the current AWS account. To get the next page of results, make another request to <code>ListHostedZonesByName</code>. Specify the value of <a>ListHostedZonesByNameResponse$NextDNSName</a> in the <a>ListHostedZonesByNameRequest$DNSName</a> element and <a>ListHostedZonesByNameResponse$NextHostedZoneId</a> in the <a>ListHostedZonesByNameRequest$HostedZoneId</a> element.</p>",
918
- "ListHostedZonesRequest$DelegationSetId": null,
919
- "ListResourceRecordSetsRequest$HostedZoneId": "<p> The ID of the hosted zone that contains the resource record sets that you want to get.</p>",
920
- "UpdateHostedZoneCommentRequest$Id": "<p>The ID of the hosted zone you want to update.</p>"
921
- }
922
- },
923
- "ResourcePath": {
924
- "base": null,
925
- "refs": {
926
- "HealthCheckConfig$ResourcePath": "<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>",
927
- "UpdateHealthCheckRequest$ResourcePath": "<p>The path that you want Amazon Route 53 to request when performing health checks. The path can be any value for which your endpoint will return an HTTP status code of 2xx or 3xx when the endpoint is healthy, for example the file /docs/route53-health-check.html. </p> <p>Specify this value only if you want to change it.</p>"
928
- }
929
- },
930
- "ResourceRecord": {
931
- "base": "<p>A complex type that contains the value of the <code>Value</code> element for the current resource record set.</p>",
932
- "refs": {
933
- "ResourceRecords$member": null
934
- }
935
- },
936
- "ResourceRecordSet": {
937
- "base": "<p>A complex type that contains information about the current resource record set.</p>",
938
- "refs": {
939
- "Change$ResourceRecordSet": "<p>Information about the resource record set to create or delete.</p>",
940
- "ResourceRecordSets$member": null
941
- }
942
- },
943
- "ResourceRecordSetFailover": {
944
- "base": null,
945
- "refs": {
946
- "ResourceRecordSet$Failover": "<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> <p>Valid values: <code>PRIMARY</code> | <code>SECONDARY</code></p>"
947
- }
948
- },
949
- "ResourceRecordSetIdentifier": {
950
- "base": null,
951
- "refs": {
952
- "ListResourceRecordSetsRequest$StartRecordIdentifier": "<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>",
953
- "ListResourceRecordSetsResponse$NextRecordIdentifier": "<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>",
954
- "ResourceRecordSet$SetIdentifier": "<p><i>Weighted, Latency, Geo, 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>"
955
- }
956
- },
957
- "ResourceRecordSetRegion": {
958
- "base": null,
959
- "refs": {
960
- "ResourceRecordSet$Region": "<p><i>Latency-based 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>"
961
- }
962
- },
963
- "ResourceRecordSetWeight": {
964
- "base": null,
965
- "refs": {
966
- "ResourceRecordSet$Weight": "<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>"
967
- }
968
- },
969
- "ResourceRecordSets": {
970
- "base": null,
971
- "refs": {
972
- "ListResourceRecordSetsResponse$ResourceRecordSets": "<p>A complex type that contains information about the resource record sets that are returned by the request.</p>"
973
- }
974
- },
975
- "ResourceRecords": {
976
- "base": null,
977
- "refs": {
978
- "ResourceRecordSet$ResourceRecords": "<p>A complex type that contains the resource records for the current resource record set.</p>"
979
- }
980
- },
981
- "ResourceTagSet": {
982
- "base": "<p>A complex type containing a resource and its associated tags.</p>",
983
- "refs": {
984
- "ListTagsForResourceResponse$ResourceTagSet": "<p>A <code>ResourceTagSet</code> containing tags associated with the specified resource.</p>",
985
- "ResourceTagSetList$member": null
986
- }
987
- },
988
- "ResourceTagSetList": {
989
- "base": null,
990
- "refs": {
991
- "ListTagsForResourcesResponse$ResourceTagSets": "<p>A list of <code>ResourceTagSet</code>s containing tags associated with the specified resources.</p>"
992
- }
993
- },
994
- "ResourceURI": {
995
- "base": null,
996
- "refs": {
997
- "CreateHealthCheckResponse$Location": "<p>The unique URL representing the new health check.</p>",
998
- "CreateHostedZoneResponse$Location": "<p>The unique URL representing the new hosted zone.</p>",
999
- "CreateReusableDelegationSetResponse$Location": "<p>The unique URL representing the new reusbale delegation set.</p>"
1000
- }
1001
- },
1002
- "SearchString": {
1003
- "base": null,
1004
- "refs": {
1005
- "HealthCheckConfig$SearchString": "<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>",
1006
- "UpdateHealthCheckRequest$SearchString": "<p>If the value of <code>Type</code> is <code>HTTP_STR_MATCH</code> or <code>HTTP_STR_MATCH</code>, the string that you want Route 53 to search for in the response body from the specified resource. If the string appears in the response body, Route 53 considers the resource healthy. </p> <p>Specify this value only if you want to change it.</p>"
1007
- }
1008
- },
1009
- "Status": {
1010
- "base": null,
1011
- "refs": {
1012
- "StatusReport$Status": "<p>The observed health check status.</p>"
1013
- }
1014
- },
1015
- "StatusReport": {
1016
- "base": "<p>A complex type that contains information about the health check status for the current observation.</p>",
1017
- "refs": {
1018
- "HealthCheckObservation$StatusReport": "<p>A complex type that contains information about the health check status for the current observation.</p>"
1019
- }
1020
- },
1021
- "TTL": {
1022
- "base": null,
1023
- "refs": {
1024
- "ResourceRecordSet$TTL": "<p>The cache time to live for the current resource record set.</p>"
1025
- }
1026
- },
1027
- "Tag": {
1028
- "base": "<p>A single tag containing a key and value.</p>",
1029
- "refs": {
1030
- "TagList$member": null
1031
- }
1032
- },
1033
- "TagKey": {
1034
- "base": null,
1035
- "refs": {
1036
- "Tag$Key": "<p>The key for a <code>Tag</code>.</p>",
1037
- "TagKeyList$member": null
1038
- }
1039
- },
1040
- "TagKeyList": {
1041
- "base": null,
1042
- "refs": {
1043
- "ChangeTagsForResourceRequest$RemoveTagKeys": "<p>A list of <code>Tag</code> keys that you want to remove from the specified resource.</p>"
1044
- }
1045
- },
1046
- "TagList": {
1047
- "base": null,
1048
- "refs": {
1049
- "ChangeTagsForResourceRequest$AddTags": "<p>A complex type that contains a list of <code>Tag</code> elements. Each <code>Tag</code> element identifies a tag that you want to add or update for the specified resource.</p>",
1050
- "ResourceTagSet$Tags": "<p>The tags associated with the specified resource.</p>"
1051
- }
1052
- },
1053
- "TagResourceId": {
1054
- "base": null,
1055
- "refs": {
1056
- "ChangeTagsForResourceRequest$ResourceId": "<p>The ID of the resource for which you want to add, change, or delete tags.</p>",
1057
- "ListTagsForResourceRequest$ResourceId": "<p>The ID of the resource for which you want to retrieve tags.</p>",
1058
- "ResourceTagSet$ResourceId": "<p>The ID for the specified resource.</p>",
1059
- "TagResourceIdList$member": null
1060
- }
1061
- },
1062
- "TagResourceIdList": {
1063
- "base": null,
1064
- "refs": {
1065
- "ListTagsForResourcesRequest$ResourceIds": "<p>A complex type that contains the ResourceId element for each resource for which you want to get a list of tags.</p>"
1066
- }
1067
- },
1068
- "TagResourceType": {
1069
- "base": null,
1070
- "refs": {
1071
- "ChangeTagsForResourceRequest$ResourceType": "<p>The type of the resource.</p> <p>- The resource type for health checks is <code>healthcheck</code>.</p> <p>- The resource type for hosted zones is <code>hostedzone</code>.</p>",
1072
- "ListTagsForResourceRequest$ResourceType": "<p>The type of the resource.</p> <p>- The resource type for health checks is <code>healthcheck</code>.</p> <p>- The resource type for hosted zones is <code>hostedzone</code>.</p>",
1073
- "ListTagsForResourcesRequest$ResourceType": "<p>The type of the resources.</p> <p>- The resource type for health checks is <code>healthcheck</code>.</p> <p>- The resource type for hosted zones is <code>hostedzone</code>.</p>",
1074
- "ResourceTagSet$ResourceType": "<p>The type of the resource.</p> <p>- The resource type for health checks is <code>healthcheck</code>.</p> <p>- The resource type for hosted zones is <code>hostedzone</code>.</p>"
1075
- }
1076
- },
1077
- "TagValue": {
1078
- "base": null,
1079
- "refs": {
1080
- "Tag$Value": "<p>The value for a <code>Tag</code>.</p>"
1081
- }
1082
- },
1083
- "ThrottlingException": {
1084
- "base": null,
1085
- "refs": {
1086
- }
1087
- },
1088
- "TimeStamp": {
1089
- "base": null,
1090
- "refs": {
1091
- "ChangeInfo$SubmittedAt": "<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>",
1092
- "StatusReport$CheckedTime": "<p>The date and time the health check status was observed, 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>"
1093
- }
1094
- },
1095
- "TooManyHealthChecks": {
1096
- "base": null,
1097
- "refs": {
1098
- }
1099
- },
1100
- "TooManyHostedZones": {
1101
- "base": "<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>",
1102
- "refs": {
1103
- }
1104
- },
1105
- "UpdateHealthCheckRequest": {
1106
- "base": "<p>&gt;A complex type that contains information about the request to update a health check.</p>",
1107
- "refs": {
1108
- }
1109
- },
1110
- "UpdateHealthCheckResponse": {
1111
- "base": null,
1112
- "refs": {
1113
- }
1114
- },
1115
- "UpdateHostedZoneCommentRequest": {
1116
- "base": "<p>A complex type that contains information about the request to update a hosted zone comment.</p>",
1117
- "refs": {
1118
- }
1119
- },
1120
- "UpdateHostedZoneCommentResponse": {
1121
- "base": "<p>A complex type containing information about the specified hosted zone after the update.</p>",
1122
- "refs": {
1123
- }
1124
- },
1125
- "VPC": {
1126
- "base": null,
1127
- "refs": {
1128
- "AssociateVPCWithHostedZoneRequest$VPC": "<p>The VPC that you want your hosted zone to be associated with. </p>",
1129
- "CreateHostedZoneRequest$VPC": "<p>The VPC that you want your hosted zone to be associated with. By providing this parameter, your newly created hosted cannot be resolved anywhere other than the given VPC.</p>",
1130
- "CreateHostedZoneResponse$VPC": null,
1131
- "DisassociateVPCFromHostedZoneRequest$VPC": "<p>The VPC that you want your hosted zone to be disassociated from. </p>",
1132
- "VPCs$member": null
1133
- }
1134
- },
1135
- "VPCAssociationNotFound": {
1136
- "base": "<p>The VPC you specified is not currently associated with the hosted zone.</p>",
1137
- "refs": {
1138
- }
1139
- },
1140
- "VPCId": {
1141
- "base": "<p>A VPC ID</p>",
1142
- "refs": {
1143
- "VPC$VPCId": null
1144
- }
1145
- },
1146
- "VPCRegion": {
1147
- "base": null,
1148
- "refs": {
1149
- "VPC$VPCRegion": null
1150
- }
1151
- },
1152
- "VPCs": {
1153
- "base": "<p>A list of VPCs</p>",
1154
- "refs": {
1155
- "GetHostedZoneResponse$VPCs": "<p>A complex type that contains information about VPCs associated with the specified hosted zone.</p>"
1156
- }
1157
- }
1158
- }
1159
- }