docs-2.json 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  1. {
  2. "version": "2.0",
  3. "service": null,
  4. "operations": {
  5. "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>/<i>Route 53 API version</i>/hostedzone/<i>hosted zone ID</i>/associatevpc</code> resource. The request body must include a 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>",
  6. "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>/<i>Route 53 API version</i>/hostedzone/<i>hosted Zone ID</i>/rrset</code> resource. The request body must include a 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/APIReference/API_ChangeResourceRecordSets.html\">POST ChangeResourceRecordSets</a> in the <i>Amazon Route 53 API Reference</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, Amazon 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 Amazon 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 Amazon 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> <ul> <li>A request cannot contain more than 100 Change elements.</li> <li> A request cannot contain more than 1000 ResourceRecord elements.</li> <li>The sum of the number of characters (including spaces) in all <code>Value</code> elements in a request cannot exceed 32,000 characters.</li> </ul>",
  7. "ChangeTagsForResource": null,
  8. "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>/<i>Route 53 API version</i>/healthcheck</code> resource. The request body must include a document with a <code>CreateHealthCheckRequest</code> element. The response returns the <code>CreateHealthCheckResponse</code> element that contains metadata about the health check.</p>",
  9. "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>/<i>Route 53 API version</i>/hostedzone</code> resource. The request body must include a document with a <code>CreateHostedZoneRequest</code> element. The response returns the <code>CreateHostedZoneResponse</code> element that contains metadata about the hosted zone.</p> <p>Amazon 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 Amazon 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 Amazon 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>",
  10. "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>/<i>Route 53 API version</i>/delegationset</code> resource. The request body must include a 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>",
  11. "CreateTrafficPolicy": "<p>Creates a traffic policy, which you use to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com).</p> <p>To create a traffic policy, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy</code> resource. The request body must include a document with a <code>CreateTrafficPolicyRequest</code> element. The response includes the <code>CreateTrafficPolicyResponse</code> element, which contains information about the new traffic policy.</p>",
  12. "CreateTrafficPolicyInstance": "<p>Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, <code>CreateTrafficPolicyInstance</code> associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that <code>CreateTrafficPolicyInstance</code> created.</p> <p>To create a traffic policy instance, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance</code> resource. The request body must include a document with a <code>CreateTrafficPolicyRequest</code> element. The response returns the <code>CreateTrafficPolicyInstanceResponse</code> element, which contains information about the traffic policy instance.</p>",
  13. "CreateTrafficPolicyVersion": "<p>Creates a new version of an existing traffic policy. When you create a new version of a traffic policy, you specify the ID of the traffic policy that you want to update and a JSON-formatted document that describes the new version.</p> <p>You use traffic policies to create multiple DNS resource record sets for one domain name (such as example.com) or one subdomain name (such as www.example.com).</p> <p>To create a new version, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy/</code> resource. The request body includes a document with a <code>CreateTrafficPolicyVersionRequest</code> element. The response returns the <code>CreateTrafficPolicyVersionResponse</code> element, which contains information about the new version of the traffic policy.</p>",
  14. "DeleteHealthCheck": "<p>This action deletes a health check. To delete a health check, send a <code>DELETE</code> request to the <code>/<i>Route 53 API version</i>/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, Amazon Route 53 will deny your request with a <code>HealthCheckInUse</code> error. For information about disassociating the records from your health check, see <code>ChangeResourceRecordSets</code>.</important>",
  15. "DeleteHostedZone": "<p>This action deletes a hosted zone. To delete a hosted zone, send a <code>DELETE</code> request to the <code>/<i>Route 53 API version</i>/hostedzone/<i>hosted zone ID</i></code> resource.</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, Amazon Route 53 will deny your request with a <code>HostedZoneNotEmpty</code> error. For information about deleting records from your hosted zone, see <code>ChangeResourceRecordSets</code>.</important>",
  16. "DeleteReusableDelegationSet": "<p>This action deletes a reusable delegation set. To delete a reusable delegation set, send a <code>DELETE</code> request to the <code>/<i>Route 53 API version</i>/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, Amazon Route 53 will deny your request with a <code>DelegationSetInUse</code> error.</important>",
  17. "DeleteTrafficPolicy": "<p>Deletes a traffic policy. To delete a traffic policy, send a <code>DELETE</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy</code> resource.</p>",
  18. "DeleteTrafficPolicyInstance": "<p>Deletes a traffic policy instance and all of the resource record sets that Amazon Route 53 created when you created the instance.</p> <p>To delete a traffic policy instance, send a <code>DELETE</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy/<i>traffic policy instance ID</i></code> resource.</p> <important>When you delete a traffic policy instance, Amazon Route 53 also deletes all of the resource record sets that were created when you created the traffic policy instance.</important>",
  19. "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>/<i>Route 53 API version</i>/hostedzone/<i>hosted zone ID</i>/disassociatevpc</code> resource. The request body must include a 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>",
  20. "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 Amazon 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>",
  21. "GetChangeDetails": "<p>This action returns the status and changes of a change batch request.</p>",
  22. "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>/<i>Route 53 API version</i>/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>",
  23. "GetGeoLocation": "<p>To retrieve a single geo location, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/geolocation</code> resource with one of these options: continentcode | countrycode | countrycode and subdivisioncode.</p>",
  24. "GetHealthCheck": "<p>To retrieve the health check, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/healthcheck/<i>health check ID</i></code> resource. </p>",
  25. "GetHealthCheckCount": "<p>To retrieve a count of all your health checks, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/healthcheckcount</code> resource.</p>",
  26. "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>/<i>Route 53 API version</i>/healthcheck/<i>health check ID</i>/lastfailurereason</code> resource.</p>",
  27. "GetHealthCheckStatus": "<p>To retrieve the health check status, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/healthcheck/<i>health check ID</i>/status</code> resource. You can use this call to get a health check's current status. </p>",
  28. "GetHostedZone": "<p>To retrieve the delegation set for a hosted zone, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/hostedzone/<i>hosted zone ID</i></code> resource. The delegation set is the four Amazon Route 53 name servers that were assigned to the hosted zone when you created it.</p>",
  29. "GetHostedZoneCount": "<p>To retrieve a count of all your hosted zones, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/hostedzonecount</code> resource.</p>",
  30. "GetReusableDelegationSet": "<p>To retrieve the reusable delegation set, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/delegationset/<i>delegation set ID</i></code> resource.</p>",
  31. "GetTrafficPolicy": "<p>Gets information about a specific traffic policy version. To get the information, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy</code> resource.</p>",
  32. "GetTrafficPolicyInstance": "<p>Gets information about a specified traffic policy instance.</p> <p>To get information about the traffic policy instance, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance</code> resource.</p> <note>After you submit a <code>CreateTrafficPolicyInstance</code> or an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</note>",
  33. "GetTrafficPolicyInstanceCount": "<p>Gets the number of traffic policy instances that are associated with the current AWS account.</p> <p>To get the number of traffic policy instances, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstancecount</code> resource.</p>",
  34. "ListChangeBatchesByHostedZone": "<p>This action gets the list of ChangeBatches in a given time period for a given hosted zone.</p>",
  35. "ListChangeBatchesByRRSet": "<p>This action gets the list of ChangeBatches in a given time period for a given hosted zone and RRSet.</p>",
  36. "ListGeoLocations": "<p>To retrieve a list of supported geo locations, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  37. "ListHealthChecks": "<p>To retrieve a list of your health checks, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  38. "ListHostedZones": "<p>To retrieve a list of your hosted zones, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  39. "ListHostedZonesByName": "<p>To retrieve a list of your hosted zones in lexicographic order, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  40. "ListResourceRecordSets": "<p>List the resource record sets in a specified hosted zone. Send a GET request to the <code>2013-04-01/hostedzone/<i>hosted zone ID</i>/rrset</code> resource.</p> <p><code>ListResourceRecordSets</code> returns up to 100 resource record sets at a time in ASCII order, beginning at a position specified by the name and type elements. The action sorts results first by DNS name with the labels reversed, for example:</p> <p><code>com.example.www.</code></p> <p>Note the trailing dot, which can change the sort order in some circumstances. When multiple records have the same DNS name, the action sorts results by the record type.</p> <p>You can use the name and type elements to adjust the beginning position of the list of resource record sets returned:</p> <ul> <li><b>If you do not specify <code>Name</code> or <code>Type</code></b>: The results begin with the first resource record set that the hosted zone contains.</li> <li><b>If you specify <code>Name</code> but not <code>Type</code></b>: The results begin with the first resource record set in the list whose name is greater than or equal to Name.</li> <li><b>If you specify <code>Type</code> but not <code>Name</code></b>: Amazon Route 53 returns the <code>InvalidInput</code> error.</li> <li><b>If you specify both <code>Name</code> and <code>Type</code></b>: The results begin with the first resource record set in the list whose name is greater than or equal to <code>Name</code>, and whose type is greater than or equal to <code>Type</code>.</li> </ul> <p>This action returns the most current version of the records. This includes records that are <code>PENDING</code>, and that are not yet available on all Amazon Route 53 DNS servers.</p> <p>To ensure that you get an accurate listing of the resource record sets for a hosted zone at a point in time, do not submit a <code>ChangeResourceRecordSets</code> request while you are paging through the results of a <code>ListResourceRecordSets</code> request. If you do, some pages may display results without the latest changes while other pages display results with the latest changes.</p>",
  41. "ListReusableDelegationSets": "<p>To retrieve a list of your reusable delegation sets, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  42. "ListTagsForResource": null,
  43. "ListTagsForResources": null,
  44. "ListTrafficPolicies": "<p>Gets information about the latest version for every traffic policy that is associated with the current AWS account. To get the information, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy</code> resource.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policies, you can use the <code>maxitems</code> parameter to list them in groups of up to 100.</p> <p>The response includes three values that help you navigate from one group of <code>maxitems</code> traffic policies to the next:</p> <ul> <li><b>IsTruncated</b></li> <p>If the value of <code>IsTruncated</code> in the response is <code>true</code>, there are more traffic policies associated with the current AWS account.</p> <p>If <code>IsTruncated</code> is <code>false</code>, this response includes the last traffic policy that is associated with the current account.</p> <li><b>TrafficPolicyIdMarker</b></li> <p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyIdMarker</code> is the ID of the first traffic policy in the next group of <code>MaxItems</code> traffic policies. If you want to list more traffic policies, make another call to <code>ListTrafficPolicies</code>, and specify the value of the <code>TrafficPolicyIdMarker</code> element from the response in the <code>TrafficPolicyIdMarker</code> request parameter.</p> <p>If <code>IsTruncated</code> is <code>false</code>, the <code>TrafficPolicyIdMarker</code> element is omitted from the response.</p> <li><b>MaxItems</b></li> <p>The value that you specified for the <code>MaxItems</code> parameter in the request that produced the current response.</p> </ul>",
  45. "ListTrafficPolicyInstances": "<p>Gets information about the traffic policy instances that you created by using the current AWS account.</p> <note>After you submit an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</note> <p>To get information about the traffic policy instances that are associated with the current AWS account, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance</code> resource.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p> <p>The response includes five values that help you navigate from one group of <code>MaxItems</code> traffic policy instances to the next:</p> <ul> <li><b>IsTruncated</b></li> <p>If the value of <code>IsTruncated</code> in the response is <code>true</code>, there are more traffic policy instances associated with the current AWS account.</p> <p>If <code>IsTruncated</code> is <code>false</code>, this response includes the last traffic policy instance that is associated with the current account.</p> <li><b>MaxItems</b></li> <p>The value that you specified for the <code>MaxItems</code> parameter in the request that produced the current response.</p> <li><b>HostedZoneIdMarker</b>, <b>TrafficPolicyInstanceNameMarker</b>, and <b>TrafficPolicyInstanceTypeMarker</b></li> <p>If <code>IsTruncated</code> is <code>true</code>, these three values in the response represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances. To list more traffic policy instances, make another call to <code>ListTrafficPolicyInstances</code>, and specify these values in the corresponding request parameters.</p> <p>If <code>IsTruncated</code> is <code>false</code>, all three elements are omitted from the response.</p> </ul>",
  46. "ListTrafficPolicyInstancesByHostedZone": "<p>Gets information about the traffic policy instances that you created in a specified hosted zone.</p> <note>After you submit an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</note> <p>To get information about the traffic policy instances that you created in a specified hosted zone, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance</code> resource and include the ID of the hosted zone.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p> <p>The response includes four values that help you navigate from one group of <code>MaxItems</code> traffic policy instances to the next:</p> <ul> <li><b>IsTruncated</b></li> <p>If the value of <code/>IsTruncated in the response is <code>true</code>, there are more traffic policy instances associated with the current AWS account.</p> <p>If <code>IsTruncated</code> is <code>false</code>, this response includes the last traffic policy instance that is associated with the current account.</p> <li><b>MaxItems</b></li> <p>The value that you specified for the <code>MaxItems</code> parameter in the request that produced the current response.</p> <li><b>TrafficPolicyInstanceNameMarker</b> and <b>TrafficPolicyInstanceTypeMarker</b></li> <p>If <code>IsTruncated</code> is <code>true</code>, these two values in the response represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances. To list more traffic policy instances, make another call to <code>ListTrafficPolicyInstancesByHostedZone</code>, and specify these values in the corresponding request parameters.</p> <p>If <code>IsTruncated</code> is <code>false</code>, all three elements are omitted from the response.</p> </ul>",
  47. "ListTrafficPolicyInstancesByPolicy": "<p>Gets information about the traffic policy instances that you created by using a specify traffic policy version.</p> <note>After you submit a <code>CreateTrafficPolicyInstance</code> or an <code>UpdateTrafficPolicyInstance</code> request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the <code>State</code> response element.</note> <p>To get information about the traffic policy instances that you created by using a specify traffic policy version, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance</code> resource and include the ID and version of the traffic policy.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policy instances, you can use the <code>MaxItems</code> parameter to list them in groups of up to 100.</p> <p>The response includes five values that help you navigate from one group of <code>MaxItems</code> traffic policy instances to the next:</p> <ul> <li><b>IsTruncated</b> <p>If the value of <code>IsTruncated</code> in the response is <code>true</code>, there are more traffic policy instances associated with the specified traffic policy.</p> <p>If <code>IsTruncated</code> is <code>false</code>, this response includes the last traffic policy instance that is associated with the specified traffic policy.</p> </li> <li><b>MaxItems</b> <p>The value that you specified for the <code>MaxItems</code> parameter in the request that produced the current response.</p> </li> <li><b>HostedZoneIdMarker</b>, <b>TrafficPolicyInstanceNameMarker</b>, and <b>TrafficPolicyInstanceTypeMarker</b> <p>If <code>IsTruncated</code> is <code>true</code>, these values in the response represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances. To list more traffic policy instances, make another call to <code>ListTrafficPolicyInstancesByPolicy</code>, and specify these values in the corresponding request parameters.</p> <p>If <code>IsTruncated</code> is <code>false</code>, all three elements are omitted from the response.</p> </li> </ul>",
  48. "ListTrafficPolicyVersions": "<p>Gets information about all of the versions for a specified traffic policy. <code>ListTrafficPolicyVersions</code> lists only versions that have not been deleted.</p> <p>Amazon Route 53 returns a maximum of 100 items in each response. If you have a lot of traffic policies, you can use the <code>maxitems</code> parameter to list them in groups of up to 100.</p> <p>The response includes three values that help you navigate from one group of <code>maxitems</code>maxitems traffic policies to the next:</p> <ul> <li><b>IsTruncated</b></li> <p>If the value of <code>IsTruncated</code> in the response is <code>true</code>, there are more traffic policy versions associated with the specified traffic policy.</p> <p>If <code>IsTruncated</code> is <code>false</code>, this response includes the last traffic policy version that is associated with the specified traffic policy.</p> <li><b>TrafficPolicyVersionMarker</b></li> <p>The ID of the next traffic policy version that is associated with the current AWS account. If you want to list more traffic policies, make another call to <code>ListTrafficPolicyVersions</code>, and specify the value of the <code>TrafficPolicyVersionMarker</code> element in the <code>TrafficPolicyVersionMarker</code> request parameter.</p> <p>If <code>IsTruncated</code> is <code>false</code>, Amazon Route 53 omits the <code>TrafficPolicyVersionMarker</code> element from the response.</p> <li><b>MaxItems</b></li> <p>The value that you specified for the <code>MaxItems</code> parameter in the request that produced the current response.</p> </ul>",
  49. "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>/<i>Route 53 API version</i>/healthcheck/<i>health check ID</i></code> resource. The request body must include a document with an <code>UpdateHealthCheckRequest</code> element. The response returns an <code>UpdateHealthCheckResponse</code> element, which contains metadata about the health check.</p>",
  50. "UpdateHostedZoneComment": "<p>To update the hosted zone comment, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/hostedzone/<i>hosted zone ID</i></code> resource. The request body must include a 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>",
  51. "UpdateTrafficPolicyComment": "<p>Updates the comment for a specified traffic policy version.</p> <p>To update the comment, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicy/</code> resource.</p> <p>The request body must include a document with an <code>UpdateTrafficPolicyCommentRequest</code> element.</p>",
  52. "UpdateTrafficPolicyInstance": "<p>Updates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version.</p> <important>The DNS type of the resource record sets that you're updating must match the DNS type in the JSON document that is associated with the traffic policy version that you're using to update the traffic policy instance.</important> <p>When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS queries for the root resource record set name (such as example.com) while it replaces one group of resource record sets with another. Amazon Route 53 performs the following operations:</p> <ol> <li>Amazon Route 53 creates a new group of resource record sets based on the specified traffic policy. This is true regardless of how substantial the differences are between the existing resource record sets and the new resource record sets. </li> <li>When all of the new resource record sets have been created, Amazon Route 53 starts to respond to DNS queries for the root resource record set name (such as example.com) by using the new resource record sets.</li> <li>Amazon Route 53 deletes the old group of resource record sets that are associated with the root resource record set name.</li> </ol> <p>To update a traffic policy instance, send a <code>POST</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance/<i>traffic policy ID</i></code> resource. The request body must include a document with an <code>UpdateTrafficPolicyInstanceRequest</code> element.</p>"
  53. },
  54. "shapes": {
  55. "AWSAccountID": {
  56. "base": null,
  57. "refs": {
  58. "ChangeBatchRecord$Submitter": "<p>The AWS account ID attached to the changes. </p>"
  59. }
  60. },
  61. "AlarmIdentifier": {
  62. "base": "<p>A complex type that contains information to uniquely identify the CloudWatch alarm that you're associating with a Route 53 health check.</p>",
  63. "refs": {
  64. "HealthCheckConfig$AlarmIdentifier": "<p>A complex type that contains information to uniquely identify the CloudWatch alarm that you're associating with a Route 53 health check.</p>",
  65. "UpdateHealthCheckRequest$AlarmIdentifier": null
  66. }
  67. },
  68. "AlarmName": {
  69. "base": null,
  70. "refs": {
  71. "AlarmIdentifier$Name": "<p>The name of the CloudWatch alarm.</p>"
  72. }
  73. },
  74. "AliasHealthEnabled": {
  75. "base": null,
  76. "refs": {
  77. "AliasTarget$EvaluateTargetHealth": "<p><i>Alias resource record sets only:</i> If you set the value of <code>EvaluateTargetHealth</code> to <code>true</code> for the resource record set or sets in an alias, weighted alias, latency alias, or failover alias resource record set, and if you specify a value for <code>HealthCheckId</code> for every resource record set that is referenced by these alias resource record sets, the alias resource record sets inherit the health of the referenced resource record sets.</p> <p>In this configuration, when Amazon Route 53 receives a DNS query for an alias resource record set:</p> <ol> <li>Amazon Route 53 looks at the resource record sets that are referenced by the alias resource record sets to determine which health checks they're using.</li> <li>Amazon Route 53 checks the current status of each health check. (Amazon Route 53 periodically checks the health of the endpoint that is specified in a health check; it doesn't perform the health check when the DNS query arrives.)</li> <li>Based on the status of the health checks, Amazon Route 53 determines which resource record sets are healthy. Unhealthy resource record sets are immediately removed from consideration. In addition, if all of the resource record sets that are referenced by an alias resource record set are unhealthy, that alias resource record set also is immediately removed from consideration.</li> <li>Based on the configuration of the alias resource record sets (weighted alias or latency alias, for example) and the configuration of the resource record sets that they reference, Amazon Route 53 chooses a resource record set from the healthy resource record sets, and responds to the query.</li> </ol> <p>Note the following:</p> <ul><li>You cannot set <code>EvaluateTargetHealth</code> to true when the alias target is a CloudFront distribution.</li> <li>If the AWS resource that you specify in <code>AliasTarget</code> is a resource record set or a group of resource record sets (for example, a group of weighted resource record sets), but it is not another alias resource record set, we recommend that you associate a health check with all of the resource record sets in the alias target.</li> <li>If you specify an ELB load balancer in <code>AliasTarget</code>, Elastic Load Balancing routes queries only to the healthy Amazon EC2 instances that are registered with the load balancer. If no Amazon EC2 instances are healthy or if the load balancer itself is unhealthy, and if <code>EvaluateTargetHealth</code> is <code>true</code> for the corresponding alias resource record set, Amazon Route 53 routes queries to other resources.</li> <li>When you create a load balancer, you configure settings for Elastic Load Balancing health checks; they're not Amazon Route 53 health checks, but they perform a similar function. Do not create Amazon Route 53 health checks for the Amazon EC2 instances that you register with an ELB load balancer. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html\">How Health Checks Work in More Complex Amazon Route 53 Configurations</a> in the <i>Amazon Route 53 Developer Guide</i>.</li> </ul> <p>We recommend that you set <code>EvaluateTargetHealth</code> to <code>true</code> only when you have enough idle capacity to handle the failure of one or more endpoints.</p> <p>For more information and examples, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html\">Amazon Route 53 Health Checks and DNS Failover</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>"
  78. }
  79. },
  80. "AliasTarget": {
  81. "base": "<p><i>Alias resource record sets only:</i> Information about the CloudFront distribution, ELB load balancer, Amazon S3 bucket, or Amazon Route 53 resource record set to which you are routing traffic.</p> <p>If you're creating resource record sets for a private hosted zone, note the following:</p> <ul> <li>You can create alias resource record sets only for Amazon Route 53 resource record sets in the same private hosted zone. Creating alias resource record sets for CloudFront distributions, ELB load balancers, and Amazon S3 buckets is not supported.</li> <li>You can't create alias resource record sets for failover, geolocation, or latency resource record sets in a private hosted zone.</li> </ul>",
  82. "refs": {
  83. "ResourceRecordSet$AliasTarget": "<p><i>Alias resource record sets only:</i> Information about the AWS resource to which you are redirecting traffic.</p>"
  84. }
  85. },
  86. "AssociateVPCComment": {
  87. "base": null,
  88. "refs": {
  89. "AssociateVPCWithHostedZoneRequest$Comment": "<p><i>Optional:</i> Any comments you want to include about a <code>AssociateVPCWithHostedZoneRequest</code>.</p>"
  90. }
  91. },
  92. "AssociateVPCWithHostedZoneRequest": {
  93. "base": "<p>A complex type that contains information about the request to associate a VPC with an hosted zone.</p>",
  94. "refs": {
  95. }
  96. },
  97. "AssociateVPCWithHostedZoneResponse": {
  98. "base": "<p>A complex type containing the response information for the request.</p>",
  99. "refs": {
  100. }
  101. },
  102. "Change": {
  103. "base": "<p>A complex type that contains the information for each change in a change batch request.</p>",
  104. "refs": {
  105. "Changes$member": null
  106. }
  107. },
  108. "ChangeAction": {
  109. "base": null,
  110. "refs": {
  111. "Change$Action": "<p>The action to perform:</p> <ul> <li><code>CREATE</code>: Creates a resource record set that has the specified values.</li> <li><CODE>DELETE</CODE>: Deletes a existing resource record set that has the specified values for <code>Name</code>, <code>Type</code>, <code>SetIdentifier</code> (for latency, weighted, geolocation, and failover resource record sets), and <code>TTL</code> (except alias resource record sets, for which the TTL is determined by the AWS resource that you're routing DNS queries to).</li> <li><code>UPSERT</code>: If a resource record set does not already exist, Amazon Route 53 creates it. If a resource record set does exist, Amazon Route 53 updates it with the values in the request. Amazon Route 53 can update an existing resource record set only when all of the following values match: <code>Name</code>, <code>Type</code>, and <code>SetIdentifier</code> (for weighted, latency, geolocation, and failover resource record sets).</li> </ul>"
  112. }
  113. },
  114. "ChangeBatch": {
  115. "base": "<p>A complex type that contains an optional comment and the changes that you want to make with a change batch request.</p>",
  116. "refs": {
  117. "ChangeResourceRecordSetsRequest$ChangeBatch": "<p>A complex type that contains an optional comment and the <code>Changes</code> element.</p>"
  118. }
  119. },
  120. "ChangeBatchRecord": {
  121. "base": "<p>A complex type that lists the changes and information for a ChangeBatch.</p>",
  122. "refs": {
  123. "ChangeBatchRecords$member": null,
  124. "GetChangeDetailsResponse$ChangeBatchRecord": "<p>A complex type that contains information about the specified change batch, including the change batch ID, the status of the change, and the contained changes.</p>"
  125. }
  126. },
  127. "ChangeBatchRecords": {
  128. "base": null,
  129. "refs": {
  130. "ListChangeBatchesByHostedZoneResponse$ChangeBatchRecords": "<p>The change batches within the given hosted zone and time period. </p>",
  131. "ListChangeBatchesByRRSetResponse$ChangeBatchRecords": "<p>The change batches within the given hosted zone and time period. </p>"
  132. }
  133. },
  134. "ChangeInfo": {
  135. "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 <code>GetChange</code> action to get detailed information about the change.</p>",
  136. "refs": {
  137. "AssociateVPCWithHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your <code>AssociateVPCWithHostedZoneRequest</code>.</p>",
  138. "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 <code>GetChange</code> action to get detailed information about the change.</p>",
  139. "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 <code>GetChange</code> action to get the current status of the change request.</p>",
  140. "DeleteHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your delete request.</p>",
  141. "DisassociateVPCFromHostedZoneResponse$ChangeInfo": "<p>A complex type that contains the ID, the status, and the date and time of your <code>DisassociateVPCFromHostedZoneRequest</code>.</p>",
  142. "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>"
  143. }
  144. },
  145. "ChangeResourceRecordSetsRequest": {
  146. "base": "<p>A complex type that contains a change batch.</p>",
  147. "refs": {
  148. }
  149. },
  150. "ChangeResourceRecordSetsResponse": {
  151. "base": "<p>A complex type containing the response for the request.</p>",
  152. "refs": {
  153. }
  154. },
  155. "ChangeStatus": {
  156. "base": null,
  157. "refs": {
  158. "ChangeBatchRecord$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>",
  159. "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>"
  160. }
  161. },
  162. "ChangeTagsForResourceRequest": {
  163. "base": "<p>A complex type containing information about a request to add, change, or delete the tags that are associated with a resource.</p>",
  164. "refs": {
  165. }
  166. },
  167. "ChangeTagsForResourceResponse": {
  168. "base": "<p>Empty response for the request.</p>",
  169. "refs": {
  170. }
  171. },
  172. "Changes": {
  173. "base": null,
  174. "refs": {
  175. "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>",
  176. "ChangeBatchRecord$Changes": "<p>A list of changes made in the ChangeBatch.</p>"
  177. }
  178. },
  179. "CheckerIpRanges": {
  180. "base": null,
  181. "refs": {
  182. "GetCheckerIpRangesResponse$CheckerIpRanges": "<p>A complex type that contains sorted list of IP ranges in CIDR format for Amazon Route 53 health checkers.</p>"
  183. }
  184. },
  185. "ChildHealthCheckList": {
  186. "base": null,
  187. "refs": {
  188. "HealthCheckConfig$ChildHealthChecks": "<p>For a specified parent health check, a list of <code>HealthCheckId</code> values for the associated child health checks.</p>",
  189. "UpdateHealthCheckRequest$ChildHealthChecks": "<p>For a specified parent health check, a list of <code>HealthCheckId</code> values for the associated child health checks.</p> <p>Specify this value only if you want to change it.</p>"
  190. }
  191. },
  192. "CloudWatchAlarmConfiguration": {
  193. "base": "<p>For CLOUDWATCH_METRIC health checks, a complex type that contains information about the CloudWatch alarm that you're associating with the health check.</p>",
  194. "refs": {
  195. "HealthCheck$CloudWatchAlarmConfiguration": "<p>For CLOUDWATCH_METRIC health checks, a complex type that contains information about the CloudWatch alarm that you're associating with the health check.</p>"
  196. }
  197. },
  198. "CloudWatchRegion": {
  199. "base": null,
  200. "refs": {
  201. "AlarmIdentifier$Region": "<p>The <code>CloudWatchRegion</code> that the CloudWatch alarm was created in.</p>"
  202. }
  203. },
  204. "ComparisonOperator": {
  205. "base": null,
  206. "refs": {
  207. "CloudWatchAlarmConfiguration$ComparisonOperator": "<p>The arithmetic operation to use when comparing the specified Statistic and Threshold.</p> <p>Valid Values are <code>GreaterThanOrEqualToThreshold</code>, <code>GreaterThanThreshold</code>, <code>LessThanThreshold</code> and <code>LessThanOrEqualToThreshold</code></p>"
  208. }
  209. },
  210. "ConcurrentModification": {
  211. "base": "<p>Another user submitted a request to update the object at the same time that you did. Retry the request. </p>",
  212. "refs": {
  213. }
  214. },
  215. "ConflictingDomainExists": {
  216. "base": null,
  217. "refs": {
  218. }
  219. },
  220. "ConflictingTypes": {
  221. "base": "<p>You tried to update a traffic policy instance by using a traffic policy version that has a different DNS type than the current type for the instance. You specified the type in the JSON document in the <code>CreateTrafficPolicy</code> or <code>CreateTrafficPolicyVersion</code>request. </p>",
  222. "refs": {
  223. }
  224. },
  225. "CreateHealthCheckRequest": {
  226. "base": "<p>>A complex type that contains information about the request to create a health check.</p>",
  227. "refs": {
  228. }
  229. },
  230. "CreateHealthCheckResponse": {
  231. "base": "<p>A complex type containing the response information for the new health check.</p>",
  232. "refs": {
  233. }
  234. },
  235. "CreateHostedZoneRequest": {
  236. "base": "<p>A complex type that contains information about the request to create a hosted zone.</p>",
  237. "refs": {
  238. }
  239. },
  240. "CreateHostedZoneResponse": {
  241. "base": "<p>A complex type containing the response information for the new hosted zone.</p>",
  242. "refs": {
  243. }
  244. },
  245. "CreateReusableDelegationSetRequest": {
  246. "base": null,
  247. "refs": {
  248. }
  249. },
  250. "CreateReusableDelegationSetResponse": {
  251. "base": null,
  252. "refs": {
  253. }
  254. },
  255. "CreateTrafficPolicyInstanceRequest": {
  256. "base": "<p>A complex type that contains information about the resource record sets that you want to create based on a specified traffic policy.</p>",
  257. "refs": {
  258. }
  259. },
  260. "CreateTrafficPolicyInstanceResponse": {
  261. "base": "<p>A complex type that contains the response information for the <code>CreateTrafficPolicyInstance</code> request.</p>",
  262. "refs": {
  263. }
  264. },
  265. "CreateTrafficPolicyRequest": {
  266. "base": "<p>A complex type that contains information about the traffic policy that you want to create.</p>",
  267. "refs": {
  268. }
  269. },
  270. "CreateTrafficPolicyResponse": {
  271. "base": "<p>A complex type that contains the response information for the <code>CreateTrafficPolicy</code> request.</p>",
  272. "refs": {
  273. }
  274. },
  275. "CreateTrafficPolicyVersionRequest": {
  276. "base": "<p>A complex type that contains information about the traffic policy for which you want to create a new version.</p>",
  277. "refs": {
  278. }
  279. },
  280. "CreateTrafficPolicyVersionResponse": {
  281. "base": "<p>A complex type that contains the response information for the <code>CreateTrafficPolicyVersion</code> request.</p>",
  282. "refs": {
  283. }
  284. },
  285. "DNSName": {
  286. "base": null,
  287. "refs": {
  288. "AliasTarget$DNSName": "<p><i>Alias resource record sets only:</i> The external DNS name associated with the AWS Resource. The value that you specify depends on where you want to route queries:</p> <ul> <li><b>A CloudFront distribution:</b> Specify the domain name that CloudFront assigned when you created your distribution. Your CloudFront distribution must include an alternate domain name that matches the name of the resource record set. For example, if the name of the resource record set is <code>acme.example.com</code>, your CloudFront distribution must include <code>acme.example.com</code> as one of the alternate domain names. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html\">Using Alternate Domain Names (CNAMEs)</a> in the <i>Amazon CloudFront Developer Guide</i>.</li> <li><b>An ELB load balancer:</b> Specify the DNS name associated with the load balancer. You can get the DNS name by using the AWS Management Console, the ELB API, or the AWS CLI. Use the same method to get values for <code>HostedZoneId</code> and <code>DNSName</code>. If you get one value from the console and the other value from the API or the CLI, creating the resource record set will fail.</li> <li><b>An Elastic Beanstalk environment:</b> Specify the CNAME attribute for the environment. (The environment must have a regionalized domain name.) </li> <li><b>An Amazon S3 bucket that is configured as a static website:</b> Specify the domain name of the Amazon S3 website endpoint in which you created the bucket; for example, <code>s3-website-us-east-1.amazonaws.com</code>. For more information about valid values, see the table <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region\">Amazon Simple Storage Service (S3) Website Endpoints</a> in the <i>Amazon Web Services General Reference</i>. For more information about using Amazon S3 buckets for websites, see <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html\">Hosting a Static Website on Amazon S3</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</li> <li><b>Another Amazon Route 53 resource record set:</b> Specify the value of the <code>Name</code> element for a resource record set in the current hosted zone.</li> </ul>",
  289. "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; Amazon Route 53 assumes that the domain name is fully qualified. This means that Amazon 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>",
  290. "CreateTrafficPolicyInstanceRequest$Name": "<p>The domain name (such as example.com) or subdomain name (such as www.example.com) for which Amazon Route 53 responds to DNS queries by using the resource record sets that Amazon Route 53 creates for this traffic policy instance.</p>",
  291. "DelegationSetNameServers$member": null,
  292. "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; Amazon Route 53 assumes that the domain name is fully qualified. This means that Amazon 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>",
  293. "ListChangeBatchesByRRSetRequest$Name": "<p>The name of the RRSet that you want to see changes for.</p>",
  294. "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>",
  295. "ListHostedZonesByNameResponse$DNSName": "<p>The <code>DNSName</code> value sent in the request.</p>",
  296. "ListHostedZonesByNameResponse$NextDNSName": "<p>If the value of <code>IsTruncated</code> in the <code>ListHostedZonesByNameResponse</code> 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 <code>NextDNSName</code> in the <code>DNSName</code> parameter. Specify <code>NextHostedZoneId</code> in the <code>HostedZoneId</code> parameter.</p>",
  297. "ListResourceRecordSetsRequest$StartRecordName": "<p>The first name in the lexicographic ordering of domain names that you want the <code>ListResourceRecordSets</code> request to list.</p>",
  298. "ListResourceRecordSetsResponse$NextRecordName": "<p>If the results were truncated, the name of the next record in the list. This element is present only if <code>IsTruncated</code> is true. </p>",
  299. "ListTrafficPolicyInstancesByHostedZoneRequest$TrafficPolicyInstanceNameMarker": "<p>For the first request to <code>ListTrafficPolicyInstancesByHostedZone</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get for this hosted zone.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, omit this value.</p>",
  300. "ListTrafficPolicyInstancesByHostedZoneResponse$TrafficPolicyInstanceNameMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  301. "ListTrafficPolicyInstancesByPolicyRequest$TrafficPolicyInstanceNameMarker": "<p>For the first request to <code>ListTrafficPolicyInstancesByPolicy</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get for this hosted zone.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, omit this value.</p>",
  302. "ListTrafficPolicyInstancesByPolicyResponse$TrafficPolicyInstanceNameMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  303. "ListTrafficPolicyInstancesRequest$TrafficPolicyInstanceNameMarker": "<p>For the first request to <code>ListTrafficPolicyInstances</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>",
  304. "ListTrafficPolicyInstancesResponse$TrafficPolicyInstanceNameMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceNameMarker</code> is the name of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  305. "ResourceRecordSet$Name": "<p>The name of the domain you want to perform the action on.</p> <p>Enter a fully qualified domain name, for example, <code>www.example.com</code>. You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 still assumes that the domain name that you specify is fully qualified. This means that Amazon Route 53 treats <code>www.example.com</code> (without a trailing dot) and <code>www.example.com.</code> (with a trailing dot) as identical.</p> <p>For information about how to specify characters other than a-z, 0-9, and - (hyphen) and how to specify internationalized domain names, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html\">DNS Domain Name Format</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>You can use an asterisk (*) character in the name. DNS treats the * character either as a wildcard or as the * character (ASCII 42), depending on where it appears in the name. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-asterisk\">Using an Asterisk (*) in the Names of Hosted Zones and Resource Record Sets</a> in the <i>Amazon Route 53 Developer Guide</i></p> <important>You can't use the * wildcard for resource records sets that have a type of NS.</important>",
  306. "TrafficPolicyInstance$Name": null
  307. }
  308. },
  309. "Date": {
  310. "base": null,
  311. "refs": {
  312. "ListChangeBatchesByHostedZoneRequest$StartDate": "<p>The start of the time period you want to see changes for.</p>",
  313. "ListChangeBatchesByHostedZoneRequest$EndDate": "<p>The end of the time period you want to see changes for.</p>",
  314. "ListChangeBatchesByRRSetRequest$StartDate": "<p>The start of the time period you want to see changes for.</p>",
  315. "ListChangeBatchesByRRSetRequest$EndDate": "<p>The end of the time period you want to see changes for.</p>"
  316. }
  317. },
  318. "DelegationSet": {
  319. "base": "<p>A complex type that contains name server information.</p>",
  320. "refs": {
  321. "CreateHostedZoneResponse$DelegationSet": "<p>A complex type that contains name server information.</p>",
  322. "CreateReusableDelegationSetResponse$DelegationSet": "<p>A complex type that contains name server information.</p>",
  323. "DelegationSets$member": null,
  324. "GetHostedZoneResponse$DelegationSet": "<p>A complex type that contains information about the name servers for the specified hosted zone.</p>",
  325. "GetReusableDelegationSetResponse$DelegationSet": "<p>A complex type that contains the information about the nameservers for the specified delegation set ID.</p>"
  326. }
  327. },
  328. "DelegationSetAlreadyCreated": {
  329. "base": "<p>A delegation set with the same owner and caller reference combination has already been created.</p>",
  330. "refs": {
  331. }
  332. },
  333. "DelegationSetAlreadyReusable": {
  334. "base": "<p>The specified delegation set has already been marked as reusable.</p>",
  335. "refs": {
  336. }
  337. },
  338. "DelegationSetInUse": {
  339. "base": "<p>The specified delegation contains associated hosted zones which must be deleted before the reusable delegation set can be deleted.</p>",
  340. "refs": {
  341. }
  342. },
  343. "DelegationSetNameServers": {
  344. "base": null,
  345. "refs": {
  346. "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>"
  347. }
  348. },
  349. "DelegationSetNotAvailable": {
  350. "base": "<p>Amazon 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 Amazon 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>",
  351. "refs": {
  352. }
  353. },
  354. "DelegationSetNotReusable": {
  355. "base": "<p>The specified delegation set has not been marked as reusable.</p>",
  356. "refs": {
  357. }
  358. },
  359. "DelegationSets": {
  360. "base": null,
  361. "refs": {
  362. "ListReusableDelegationSetsResponse$DelegationSets": "<p>A complex type that contains information about the reusable delegation sets associated with the current AWS account.</p>"
  363. }
  364. },
  365. "DeleteHealthCheckRequest": {
  366. "base": "<p>A complex type containing the request information for delete health check.</p>",
  367. "refs": {
  368. }
  369. },
  370. "DeleteHealthCheckResponse": {
  371. "base": "<p>Empty response for the request.</p>",
  372. "refs": {
  373. }
  374. },
  375. "DeleteHostedZoneRequest": {
  376. "base": "<p>A complex type that contains information about the hosted zone that you want to delete.</p>",
  377. "refs": {
  378. }
  379. },
  380. "DeleteHostedZoneResponse": {
  381. "base": "<p>A complex type containing the response information for the request.</p>",
  382. "refs": {
  383. }
  384. },
  385. "DeleteReusableDelegationSetRequest": {
  386. "base": "<p>A complex type containing the information for the delete request.</p>",
  387. "refs": {
  388. }
  389. },
  390. "DeleteReusableDelegationSetResponse": {
  391. "base": "<p>Empty response for the request.</p>",
  392. "refs": {
  393. }
  394. },
  395. "DeleteTrafficPolicyInstanceRequest": {
  396. "base": "<p>A complex type that contains information about the traffic policy instance that you want to delete.</p>",
  397. "refs": {
  398. }
  399. },
  400. "DeleteTrafficPolicyInstanceResponse": {
  401. "base": "<p>An empty element.</p>",
  402. "refs": {
  403. }
  404. },
  405. "DeleteTrafficPolicyRequest": {
  406. "base": "<p>A request to delete a specified traffic policy version.</p>",
  407. "refs": {
  408. }
  409. },
  410. "DeleteTrafficPolicyResponse": {
  411. "base": "<p>An empty element.</p>",
  412. "refs": {
  413. }
  414. },
  415. "Dimension": {
  416. "base": "<p>The name and value of a dimension for a CloudWatch metric.</p>",
  417. "refs": {
  418. "DimensionList$member": null
  419. }
  420. },
  421. "DimensionField": {
  422. "base": null,
  423. "refs": {
  424. "Dimension$Name": "<p>The name of the dimension.</p>",
  425. "Dimension$Value": "<p>The value of the dimension.</p>"
  426. }
  427. },
  428. "DimensionList": {
  429. "base": null,
  430. "refs": {
  431. "CloudWatchAlarmConfiguration$Dimensions": "<p>A list of <code>Dimension</code> elements for the CloudWatch metric that is associated with the CloudWatch alarm. For information about the metrics and dimensions that CloudWatch supports, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html\">Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference</a>.</p>"
  432. }
  433. },
  434. "DisassociateVPCComment": {
  435. "base": null,
  436. "refs": {
  437. "DisassociateVPCFromHostedZoneRequest$Comment": "<p><i>Optional:</i> Any comments you want to include about a <code>DisassociateVPCFromHostedZoneRequest</code>.</p>"
  438. }
  439. },
  440. "DisassociateVPCFromHostedZoneRequest": {
  441. "base": "<p>A complex type that contains information about the request to disassociate a VPC from an hosted zone.</p>",
  442. "refs": {
  443. }
  444. },
  445. "DisassociateVPCFromHostedZoneResponse": {
  446. "base": "<p>A complex type containing the response information for the request.</p>",
  447. "refs": {
  448. }
  449. },
  450. "EnableSNI": {
  451. "base": null,
  452. "refs": {
  453. "HealthCheckConfig$EnableSNI": "<p>Specify whether you want Amazon Route 53 to send the value of <code>FullyQualifiedDomainName</code> to the endpoint in the <code>client_hello</code> message during TLS negotiation. If you don't specify a value for <code>EnableSNI</code>, Amazon Route 53 defaults to <code>true</code> when <code>Type</code> is <code>HTTPS</code> or <code>HTTPS_STR_MATCH</code> and defaults to <code>false</code> when <code>Type</code> is any other value.</p>",
  454. "UpdateHealthCheckRequest$EnableSNI": "<p>Specify whether you want Amazon Route 53 to send the value of <code>FullyQualifiedDomainName</code> to the endpoint in the <code>client_hello</code> message during TLS negotiation. If you don't specify a value for <code>EnableSNI</code>, Amazon Route 53 defaults to <code>true</code> when <code>Type</code> is <code>HTTPS</code> or <code>HTTPS_STR_MATCH</code> and defaults to <code>false</code> when <code>Type</code> is any other value.</p> <p>Specify this value only if you want to change it.</p>"
  455. }
  456. },
  457. "ErrorMessage": {
  458. "base": null,
  459. "refs": {
  460. "ConcurrentModification$message": "<p>Descriptive message for the error response.</p>",
  461. "ConflictingDomainExists$message": null,
  462. "ConflictingTypes$message": "<p>Descriptive message for the error response.</p>",
  463. "DelegationSetAlreadyCreated$message": "<p>Descriptive message for the error response.</p>",
  464. "DelegationSetAlreadyReusable$message": "<p>Descriptive message for the error response.</p>",
  465. "DelegationSetInUse$message": "<p>Descriptive message for the error response.</p>",
  466. "DelegationSetNotAvailable$message": "<p>Descriptive message for the error response.</p>",
  467. "DelegationSetNotReusable$message": "<p>Descriptive message for the error response.</p>",
  468. "ErrorMessages$member": null,
  469. "HealthCheckAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
  470. "HealthCheckInUse$message": "<p>Descriptive message for the error response.</p>",
  471. "HealthCheckVersionMismatch$message": null,
  472. "HostedZoneAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
  473. "HostedZoneNotEmpty$message": "<p>Descriptive message for the error response.</p>",
  474. "HostedZoneNotFound$message": "<p>Descriptive message for the error response.</p>",
  475. "IncompatibleVersion$message": null,
  476. "InvalidArgument$message": "<p>Descriptive message for the error response.</p>",
  477. "InvalidDomainName$message": "<p>Descriptive message for the error response.</p>",
  478. "InvalidInput$message": "<p>Descriptive message for the error response.</p>",
  479. "InvalidTrafficPolicyDocument$message": "<p>Descriptive message for the error response.</p>",
  480. "InvalidVPCId$message": "<p>Descriptive message for the error response.</p>",
  481. "LastVPCAssociation$message": "<p>Descriptive message for the error response.</p>",
  482. "LimitsExceeded$message": "<p>Descriptive message for the error response.</p>",
  483. "NoSuchChange$message": null,
  484. "NoSuchDelegationSet$message": "<p>Descriptive message for the error response.</p>",
  485. "NoSuchGeoLocation$message": "<p>Descriptive message for the error response.</p>",
  486. "NoSuchHealthCheck$message": "<p>Descriptive message for the error response.</p>",
  487. "NoSuchHostedZone$message": null,
  488. "NoSuchTrafficPolicy$message": "<p>Descriptive message for the error response.</p>",
  489. "NoSuchTrafficPolicyInstance$message": "<p>Descriptive message for the error response.</p>",
  490. "PriorRequestNotComplete$message": null,
  491. "PublicZoneVPCAssociation$message": "<p>Descriptive message for the error response.</p>",
  492. "ThrottlingException$message": null,
  493. "TooManyHealthChecks$message": null,
  494. "TooManyHostedZones$message": "<p>Descriptive message for the error response.</p>",
  495. "TooManyTrafficPolicies$message": "<p>Descriptive message for the error response.</p>",
  496. "TooManyTrafficPolicyInstances$message": "<p>Descriptive message for the error response.</p>",
  497. "TrafficPolicyAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
  498. "TrafficPolicyInUse$message": "<p>Descriptive message for the error response.</p>",
  499. "TrafficPolicyInstanceAlreadyExists$message": "<p>Descriptive message for the error response.</p>",
  500. "VPCAssociationNotFound$message": "<p>Descriptive message for the error response.</p>"
  501. }
  502. },
  503. "ErrorMessages": {
  504. "base": null,
  505. "refs": {
  506. "InvalidChangeBatch$messages": "<p>Descriptive message for the error response.</p>"
  507. }
  508. },
  509. "EvaluationPeriods": {
  510. "base": null,
  511. "refs": {
  512. "CloudWatchAlarmConfiguration$EvaluationPeriods": "<p>The number of periods over which data is compared to the specified threshold.</p>"
  513. }
  514. },
  515. "FailureThreshold": {
  516. "base": null,
  517. "refs": {
  518. "HealthCheckConfig$FailureThreshold": "<p>The number of consecutive health checks that an endpoint must pass or fail for Amazon 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>",
  519. "UpdateHealthCheckRequest$FailureThreshold": "<p>The number of consecutive health checks that an endpoint must pass or fail for Amazon 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>"
  520. }
  521. },
  522. "FullyQualifiedDomainName": {
  523. "base": null,
  524. "refs": {
  525. "HealthCheckConfig$FullyQualifiedDomainName": "<p>Fully qualified domain name of the instance to be health checked.</p>",
  526. "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>"
  527. }
  528. },
  529. "GeoLocation": {
  530. "base": "<p>A complex type that contains information about a geo location.</p>",
  531. "refs": {
  532. "ResourceRecordSet$GeoLocation": "<p><i>Geo location resource record sets only:</i> A complex type that lets you control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query. For example, if you want all queries from Africa to be routed to a web server with an IP address of <code>192.0.2.111</code>, create a resource record set with a <code>Type</code> of <code>A</code> and a <code>ContinentCode</code> of <code>AF</code>.</p> <note>You can create geolocation and geolocation alias resource record sets only in public hosted zones.</note> <p>If you create separate resource record sets for overlapping geographic regions (for example, one resource record set for a continent and one for a country on the same continent), priority goes to the smallest geographic region. This allows you to route most queries for a continent to one resource and to route queries for a country on that continent to a different resource.</p> <p>You cannot create two geolocation resource record sets that specify the same geographic location.</p> <p>The value <code>*</code> in the <code>CountryCode</code> element matches all geographic locations that aren't specified in other geolocation resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements.</p> <important>Geolocation works by mapping IP addresses to locations. However, some IP addresses aren't mapped to geographic locations, so even if you create geolocation resource record sets that cover all seven continents, Amazon Route 53 will receive some DNS queries from locations that it can't identify. We recommend that you create a resource record set for which the value of <code>CountryCode</code> is <code>*</code>, which handles both queries that come from locations for which you haven't created geolocation resource record sets and queries from IP addresses that aren't mapped to a location. If you don't create a <code>*</code> resource record set, Amazon Route 53 returns a \"no answer\" response for queries from those locations.</important> <p>You cannot create non-geolocation resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as geolocation resource record sets.</p>"
  533. }
  534. },
  535. "GeoLocationContinentCode": {
  536. "base": null,
  537. "refs": {
  538. "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 <code>InvalidInput</code> error.</p>",
  539. "GeoLocationDetails$ContinentCode": "<p>The code for a continent geo location. Note: only continent locations have a continent code.</p>",
  540. "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 <code>InvalidInput</code> error.</p>",
  541. "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 <code>InvalidInput</code> error.</p>",
  542. "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 <code>IsTruncated</code> is true and the next geo location to list is a continent location. </p>"
  543. }
  544. },
  545. "GeoLocationContinentName": {
  546. "base": null,
  547. "refs": {
  548. "GeoLocationDetails$ContinentName": "<p>The name of the continent. This element is only present if <code>ContinentCode</code> is also present.</p>"
  549. }
  550. },
  551. "GeoLocationCountryCode": {
  552. "base": null,
  553. "refs": {
  554. "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>",
  555. "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>",
  556. "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>",
  557. "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>",
  558. "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 <code>IsTruncated</code> is true and the next geo location to list is not a continent location. </p>"
  559. }
  560. },
  561. "GeoLocationCountryName": {
  562. "base": null,
  563. "refs": {
  564. "GeoLocationDetails$CountryName": "<p>The name of the country. This element is only present if <code>CountryCode</code> is also present.</p>"
  565. }
  566. },
  567. "GeoLocationDetails": {
  568. "base": "<p>A complex type that contains information about a <code>GeoLocation</code>.</p>",
  569. "refs": {
  570. "GeoLocationDetailsList$member": null,
  571. "GetGeoLocationResponse$GeoLocationDetails": "<p>A complex type that contains the information about the specified geo location.</p>"
  572. }
  573. },
  574. "GeoLocationDetailsList": {
  575. "base": null,
  576. "refs": {
  577. "ListGeoLocationsResponse$GeoLocationDetailsList": "<p>A complex type that contains information about the geo locations that are returned by the request.</p>"
  578. }
  579. },
  580. "GeoLocationSubdivisionCode": {
  581. "base": null,
  582. "refs": {
  583. "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 <code>InvalidInput</code> error.</p>",
  584. "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>",
  585. "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 <code>InvalidInput</code> error.</p>",
  586. "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 <code>InvalidInput</code> error.</p>",
  587. "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 <code>IsTruncated</code> is true and the next geo location has a subdivision. </p>"
  588. }
  589. },
  590. "GeoLocationSubdivisionName": {
  591. "base": null,
  592. "refs": {
  593. "GeoLocationDetails$SubdivisionName": "<p>The name of the subdivision. This element is only present if <code>SubdivisionCode</code> is also present.</p>"
  594. }
  595. },
  596. "GetChangeDetailsRequest": {
  597. "base": "<p>The input for a GetChangeDetails request.</p>",
  598. "refs": {
  599. }
  600. },
  601. "GetChangeDetailsResponse": {
  602. "base": "<p>A complex type that contains the <code>ChangeBatchRecord</code> element.</p>",
  603. "refs": {
  604. }
  605. },
  606. "GetChangeRequest": {
  607. "base": "<p>The input for a GetChange request.</p>",
  608. "refs": {
  609. }
  610. },
  611. "GetChangeResponse": {
  612. "base": "<p>A complex type that contains the <code>ChangeInfo</code> element.</p>",
  613. "refs": {
  614. }
  615. },
  616. "GetCheckerIpRangesRequest": {
  617. "base": "<p>Empty request.</p>",
  618. "refs": {
  619. }
  620. },
  621. "GetCheckerIpRangesResponse": {
  622. "base": "<p>A complex type that contains the <code>CheckerIpRanges</code> element.</p>",
  623. "refs": {
  624. }
  625. },
  626. "GetGeoLocationRequest": {
  627. "base": "<p>A complex type that contains information about the request to get a geo location.</p>",
  628. "refs": {
  629. }
  630. },
  631. "GetGeoLocationResponse": {
  632. "base": "<p>A complex type containing information about the specified geo location.</p>",
  633. "refs": {
  634. }
  635. },
  636. "GetHealthCheckCountRequest": {
  637. "base": "<p>To retrieve a count of all your health checks, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/healthcheckcount</code> resource.</p>",
  638. "refs": {
  639. }
  640. },
  641. "GetHealthCheckCountResponse": {
  642. "base": "<p>A complex type that contains the count of health checks associated with the current AWS account.</p>",
  643. "refs": {
  644. }
  645. },
  646. "GetHealthCheckLastFailureReasonRequest": {
  647. "base": "<p>A complex type that contains information about the request to get the most recent failure reason for a health check.</p>",
  648. "refs": {
  649. }
  650. },
  651. "GetHealthCheckLastFailureReasonResponse": {
  652. "base": "<p>A complex type that contains information about the most recent failure for the specified health check.</p>",
  653. "refs": {
  654. }
  655. },
  656. "GetHealthCheckRequest": {
  657. "base": "<p>A complex type that contains information about the request to get a health check.</p>",
  658. "refs": {
  659. }
  660. },
  661. "GetHealthCheckResponse": {
  662. "base": "<p>A complex type containing information about the specified health check.</p>",
  663. "refs": {
  664. }
  665. },
  666. "GetHealthCheckStatusRequest": {
  667. "base": "<p>A complex type that contains information about the request to get health check status for a health check.</p>",
  668. "refs": {
  669. }
  670. },
  671. "GetHealthCheckStatusResponse": {
  672. "base": "<p>A complex type that contains information about the status of the specified health check.</p>",
  673. "refs": {
  674. }
  675. },
  676. "GetHostedZoneCountRequest": {
  677. "base": "<p>To retrieve a count of all your hosted zones, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/hostedzonecount</code> resource.</p>",
  678. "refs": {
  679. }
  680. },
  681. "GetHostedZoneCountResponse": {
  682. "base": "<p>A complex type that contains the count of hosted zones associated with the current AWS account.</p>",
  683. "refs": {
  684. }
  685. },
  686. "GetHostedZoneRequest": {
  687. "base": "<p>The input for a GetHostedZone request.</p>",
  688. "refs": {
  689. }
  690. },
  691. "GetHostedZoneResponse": {
  692. "base": "<p>A complex type containing information about the specified hosted zone.</p>",
  693. "refs": {
  694. }
  695. },
  696. "GetReusableDelegationSetRequest": {
  697. "base": "<p>The input for a <code>GetReusableDelegationSet</code> request.</p>",
  698. "refs": {
  699. }
  700. },
  701. "GetReusableDelegationSetResponse": {
  702. "base": "<p>A complex type containing information about the specified reusable delegation set.</p>",
  703. "refs": {
  704. }
  705. },
  706. "GetTrafficPolicyInstanceCountRequest": {
  707. "base": "<p>To retrieve a count of all your traffic policy instances, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstancecount</code> resource.</p>",
  708. "refs": {
  709. }
  710. },
  711. "GetTrafficPolicyInstanceCountResponse": {
  712. "base": "<p>A complex type that contains information about the number of traffic policy instances that are associated with the current AWS account.</p>",
  713. "refs": {
  714. }
  715. },
  716. "GetTrafficPolicyInstanceRequest": {
  717. "base": "<p>Gets information about a specified traffic policy instance.</p> <p>To get information about a traffic policy instance, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/trafficpolicyinstance/<i>Id</i></code> resource.</p>",
  718. "refs": {
  719. }
  720. },
  721. "GetTrafficPolicyInstanceResponse": {
  722. "base": "<p>A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.</p>",
  723. "refs": {
  724. }
  725. },
  726. "GetTrafficPolicyRequest": {
  727. "base": "<p>Gets information about a specific traffic policy version. To get the information, send a GET request to the /<i>Route 53 API version</i>/trafficpolicy resource, and specify the ID and the version of the traffic policy.</p>",
  728. "refs": {
  729. }
  730. },
  731. "GetTrafficPolicyResponse": {
  732. "base": "<p>A complex type that contains the response information for the request.</p>",
  733. "refs": {
  734. }
  735. },
  736. "HealthCheck": {
  737. "base": "<p>A complex type that contains identifying information about the health check.</p>",
  738. "refs": {
  739. "CreateHealthCheckResponse$HealthCheck": "<p>A complex type that contains identifying information about the health check.</p>",
  740. "GetHealthCheckResponse$HealthCheck": "<p>A complex type that contains the information about the specified health check.</p>",
  741. "HealthChecks$member": null,
  742. "UpdateHealthCheckResponse$HealthCheck": null
  743. }
  744. },
  745. "HealthCheckAlreadyExists": {
  746. "base": "<p>The health check you are trying to create already exists. Amazon Route 53 returns this error when a health check has already been created with the specified <code>CallerReference</code>.</p>",
  747. "refs": {
  748. }
  749. },
  750. "HealthCheckConfig": {
  751. "base": "<p>A complex type that contains the health check configuration.</p>",
  752. "refs": {
  753. "CreateHealthCheckRequest$HealthCheckConfig": "<p>A complex type that contains health check configuration.</p>",
  754. "HealthCheck$HealthCheckConfig": "<p>A complex type that contains the health check configuration.</p>"
  755. }
  756. },
  757. "HealthCheckCount": {
  758. "base": null,
  759. "refs": {
  760. "GetHealthCheckCountResponse$HealthCheckCount": "<p>The number of health checks associated with the current AWS account.</p>"
  761. }
  762. },
  763. "HealthCheckId": {
  764. "base": null,
  765. "refs": {
  766. "ChildHealthCheckList$member": null,
  767. "DeleteHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to delete.</p>",
  768. "GetHealthCheckLastFailureReasonRequest$HealthCheckId": "<p>The ID of the health check for which you want to retrieve the reason for the most recent failure.</p>",
  769. "GetHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to retrieve.</p>",
  770. "GetHealthCheckStatusRequest$HealthCheckId": "<p>If you want Amazon Route 53 to return this resource record set in response to a DNS query only when a health check is passing, include the <code>HealthCheckId</code> element and specify the ID of the applicable health check.</p> <p>Amazon Route 53 determines whether a resource record set is healthy by periodically sending a request to the endpoint that is specified in the health check. If that endpoint returns an HTTP status code of 2xx or 3xx, the endpoint is healthy. If the endpoint returns an HTTP status code of 400 or greater, or if the endpoint doesn't respond for a certain amount of time, Amazon Route 53 considers the endpoint unhealthy and also considers the resource record set unhealthy.</p> <p>The <code>HealthCheckId</code> element is only useful when Amazon Route 53 is choosing between two or more resource record sets to respond to a DNS query, and you want Amazon Route 53 to base the choice in part on the status of a health check. Configuring health checks only makes sense in the following configurations:</p> <ul> <li>You're checking the health of the resource record sets in a weighted, latency, geolocation, or failover resource record set, and you specify health check IDs for all of the resource record sets. If the health check for one resource record set specifies an endpoint that is not healthy, Amazon Route 53 stops responding to queries using the value for that resource record set.</li> <li><p>You set <code>EvaluateTargetHealth</code> to <code>true</code> for the resource record sets in an alias, weighted alias, latency alias, geolocation alias, or failover alias resource record set, and you specify health check IDs for all of the resource record sets that are referenced by the alias resource record sets. For more information about this configuration, see <code>EvaluateTargetHealth</code>.</p> <p>Amazon Route 53 doesn't check the health of the endpoint specified in the resource record set, for example, the endpoint specified by the IP address in the <code>Value</code> element. When you add a <code>HealthCheckId</code> element to a resource record set, Amazon Route 53 checks the health of the endpoint that you specified in the health check.</p> </li> </ul> <p>For geolocation resource record sets, if an endpoint is unhealthy, Amazon Route 53 looks for a resource record set for the larger, associated geographic region. For example, suppose you have resource record sets for a state in the United States, for the United States, for North America, and for all locations. If the endpoint for the state resource record set is unhealthy, Amazon Route 53 checks the resource record sets for the United States, for North America, and for all locations (a resource record set for which the value of CountryCode is <code>*</code>), in that order, until it finds a resource record set for which the endpoint is healthy.</p> <p>If your health checks specify the endpoint only by domain name, we recommend that you create a separate health check for each endpoint. For example, create a health check for each HTTP server that is serving content for www.example.com. For the value of <code>FullyQualifiedDomainName</code>, specify the domain name of the server (such as <code>us-east-1-www.example.com</code>), not the name of the resource record sets (example.com).</p> <important>In this configuration, if you create a health check for which the value of <code>FullyQualifiedDomainName</code> matches the name of the resource record sets and then associate the health check with those resource record sets, health check results will be unpredictable.</important>",
  771. "HealthCheck$Id": "<p>The ID of the specified health check.</p>",
  772. "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>",
  773. "UpdateHealthCheckRequest$HealthCheckId": "<p>The ID of the health check to update.</p>"
  774. }
  775. },
  776. "HealthCheckInUse": {
  777. "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>",
  778. "refs": {
  779. }
  780. },
  781. "HealthCheckNonce": {
  782. "base": null,
  783. "refs": {
  784. "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>",
  785. "HealthCheck$CallerReference": "<p>A unique string that identifies the request to create the health check.</p>"
  786. }
  787. },
  788. "HealthCheckObservation": {
  789. "base": "<p>A complex type that contains the IP address of a Amazon Route 53 health checker and the reason for the health check status.</p>",
  790. "refs": {
  791. "HealthCheckObservations$member": null
  792. }
  793. },
  794. "HealthCheckObservations": {
  795. "base": null,
  796. "refs": {
  797. "GetHealthCheckLastFailureReasonResponse$HealthCheckObservations": "<p>A list that contains one <code>HealthCheckObservation</code> element for each Amazon Route 53 health checker.</p>",
  798. "GetHealthCheckStatusResponse$HealthCheckObservations": "<p>A list that contains one <code>HealthCheckObservation</code> element for each Amazon Route 53 health checker.</p>"
  799. }
  800. },
  801. "HealthCheckRegion": {
  802. "base": "<p>An Amazon EC2 region that you want Amazon Route 53 to use to perform health checks.</p>",
  803. "refs": {
  804. "HealthCheckObservation$Region": "<p>The <code>HealthCheckRegion</code> of the Amazon Route 53 health checker that performed this health check.</p>",
  805. "HealthCheckRegionList$member": null
  806. }
  807. },
  808. "HealthCheckRegionList": {
  809. "base": null,
  810. "refs": {
  811. "HealthCheckConfig$Regions": "<p>A list of <code>HealthCheckRegion</code> values that you want Amazon Route 53 to use to perform health checks for the specified endpoint. You must specify at least three regions.</p>",
  812. "UpdateHealthCheckRequest$Regions": "<p>A list of <code>HealthCheckRegion</code> values that specify the Amazon EC2 regions that you want Amazon Route 53 to use to perform health checks. You must specify at least three regions.</p> <note>When you remove a region from the list, Amazon Route 53 will briefly continue to check your endpoint from that region.</note> <p>Specify this value only if you want to change it.</p>"
  813. }
  814. },
  815. "HealthCheckType": {
  816. "base": null,
  817. "refs": {
  818. "HealthCheckConfig$Type": "<p>The type of health check to be performed. Currently supported types are TCP, HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, CALCULATED and CLOUDWATCH_METRIC.</p>"
  819. }
  820. },
  821. "HealthCheckVersion": {
  822. "base": null,
  823. "refs": {
  824. "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>",
  825. "UpdateHealthCheckRequest$HealthCheckVersion": "<p>Optional. When you specify a health check version, Amazon 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>"
  826. }
  827. },
  828. "HealthCheckVersionMismatch": {
  829. "base": null,
  830. "refs": {
  831. }
  832. },
  833. "HealthChecks": {
  834. "base": null,
  835. "refs": {
  836. "ListHealthChecksResponse$HealthChecks": "<p>A complex type that contains information about the health checks associated with the current AWS account.</p>"
  837. }
  838. },
  839. "HealthThreshold": {
  840. "base": null,
  841. "refs": {
  842. "HealthCheckConfig$HealthThreshold": "<p>The minimum number of child health checks that must be healthy for Amazon Route 53 to consider the parent health check to be healthy. Valid values are integers between 0 and 256, inclusive.</p>",
  843. "UpdateHealthCheckRequest$HealthThreshold": "<p>The minimum number of child health checks that must be healthy for Amazon Route 53 to consider the parent health check to be healthy. Valid values are integers between 0 and 256, inclusive.</p> <p>Specify this value only if you want to change it.</p>"
  844. }
  845. },
  846. "HostedZone": {
  847. "base": "<p>A complex type that contain information about the specified hosted zone.</p>",
  848. "refs": {
  849. "CreateHostedZoneResponse$HostedZone": "<p>A complex type that contains identifying information about the hosted zone.</p>",
  850. "GetHostedZoneResponse$HostedZone": "<p>A complex type that contains the information about the specified hosted zone.</p>",
  851. "HostedZones$member": null,
  852. "UpdateHostedZoneCommentResponse$HostedZone": null
  853. }
  854. },
  855. "HostedZoneAlreadyExists": {
  856. "base": "<p>The hosted zone you are trying to create already exists. Amazon Route 53 returns this error when a hosted zone has already been created with the specified <code>CallerReference</code>.</p>",
  857. "refs": {
  858. }
  859. },
  860. "HostedZoneConfig": {
  861. "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>",
  862. "refs": {
  863. "CreateHostedZoneRequest$HostedZoneConfig": "<p>A complex type that contains an optional comment about your hosted zone.</p>",
  864. "HostedZone$Config": "<p>A complex type that contains the <code>Comment</code> element.</p>"
  865. }
  866. },
  867. "HostedZoneCount": {
  868. "base": null,
  869. "refs": {
  870. "GetHostedZoneCountResponse$HostedZoneCount": "<p>The number of hosted zones associated with the current AWS account.</p>"
  871. }
  872. },
  873. "HostedZoneNotEmpty": {
  874. "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>",
  875. "refs": {
  876. }
  877. },
  878. "HostedZoneNotFound": {
  879. "base": "<p>The specified HostedZone cannot be found.</p>",
  880. "refs": {
  881. }
  882. },
  883. "HostedZoneRRSetCount": {
  884. "base": null,
  885. "refs": {
  886. "HostedZone$ResourceRecordSetCount": "<p>Total number of resource record sets in the hosted zone.</p>"
  887. }
  888. },
  889. "HostedZones": {
  890. "base": null,
  891. "refs": {
  892. "ListHostedZonesByNameResponse$HostedZones": "<p>A complex type that contains information about the hosted zones associated with the current AWS account.</p>",
  893. "ListHostedZonesResponse$HostedZones": "<p>A complex type that contains information about the hosted zones associated with the current AWS account.</p>"
  894. }
  895. },
  896. "IPAddress": {
  897. "base": null,
  898. "refs": {
  899. "HealthCheckConfig$IPAddress": "<p>IP Address of the instance being checked. </p>",
  900. "HealthCheckObservation$IPAddress": "<p>The IP address of the Amazon Route 53 health checker that performed this health check.</p>",
  901. "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>"
  902. }
  903. },
  904. "IPAddressCidr": {
  905. "base": null,
  906. "refs": {
  907. "CheckerIpRanges$member": null
  908. }
  909. },
  910. "IncompatibleVersion": {
  911. "base": "<p>The resource you are trying to access is unsupported on this Amazon Route 53 endpoint. Please consider using a newer endpoint or a tool that does so.</p>",
  912. "refs": {
  913. }
  914. },
  915. "InsufficientDataHealthStatus": {
  916. "base": null,
  917. "refs": {
  918. "HealthCheckConfig$InsufficientDataHealthStatus": "<p>The status of the health check when CloudWatch has insufficient data about the state of associated alarm. Valid values are <code>Healthy</code>, <code>Unhealthy</code> and <code>LastKnownStatus</code>.</p>",
  919. "UpdateHealthCheckRequest$InsufficientDataHealthStatus": null
  920. }
  921. },
  922. "InvalidArgument": {
  923. "base": "<p>At least one of the specified arguments is invalid.</p>",
  924. "refs": {
  925. }
  926. },
  927. "InvalidChangeBatch": {
  928. "base": "<p>This error contains a list of one or more error messages. Each error message indicates one error in the change batch.</p>",
  929. "refs": {
  930. }
  931. },
  932. "InvalidDomainName": {
  933. "base": "<p>This error indicates that the specified domain name is not valid.</p>",
  934. "refs": {
  935. }
  936. },
  937. "InvalidInput": {
  938. "base": "<p>Some value specified in the request is invalid or the XML document is malformed.</p>",
  939. "refs": {
  940. }
  941. },
  942. "InvalidTrafficPolicyDocument": {
  943. "base": "<p>The format of the traffic policy document that you specified in the <code>Document</code> element is invalid.</p>",
  944. "refs": {
  945. }
  946. },
  947. "InvalidVPCId": {
  948. "base": "<p>The hosted zone you are trying to create for your VPC_ID does not belong to you. Amazon Route 53 returns this error when the VPC specified by <code>VPCId</code> does not belong to you.</p>",
  949. "refs": {
  950. }
  951. },
  952. "Inverted": {
  953. "base": null,
  954. "refs": {
  955. "HealthCheckConfig$Inverted": "<p>A boolean value that indicates whether the status of health check should be inverted. For example, if a health check is healthy but <code>Inverted</code> is <code>True</code>, then Amazon Route 53 considers the health check to be unhealthy.</p>",
  956. "UpdateHealthCheckRequest$Inverted": "<p>A boolean value that indicates whether the status of health check should be inverted. For example, if a health check is healthy but <code>Inverted</code> is <code>True</code>, then Amazon Route 53 considers the health check to be unhealthy.</p> <p>Specify this value only if you want to change it.</p>"
  957. }
  958. },
  959. "IsPrivateZone": {
  960. "base": null,
  961. "refs": {
  962. "HostedZoneConfig$PrivateZone": "<p><code>GetHostedZone</code> and <code>ListHostedZone</code> responses: A Boolean value that indicates whether a hosted zone is private.</p> <p><code>CreateHostedZone</code> requests: When you're creating a private hosted zone (when you specify values for VPCId and VPCRegion), you can optionally specify true for PrivateZone. </p>"
  963. }
  964. },
  965. "LastVPCAssociation": {
  966. "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. Amazon Route 53 currently doesn't support disassociate the last VPC from the hosted zone.</p>",
  967. "refs": {
  968. }
  969. },
  970. "LimitsExceeded": {
  971. "base": "<p>The limits specified for a resource have been exceeded.</p>",
  972. "refs": {
  973. }
  974. },
  975. "ListChangeBatchesByHostedZoneRequest": {
  976. "base": "<p>The input for a ListChangeBatchesByHostedZone request.</p>",
  977. "refs": {
  978. }
  979. },
  980. "ListChangeBatchesByHostedZoneResponse": {
  981. "base": "<p>The input for a ListChangeBatchesByHostedZone request.</p>",
  982. "refs": {
  983. }
  984. },
  985. "ListChangeBatchesByRRSetRequest": {
  986. "base": "<p>The input for a ListChangeBatchesByRRSet request.</p>",
  987. "refs": {
  988. }
  989. },
  990. "ListChangeBatchesByRRSetResponse": {
  991. "base": "<p>The input for a ListChangeBatchesByRRSet request.</p>",
  992. "refs": {
  993. }
  994. },
  995. "ListGeoLocationsRequest": {
  996. "base": "<p>The input for a <code>ListGeoLocations</code> request.</p>",
  997. "refs": {
  998. }
  999. },
  1000. "ListGeoLocationsResponse": {
  1001. "base": "<p>A complex type that contains information about the geo locations that are returned by the request and information about the response.</p>",
  1002. "refs": {
  1003. }
  1004. },
  1005. "ListHealthChecksRequest": {
  1006. "base": "<p>To retrieve a list of your health checks, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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> Amazon Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Amazon Route 53 returns only the first 100.</note>",
  1007. "refs": {
  1008. }
  1009. },
  1010. "ListHealthChecksResponse": {
  1011. "base": "<p>A complex type that contains the response for the request.</p>",
  1012. "refs": {
  1013. }
  1014. },
  1015. "ListHostedZonesByNameRequest": {
  1016. "base": "<p>To retrieve a list of your hosted zones in lexicographic order, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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>",
  1017. "refs": {
  1018. }
  1019. },
  1020. "ListHostedZonesByNameResponse": {
  1021. "base": "<p>A complex type that contains the response for the request.</p>",
  1022. "refs": {
  1023. }
  1024. },
  1025. "ListHostedZonesRequest": {
  1026. "base": "<p>To retrieve a list of your hosted zones, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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.</p> <note>Amazon Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Amazon Route 53 returns only the first 100.</note>",
  1027. "refs": {
  1028. }
  1029. },
  1030. "ListHostedZonesResponse": {
  1031. "base": "<p>A complex type that contains the response for the request.</p>",
  1032. "refs": {
  1033. }
  1034. },
  1035. "ListResourceRecordSetsRequest": {
  1036. "base": "<p>The input for a ListResourceRecordSets request.</p>",
  1037. "refs": {
  1038. }
  1039. },
  1040. "ListResourceRecordSetsResponse": {
  1041. "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>",
  1042. "refs": {
  1043. }
  1044. },
  1045. "ListReusableDelegationSetsRequest": {
  1046. "base": "<p>To retrieve a list of your reusable delegation sets, send a <code>GET</code> request to the <code>/<i>Route 53 API version</i>/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> Amazon Route 53 returns a maximum of 100 items. If you set <code>MaxItems</code> to a value greater than 100, Amazon Route 53 returns only the first 100.</note>",
  1047. "refs": {
  1048. }
  1049. },
  1050. "ListReusableDelegationSetsResponse": {
  1051. "base": "<p>A complex type that contains the response for the request.</p>",
  1052. "refs": {
  1053. }
  1054. },
  1055. "ListTagsForResourceRequest": {
  1056. "base": "<p>A complex type containing information about a request for a list of the tags that are associated with an individual resource.</p>",
  1057. "refs": {
  1058. }
  1059. },
  1060. "ListTagsForResourceResponse": {
  1061. "base": "<p>A complex type containing tags for the specified resource.</p>",
  1062. "refs": {
  1063. }
  1064. },
  1065. "ListTagsForResourcesRequest": {
  1066. "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>",
  1067. "refs": {
  1068. }
  1069. },
  1070. "ListTagsForResourcesResponse": {
  1071. "base": "<p>A complex type containing tags for the specified resources.</p>",
  1072. "refs": {
  1073. }
  1074. },
  1075. "ListTrafficPoliciesRequest": {
  1076. "base": "<p>A complex type that contains the information about the request to list the traffic policies that are associated with the current AWS account.</p>",
  1077. "refs": {
  1078. }
  1079. },
  1080. "ListTrafficPoliciesResponse": {
  1081. "base": "<p>A complex type that contains the response information for the request.</p>",
  1082. "refs": {
  1083. }
  1084. },
  1085. "ListTrafficPolicyInstancesByHostedZoneRequest": {
  1086. "base": "<p>A request for the traffic policy instances that you created in a specified hosted zone.</p>",
  1087. "refs": {
  1088. }
  1089. },
  1090. "ListTrafficPolicyInstancesByHostedZoneResponse": {
  1091. "base": "<p>A complex type that contains the response information for the request.</p>",
  1092. "refs": {
  1093. }
  1094. },
  1095. "ListTrafficPolicyInstancesByPolicyRequest": {
  1096. "base": "<p>A complex type that contains the information about the request to list your traffic policy instances.</p>",
  1097. "refs": {
  1098. }
  1099. },
  1100. "ListTrafficPolicyInstancesByPolicyResponse": {
  1101. "base": "<p>A complex type that contains the response information for the request.</p>",
  1102. "refs": {
  1103. }
  1104. },
  1105. "ListTrafficPolicyInstancesRequest": {
  1106. "base": "<p>A complex type that contains the information about the request to list your traffic policy instances.</p>",
  1107. "refs": {
  1108. }
  1109. },
  1110. "ListTrafficPolicyInstancesResponse": {
  1111. "base": "<p>A complex type that contains the response information for the request.</p>",
  1112. "refs": {
  1113. }
  1114. },
  1115. "ListTrafficPolicyVersionsRequest": {
  1116. "base": "<p>A complex type that contains the information about the request to list your traffic policies.</p>",
  1117. "refs": {
  1118. }
  1119. },
  1120. "ListTrafficPolicyVersionsResponse": {
  1121. "base": "<p>A complex type that contains the response information for the request.</p>",
  1122. "refs": {
  1123. }
  1124. },
  1125. "MeasureLatency": {
  1126. "base": null,
  1127. "refs": {
  1128. "HealthCheckConfig$MeasureLatency": "<p>A Boolean value that indicates whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint and to display CloudWatch latency graphs in the Amazon Route 53 console.</p>"
  1129. }
  1130. },
  1131. "Message": {
  1132. "base": null,
  1133. "refs": {
  1134. "TrafficPolicyInstance$Message": null
  1135. }
  1136. },
  1137. "MetricName": {
  1138. "base": null,
  1139. "refs": {
  1140. "CloudWatchAlarmConfiguration$MetricName": "<p>The name of the CloudWatch metric that is associated with the CloudWatch alarm.</p>"
  1141. }
  1142. },
  1143. "Namespace": {
  1144. "base": null,
  1145. "refs": {
  1146. "CloudWatchAlarmConfiguration$Namespace": "<p>The namespace of the CloudWatch metric that is associated with the CloudWatch alarm.</p>"
  1147. }
  1148. },
  1149. "NoSuchChange": {
  1150. "base": null,
  1151. "refs": {
  1152. }
  1153. },
  1154. "NoSuchDelegationSet": {
  1155. "base": "<p>The specified delegation set does not exist.</p>",
  1156. "refs": {
  1157. }
  1158. },
  1159. "NoSuchGeoLocation": {
  1160. "base": "<p>The geo location you are trying to get does not exist.</p>",
  1161. "refs": {
  1162. }
  1163. },
  1164. "NoSuchHealthCheck": {
  1165. "base": "<p>The health check you are trying to get or delete does not exist.</p>",
  1166. "refs": {
  1167. }
  1168. },
  1169. "NoSuchHostedZone": {
  1170. "base": null,
  1171. "refs": {
  1172. }
  1173. },
  1174. "NoSuchTrafficPolicy": {
  1175. "base": "<p>No traffic policy exists with the specified ID.</p>",
  1176. "refs": {
  1177. }
  1178. },
  1179. "NoSuchTrafficPolicyInstance": {
  1180. "base": "<p>No traffic policy instance exists with the specified ID.</p>",
  1181. "refs": {
  1182. }
  1183. },
  1184. "Nonce": {
  1185. "base": null,
  1186. "refs": {
  1187. "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>",
  1188. "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>",
  1189. "DelegationSet$CallerReference": null,
  1190. "HostedZone$CallerReference": "<p>A unique string that identifies the request to create the hosted zone.</p>"
  1191. }
  1192. },
  1193. "PageMarker": {
  1194. "base": null,
  1195. "refs": {
  1196. "ListChangeBatchesByHostedZoneRequest$Marker": "<p>The page marker.</p>",
  1197. "ListChangeBatchesByHostedZoneResponse$Marker": "<p>The page marker.</p>",
  1198. "ListChangeBatchesByHostedZoneResponse$NextMarker": "<p>The next page marker.</p>",
  1199. "ListChangeBatchesByRRSetRequest$Marker": "<p>The page marker.</p>",
  1200. "ListChangeBatchesByRRSetResponse$Marker": "<p>The page marker.</p>",
  1201. "ListChangeBatchesByRRSetResponse$NextMarker": "<p>The next page marker.</p>",
  1202. "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>",
  1203. "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>",
  1204. "ListHealthChecksResponse$NextMarker": "<p>Indicates where to continue listing health checks. If <code>IsTruncated</code> 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>",
  1205. "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>",
  1206. "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>",
  1207. "ListHostedZonesResponse$NextMarker": "<p>Indicates where to continue listing hosted zones. If <code>IsTruncated</code> 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>",
  1208. "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>",
  1209. "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>",
  1210. "ListReusableDelegationSetsResponse$NextMarker": "<p>Indicates where to continue listing reusable delegation sets. If <code>IsTruncated</code> 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 of the previous response to get the next page of results.</p>"
  1211. }
  1212. },
  1213. "PageMaxItems": {
  1214. "base": null,
  1215. "refs": {
  1216. "ListChangeBatchesByHostedZoneRequest$MaxItems": "<p>The maximum number of items on a page.</p>",
  1217. "ListChangeBatchesByHostedZoneResponse$MaxItems": "<p>The maximum number of items on a page.</p>",
  1218. "ListChangeBatchesByRRSetRequest$MaxItems": "<p>The maximum number of items on a page.</p>",
  1219. "ListChangeBatchesByRRSetResponse$MaxItems": "<p>The maximum number of items on a page.</p>",
  1220. "ListGeoLocationsRequest$MaxItems": "<p>The maximum number of geo locations you want in the response body.</p>",
  1221. "ListGeoLocationsResponse$MaxItems": "<p>The maximum number of records you requested. The maximum value of <code>MaxItems</code> is 100.</p>",
  1222. "ListHealthChecksRequest$MaxItems": "<p>Specify the maximum number of health checks to return per page of results.</p>",
  1223. "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 <code>IsTruncated</code> in the response is <code>true</code>. Call <code>ListHealthChecks</code> again and specify the value of <code>NextMarker</code> from the last response in the <code>Marker</code> element of the next request to get the next page of results.</p>",
  1224. "ListHostedZonesByNameRequest$MaxItems": "<p>Specify the maximum number of hosted zones to return per page of results.</p>",
  1225. "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 <code>IsTruncated</code> in the <code>ListHostedZonesByNameResponse</code> is <code>true</code>. Call <code>ListHostedZonesByName</code> again and specify the value of <code>NextDNSName</code> and <code>NextHostedZoneId</code> elements from the previous response to get the next page of results.</p>",
  1226. "ListHostedZonesRequest$MaxItems": "<p>Specify the maximum number of hosted zones to return per page of results.</p>",
  1227. "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 <code>IsTruncated</code> in the response is <code>true</code>. Call <code>ListHostedZones</code> again and specify the value of <code>NextMarker</code> in the <code>Marker</code> parameter to get the next page of results.</p>",
  1228. "ListResourceRecordSetsRequest$MaxItems": "<p>The maximum number of records you want in the response body.</p>",
  1229. "ListResourceRecordSetsResponse$MaxItems": "<p>The maximum number of records you requested. The maximum value of <code>MaxItems</code> is 100.</p>",
  1230. "ListReusableDelegationSetsRequest$MaxItems": "<p>Specify the maximum number of reusable delegation sets to return per page of results.</p>",
  1231. "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 <code>IsTruncated</code> in the response is <code>true</code>. To get the next page of results, call <code>ListReusableDelegationSets</code> again and specify the value of <code>NextMarker</code> from the previous response in the <code>Marker</code> element of the request.</p>",
  1232. "ListTrafficPoliciesRequest$MaxItems": "<p>The maximum number of traffic policies to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policies, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the value of the <code>TrafficPolicyIdMarker</code> element is the ID of the first traffic policy in the next group of <code>MaxItems</code> traffic policies.</p>",
  1233. "ListTrafficPoliciesResponse$MaxItems": "<p>The value that you specified for the <code>MaxItems</code> parameter in the call to <code>ListTrafficPolicies</code> that produced the current response.</p>",
  1234. "ListTrafficPolicyInstancesByHostedZoneRequest$MaxItems": "<p>The maximum number of traffic policy instances to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1235. "ListTrafficPolicyInstancesByHostedZoneResponse$MaxItems": "<p>The value that you specified for the <code>MaxItems</code> parameter in the call to <code>ListTrafficPolicyInstancesByHostedZone</code> that produced the current response. </p>",
  1236. "ListTrafficPolicyInstancesByPolicyRequest$MaxItems": "<p>The maximum number of traffic policy instances to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1237. "ListTrafficPolicyInstancesByPolicyResponse$MaxItems": "<p>The value that you specified for the <code>MaxItems</code> parameter in the call to <code>ListTrafficPolicyInstancesByPolicy</code> that produced the current response.</p>",
  1238. "ListTrafficPolicyInstancesRequest$MaxItems": "<p>The maximum number of traffic policy instances to be included in the response body for this request. If you have more than <code>MaxItems</code> traffic policy instances, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the values of <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> represent the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1239. "ListTrafficPolicyInstancesResponse$MaxItems": "<p>The value that you specified for the <code>MaxItems</code> parameter in the call to <code>ListTrafficPolicyInstances</code> that produced the current response.</p>",
  1240. "ListTrafficPolicyVersionsRequest$MaxItems": "<p>The maximum number of traffic policy versions that you want Amazon Route 53 to include in the response body for this request. If the specified traffic policy has more than <code>MaxItems</code> versions, the value of the <code>IsTruncated</code> element in the response is <code>true</code>, and the value of the <code>TrafficPolicyVersionMarker</code> element is the ID of the first version in the next group of <code>MaxItems</code> traffic policy versions.</p>",
  1241. "ListTrafficPolicyVersionsResponse$MaxItems": "<p>The value that you specified for the <code>maxitems</code> parameter in the call to <code>ListTrafficPolicyVersions</code> that produced the current response.</p>"
  1242. }
  1243. },
  1244. "PageTruncated": {
  1245. "base": null,
  1246. "refs": {
  1247. "ListChangeBatchesByHostedZoneResponse$IsTruncated": "<p>A flag that indicates if there are more change batches to list.</p>",
  1248. "ListChangeBatchesByRRSetResponse$IsTruncated": "<p>A flag that indicates if there are more change batches to list.</p>",
  1249. "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 <code>NextContinentCode</code>, <code>NextCountryCode</code>, and <code>NextSubdivisionCode</code> elements.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1250. "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>",
  1251. "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>",
  1252. "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>",
  1253. "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 <code>NextRecordName</code> element.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1254. "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>",
  1255. "ListTrafficPoliciesResponse$IsTruncated": "<p>A flag that indicates whether there are more traffic policies to be listed. If the response was truncated, you can get the next group of <code>MaxItems</code> traffic policies by calling <code>ListTrafficPolicies</code> again and specifying the value of the <code>TrafficPolicyIdMarker</code> element in the <code>TrafficPolicyIdMarker</code> request parameter.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1256. "ListTrafficPolicyInstancesByHostedZoneResponse$IsTruncated": "<p>A flag that indicates whether there are more traffic policy instances to be listed. If the response was truncated, you can get the next group of <code>MaxItems</code> traffic policy instances by calling <code>ListTrafficPolicyInstancesByHostedZone</code> again and specifying the values of the <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> elements in the corresponding request parameters.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1257. "ListTrafficPolicyInstancesByPolicyResponse$IsTruncated": "<p>A flag that indicates whether there are more traffic policy instances to be listed. If the response was truncated, you can get the next group of <code>MaxItems</code> traffic policy instances by calling <code>ListTrafficPolicyInstancesByPolicy</code> again and specifying the values of the <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> elements in the corresponding request parameters.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1258. "ListTrafficPolicyInstancesResponse$IsTruncated": "<p>A flag that indicates whether there are more traffic policy instances to be listed. If the response was truncated, you can get the next group of <code>MaxItems</code> traffic policy instances by calling <code>ListTrafficPolicyInstances</code> again and specifying the values of the <code>HostedZoneIdMarker</code>, <code>TrafficPolicyInstanceNameMarker</code>, and <code>TrafficPolicyInstanceTypeMarker</code> elements in the corresponding request parameters.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>",
  1259. "ListTrafficPolicyVersionsResponse$IsTruncated": "<p>A flag that indicates whether there are more traffic policies to be listed. If the response was truncated, you can get the next group of <code>maxitems</code> traffic policies by calling <code>ListTrafficPolicyVersions</code> again and specifying the value of the <code>NextMarker</code> element in the marker parameter.</p> <p>Valid Values: <code>true</code> | <code>false</code></p>"
  1260. }
  1261. },
  1262. "Period": {
  1263. "base": null,
  1264. "refs": {
  1265. "CloudWatchAlarmConfiguration$Period": "<p>An integer that represents the period in seconds over which the statistic is applied.</p>"
  1266. }
  1267. },
  1268. "Port": {
  1269. "base": null,
  1270. "refs": {
  1271. "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>",
  1272. "UpdateHealthCheckRequest$Port": "<p>The port on which you want Amazon Route 53 to open a connection to perform health checks.</p> <p>Specify this value only if you want to change it.</p>"
  1273. }
  1274. },
  1275. "PriorRequestNotComplete": {
  1276. "base": "<p>The request was rejected because Amazon Route 53 was still processing a prior request.</p>",
  1277. "refs": {
  1278. }
  1279. },
  1280. "PublicZoneVPCAssociation": {
  1281. "base": "<p>The hosted zone you are trying to associate VPC with doesn't have any VPC association. Amazon Route 53 currently doesn't support associate a VPC with a public hosted zone.</p>",
  1282. "refs": {
  1283. }
  1284. },
  1285. "RData": {
  1286. "base": null,
  1287. "refs": {
  1288. "ResourceRecord$Value": "<p>The current or new DNS record value, not to exceed 4,000 characters. In the case of a <code>DELETE</code> action, if the current value does not match the actual value, an error is returned. For descriptions about how to format <code>Value</code> for different record types, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html\">Supported DNS Resource Record Types</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>You can specify more than one value for all record types except <code>CNAME</code> and <code>SOA</code>. </p>"
  1289. }
  1290. },
  1291. "RRType": {
  1292. "base": null,
  1293. "refs": {
  1294. "ListChangeBatchesByRRSetRequest$Type": "<p>The type of the RRSet that you want to see changes for.</p>",
  1295. "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 <code>InvalidInput</code> error.</p>",
  1296. "ListResourceRecordSetsResponse$NextRecordType": "<p>If the results were truncated, the type of the next record in the list. This element is present only if <code>IsTruncated</code> is true. </p>",
  1297. "ListTrafficPolicyInstancesByHostedZoneRequest$TrafficPolicyInstanceTypeMarker": "<p>For the first request to <code>ListTrafficPolicyInstancesByHostedZone</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get for this hosted zone.</p>",
  1298. "ListTrafficPolicyInstancesByHostedZoneResponse$TrafficPolicyInstanceTypeMarker": "<p>If <code>IsTruncated</code> is true, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1299. "ListTrafficPolicyInstancesByPolicyRequest$TrafficPolicyInstanceTypeMarker": "<p>For the first request to <code>ListTrafficPolicyInstancesByPolicy</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get for this hosted zone.</p>",
  1300. "ListTrafficPolicyInstancesByPolicyResponse$TrafficPolicyInstanceTypeMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1301. "ListTrafficPolicyInstancesRequest$TrafficPolicyInstanceTypeMarker": "<p>For the first request to <code>ListTrafficPolicyInstances</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>",
  1302. "ListTrafficPolicyInstancesResponse$TrafficPolicyInstanceTypeMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyInstanceTypeMarker</code> is the DNS type of the resource record sets that are associated with the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1303. "ResourceRecordSet$Type": "<p>The DNS record type. For information about different record types and how data is encoded for them, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html\">Supported DNS Resource Record Types</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Valid values for basic resource record sets: <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, latency, geolocation, and failover resource record sets: <code>A</code> | <code>AAAA</code> | <code>CNAME</code> | <code>MX</code> | <code>PTR</code> | <code>SPF</code> | <code>SRV</code> | <code>TXT</code>. When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.</p> <note>SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of <code>Type</code> is <code>SPF</code>. RFC 7208, <i>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</i>, has been updated to say, \"...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it.\" In RFC 7208, see section 14.1, <a href=\"http://tools.ietf.org/html/rfc7208#section-14.1\">The SPF DNS Record Type</a>.</note> <p>Values for alias resource record sets:</p> <ul> <li><b>CloudFront distributions:</b> <code>A</code></li> <li><b>ELB load balancers:</b> <code>A</code> | <code>AAAA</code></li> <li><b>Amazon S3 buckets:</b> A</li> <li><b>Another resource record set in this hosted zone:</b> Specify the type of the resource record set for which you're creating the alias. Specify any value except <code>NS</code> or <code>SOA</code>.</li> </ul>",
  1304. "TrafficPolicy$Type": null,
  1305. "TrafficPolicyInstance$TrafficPolicyType": null,
  1306. "TrafficPolicySummary$Type": null
  1307. }
  1308. },
  1309. "RequestInterval": {
  1310. "base": null,
  1311. "refs": {
  1312. "HealthCheckConfig$RequestInterval": "<p>The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health-check request.</p> <p>Each Amazon Route 53 health checker makes requests at this interval. Valid values are 10 and 30. The default value is 30.</p>"
  1313. }
  1314. },
  1315. "ResourceDescription": {
  1316. "base": null,
  1317. "refs": {
  1318. "ChangeBatch$Comment": "<p><i>Optional:</i> Any comments you want to include about a change batch request.</p>",
  1319. "ChangeBatchRecord$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 <code>GetChange</code> action to get detailed information about the change.</p>",
  1320. "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 <code>GetChange</code> action to get detailed information about the change.</p>",
  1321. "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>",
  1322. "UpdateHostedZoneCommentRequest$Comment": "<p>A comment about your hosted zone.</p>"
  1323. }
  1324. },
  1325. "ResourceId": {
  1326. "base": null,
  1327. "refs": {
  1328. "AliasTarget$HostedZoneId": "<p><i>Alias resource record sets only:</i> The value you use depends on where you want to route queries:</p> <ul> <li><b>A CloudFront distribution:</b> Specify <code>Z2FDTNDATAQYW2</code>.</li> <li>An ELB load balancer: Specify the value of the hosted zone ID for the load balancer. You can get the hosted zone ID by using the AWS Management Console, the ELB API, or the AWS CLI. Use the same method to get values for <code>HostedZoneId</code> and <code>DNSName</code>. If you get one value from the console and the other value from the API or the CLI, creating the resource record set will fail.</li> <li><b>An Amazon S3 bucket that is configured as a static website:</b> Specify the hosted zone ID for the Amazon S3 website endpoint in which you created the bucket. For more information about valid values, see the table <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region\">Amazon Simple Storage Service (S3) Website Endpoints</a> in the <i>Amazon Web Services General Reference</i>.</li> <li><b>Another Amazon Route 53 resource record set in your hosted zone:</b> Specify the hosted zone ID of your hosted zone. (An alias resource record set cannot reference a resource record set in a different hosted zone.)</li> </ul>",
  1329. "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>",
  1330. "ChangeBatchRecord$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>",
  1331. "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>",
  1332. "ChangeResourceRecordSetsRequest$HostedZoneId": "<p>The ID of the hosted zone that contains the resource record sets that you want to change.</p>",
  1333. "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>",
  1334. "CreateReusableDelegationSetRequest$HostedZoneId": "<p>The ID of the hosted zone whose delegation set you want to mark as reusable. It is an optional parameter.</p>",
  1335. "CreateTrafficPolicyInstanceRequest$HostedZoneId": "<p>The ID of the hosted zone in which you want Amazon Route 53 to create resource record sets by using the configuration in a traffic policy.</p>",
  1336. "DelegationSet$Id": null,
  1337. "DeleteHostedZoneRequest$Id": "<p>The ID of the hosted zone you want to delete.</p>",
  1338. "DeleteReusableDelegationSetRequest$Id": "<p>The ID of the reusable delegation set you want to delete.</p>",
  1339. "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>",
  1340. "GetChangeDetailsRequest$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>",
  1341. "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>",
  1342. "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>",
  1343. "GetReusableDelegationSetRequest$Id": "<p>The ID of the reusable delegation set for which you want to get a list of the name server.</p>",
  1344. "HostedZone$Id": "<p>The ID of the specified hosted zone.</p>",
  1345. "ListChangeBatchesByHostedZoneRequest$HostedZoneId": "<p>The ID of the hosted zone that you want to see changes for.</p>",
  1346. "ListChangeBatchesByRRSetRequest$HostedZoneId": "<p>The ID of the hosted zone that you want to see changes for.</p>",
  1347. "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>",
  1348. "ListHostedZonesByNameResponse$HostedZoneId": "<p>The <code>HostedZoneId</code> value sent in the request.</p>",
  1349. "ListHostedZonesByNameResponse$NextHostedZoneId": "<p>If the value of <code>IsTruncated</code> in the <code>ListHostedZonesByNameResponse</code> 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 <code>NextDNSName</code> in the <code>DNSName</code> parameter. Specify <code>NextHostedZoneId</code> in the <code>HostedZoneId</code> parameter.</p>",
  1350. "ListHostedZonesRequest$DelegationSetId": null,
  1351. "ListResourceRecordSetsRequest$HostedZoneId": "<p>The ID of the hosted zone that contains the resource record sets that you want to get.</p>",
  1352. "ListTrafficPolicyInstancesByHostedZoneRequest$HostedZoneId": "<p>The ID of the hosted zone for which you want to list traffic policy instances.</p>",
  1353. "ListTrafficPolicyInstancesByPolicyRequest$HostedZoneIdMarker": "<p>For the first request to <code>ListTrafficPolicyInstancesByPolicy</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, <code>HostedZoneIdMarker</code> is the ID of the hosted zone for the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get for this hosted zone.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, omit this value.</p>",
  1354. "ListTrafficPolicyInstancesByPolicyResponse$HostedZoneIdMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>HostedZoneIdMarker</code> is the ID of the hosted zone of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1355. "ListTrafficPolicyInstancesRequest$HostedZoneIdMarker": "<p>For the first request to <code>ListTrafficPolicyInstances</code>, omit this value.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>true</code>, you have more traffic policy instances. To get the next group of <code>MaxItems</code> traffic policy instances, submit another <code>ListTrafficPolicyInstances</code> request. For the value of <code>HostedZoneIdMarker</code>, specify the value of <code>HostedZoneIdMarker</code> from the previous response, which is the hosted zone ID of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p> <p>If the value of <code>IsTruncated</code> in the previous response was <code>false</code>, there are no more traffic policy instances to get.</p>",
  1356. "ListTrafficPolicyInstancesResponse$HostedZoneIdMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, <code>HostedZoneIdMarker</code> is the ID of the hosted zone of the first traffic policy instance in the next group of <code>MaxItems</code> traffic policy instances.</p>",
  1357. "TrafficPolicyInstance$HostedZoneId": null,
  1358. "UpdateHostedZoneCommentRequest$Id": "<p>The ID of the hosted zone you want to update.</p>"
  1359. }
  1360. },
  1361. "ResourcePath": {
  1362. "base": null,
  1363. "refs": {
  1364. "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. The HTTP request is issued to the instance on the given port and path.</p>",
  1365. "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>"
  1366. }
  1367. },
  1368. "ResourceRecord": {
  1369. "base": "<p>A complex type that contains the value of the <code>Value</code> element for the current resource record set.</p>",
  1370. "refs": {
  1371. "ResourceRecords$member": null
  1372. }
  1373. },
  1374. "ResourceRecordSet": {
  1375. "base": "<p>A complex type that contains information about the current resource record set.</p>",
  1376. "refs": {
  1377. "Change$ResourceRecordSet": "<p>Information about the resource record set to create or delete.</p>",
  1378. "ResourceRecordSets$member": null
  1379. }
  1380. },
  1381. "ResourceRecordSetFailover": {
  1382. "base": null,
  1383. "refs": {
  1384. "ResourceRecordSet$Failover": "<p><i>Failover resource record sets only:</i> To configure failover, you add the <code>Failover</code> element to two resource record sets. For one resource record set, you specify <code>PRIMARY</code> as the value for <code>Failover</code>; for the other resource record set, you specify <code>SECONDARY</code>. In addition, you include the <code>HealthCheckId</code> element and specify the health check that you want Amazon Route 53 to perform for each resource record set.</p> <note>You can create failover and failover alias resource record sets only in public hosted zones.</note> <p>Except where noted, the following failover behaviors assume that you have included the <code>HealthCheckId</code> element in both resource record sets:</p> <ul> <li>When the primary resource record set is healthy, Amazon Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.</li> <li>When the primary resource record set is unhealthy and the secondary resource record set is healthy, Amazon Route 53 responds to DNS queries with the applicable value from the secondary resource record set.</li> <li>When the secondary resource record set is unhealthy, Amazon Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.</li> <li>If you omit the <code>HealthCheckId</code> element for the secondary resource record set, and if the primary resource record set is unhealthy, Amazon Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.</li> </ul> <p>You cannot create non-failover resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as failover resource record sets.</p> <p>For failover alias resource record sets, you must also include the <code>EvaluateTargetHealth</code> element and set the value to true.</p> <p>For more information about configuring failover for Amazon Route 53, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html\">Amazon Route 53 Health Checks and DNS Failover</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Valid values: <code>PRIMARY</code> | <code>SECONDARY</code></p>"
  1385. }
  1386. },
  1387. "ResourceRecordSetIdentifier": {
  1388. "base": null,
  1389. "refs": {
  1390. "ListChangeBatchesByRRSetRequest$SetIdentifier": "<p>The identifier of the RRSet that you want to see changes for.</p>",
  1391. "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>NextRecordIdentifier</code> from the previous response to get the next resource record set that has the current DNS name and type.</p>",
  1392. "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>",
  1393. "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. The value of <code>SetIdentifier</code> must be unique for each resource record set that has the same combination of DNS name and type.</p>"
  1394. }
  1395. },
  1396. "ResourceRecordSetRegion": {
  1397. "base": null,
  1398. "refs": {
  1399. "ResourceRecordSet$Region": "<p><i>Latency-based resource record sets only:</i> The Amazon EC2 region where the resource that is specified in this resource record set resides. The resource typically is an AWS resource, such as an Amazon EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.</p> <note>You can create latency and latency alias resource record sets only in public hosted zones.</note> <p>When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Amazon Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 region. Amazon Route 53 then returns the value that is associated with the selected resource record set.</p> <p>Note the following:</p> <ul> <li>You can only specify one <code>ResourceRecord</code> per latency resource record set.</li> <li>You can only create one latency resource record set for each Amazon EC2 region.</li> <li>You are not required to create latency resource record sets for all Amazon EC2 regions. Amazon Route 53 will choose the region with the best latency from among the regions for which you create latency resource record sets.</li> <li>You cannot create non-latency resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as latency resource record sets.</li> </ul>"
  1400. }
  1401. },
  1402. "ResourceRecordSetWeight": {
  1403. "base": null,
  1404. "refs": {
  1405. "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 the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set. Amazon Route 53 calculates the sum of the weights for the resource record sets that have the same combination of DNS name and type. Amazon Route 53 then responds to queries based on the ratio of a resource's weight to the total. Note the following:</p> <ul> <li>You must specify a value for the <code>Weight</code> element for every weighted resource record set.</li> <li>You can only specify one <code>ResourceRecord</code> per weighted resource record set.</li> <li>You cannot create latency, failover, or geolocation resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements as weighted resource record sets.</li> <li>You can create a maximum of 100 weighted resource record sets that have the same values for the <code>Name</code> and <code>Type</code> elements.</li> <li><p>For weighted (but not weighted alias) resource record sets, if you set <code>Weight</code> to <code>0</code> for a resource record set, Amazon Route 53 never responds to queries with the applicable value for that resource record set. However, if you set <code>Weight</code> to <code>0</code> for all resource record sets that have the same combination of DNS name and type, traffic is routed to all resources with equal probability.</p> <p>The effect of setting <code>Weight</code> to <code>0</code> is different when you associate health checks with weighted resource record sets. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html\">Options for Configuring Amazon Route 53 Active-Active and Active-Passive Failover</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> </li> </ul>"
  1406. }
  1407. },
  1408. "ResourceRecordSets": {
  1409. "base": null,
  1410. "refs": {
  1411. "ListResourceRecordSetsResponse$ResourceRecordSets": "<p>A complex type that contains information about the resource record sets that are returned by the request.</p>"
  1412. }
  1413. },
  1414. "ResourceRecords": {
  1415. "base": null,
  1416. "refs": {
  1417. "ResourceRecordSet$ResourceRecords": "<p>A complex type that contains the resource records for the current resource record set.</p>"
  1418. }
  1419. },
  1420. "ResourceTagSet": {
  1421. "base": "<p>A complex type containing a resource and its associated tags.</p>",
  1422. "refs": {
  1423. "ListTagsForResourceResponse$ResourceTagSet": "<p>A <code>ResourceTagSet</code> containing tags associated with the specified resource.</p>",
  1424. "ResourceTagSetList$member": null
  1425. }
  1426. },
  1427. "ResourceTagSetList": {
  1428. "base": null,
  1429. "refs": {
  1430. "ListTagsForResourcesResponse$ResourceTagSets": "<p>A list of <code>ResourceTagSet</code>s containing tags associated with the specified resources.</p>"
  1431. }
  1432. },
  1433. "ResourceURI": {
  1434. "base": null,
  1435. "refs": {
  1436. "CreateHealthCheckResponse$Location": "<p>The unique URL representing the new health check.</p>",
  1437. "CreateHostedZoneResponse$Location": "<p>The unique URL representing the new hosted zone.</p>",
  1438. "CreateReusableDelegationSetResponse$Location": "<p>The unique URL representing the new reusbale delegation set.</p>",
  1439. "CreateTrafficPolicyInstanceResponse$Location": "<p>A unique URL that represents a new traffic policy instance.</p>",
  1440. "CreateTrafficPolicyResponse$Location": null,
  1441. "CreateTrafficPolicyVersionResponse$Location": null
  1442. }
  1443. },
  1444. "SearchString": {
  1445. "base": null,
  1446. "refs": {
  1447. "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. Amazon Route 53 considers case when searching for <code>SearchString</code> in the response body. </p>",
  1448. "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 Amazon Route 53 to search for in the response body from the specified resource. If the string appears in the response body, Amazon Route 53 considers the resource healthy. Amazon Route 53 considers case when searching for <code>SearchString</code> in the response body.</p> <p>Specify this value only if you want to change it.</p>"
  1449. }
  1450. },
  1451. "Statistic": {
  1452. "base": null,
  1453. "refs": {
  1454. "CloudWatchAlarmConfiguration$Statistic": "<p>The statistic to apply to the CloudWatch metric that is associated with the CloudWatch alarm.</p> <p>Valid Values are <code>SampleCount</code>, <code>Average</code>, <code>Sum</code>, <code>Minimum</code> and <code>Maximum</code></p>"
  1455. }
  1456. },
  1457. "Status": {
  1458. "base": null,
  1459. "refs": {
  1460. "StatusReport$Status": "<p>The observed health check status.</p>"
  1461. }
  1462. },
  1463. "StatusReport": {
  1464. "base": "<p>A complex type that contains information about the health check status for the current observation.</p>",
  1465. "refs": {
  1466. "HealthCheckObservation$StatusReport": "<p>A complex type that contains information about the health check status for the current observation.</p>"
  1467. }
  1468. },
  1469. "TTL": {
  1470. "base": null,
  1471. "refs": {
  1472. "CreateTrafficPolicyInstanceRequest$TTL": "<p>The TTL that you want Amazon Route 53 to assign to all of the resource record sets that it creates in the specified hosted zone.</p>",
  1473. "ResourceRecordSet$TTL": "<p>The cache time to live for the current resource record set. Note the following:</p> <ul> <li>If you're creating a non-alias resource record set, <code>TTL</code> is required. </li> <li>If you're creating an alias resource record set, omit <code>TTL</code>. Amazon Route 53 uses the value of <code>TTL</code> for the alias target. </li> <li>If you're associating this resource record set with a health check (if you're adding a <code>HealthCheckId</code> element), we recommend that you specify a <code>TTL</code> of 60 seconds or less so clients respond quickly to changes in health status.</li> <li>All of the resource record sets in a group of weighted, latency, geolocation, or failover resource record sets must have the same value for <code>TTL</code>.</li> <li>If a group of weighted resource record sets includes one or more weighted alias resource record sets for which the alias target is an ELB load balancer, we recommend that you specify a <code>TTL</code> of 60 seconds for all of the non-alias weighted resource record sets that have the same name and type. Values other than 60 seconds (the TTL for load balancers) will change the effect of the values that you specify for <code>Weight</code>.</li> </ul>",
  1474. "TrafficPolicyInstance$TTL": null,
  1475. "UpdateTrafficPolicyInstanceRequest$TTL": "<p>The TTL that you want Amazon Route 53 to assign to all of the updated resource record sets.</p>"
  1476. }
  1477. },
  1478. "Tag": {
  1479. "base": "<p>A single tag containing a key and value.</p>",
  1480. "refs": {
  1481. "TagList$member": null
  1482. }
  1483. },
  1484. "TagKey": {
  1485. "base": null,
  1486. "refs": {
  1487. "Tag$Key": "<p>The key for a <code>Tag</code>.</p>",
  1488. "TagKeyList$member": null
  1489. }
  1490. },
  1491. "TagKeyList": {
  1492. "base": null,
  1493. "refs": {
  1494. "ChangeTagsForResourceRequest$RemoveTagKeys": "<p>A list of <code>Tag</code> keys that you want to remove from the specified resource.</p>"
  1495. }
  1496. },
  1497. "TagList": {
  1498. "base": null,
  1499. "refs": {
  1500. "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>",
  1501. "ResourceTagSet$Tags": "<p>The tags associated with the specified resource.</p>"
  1502. }
  1503. },
  1504. "TagResourceId": {
  1505. "base": null,
  1506. "refs": {
  1507. "ChangeTagsForResourceRequest$ResourceId": "<p>The ID of the resource for which you want to add, change, or delete tags.</p>",
  1508. "ListTagsForResourceRequest$ResourceId": "<p>The ID of the resource for which you want to retrieve tags.</p>",
  1509. "ResourceTagSet$ResourceId": "<p>The ID for the specified resource.</p>",
  1510. "TagResourceIdList$member": null
  1511. }
  1512. },
  1513. "TagResourceIdList": {
  1514. "base": null,
  1515. "refs": {
  1516. "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>"
  1517. }
  1518. },
  1519. "TagResourceType": {
  1520. "base": null,
  1521. "refs": {
  1522. "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>",
  1523. "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>",
  1524. "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>",
  1525. "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>"
  1526. }
  1527. },
  1528. "TagValue": {
  1529. "base": null,
  1530. "refs": {
  1531. "Tag$Value": "<p>The value for a <code>Tag</code>.</p>"
  1532. }
  1533. },
  1534. "Threshold": {
  1535. "base": null,
  1536. "refs": {
  1537. "CloudWatchAlarmConfiguration$Threshold": "<p>The value that the metric is compared with to determine the state of the alarm. For example, if you want the health check to fail if the average TCP connection time is greater than 500 milliseconds for more than 60 seconds, the threshold is 500.</p>"
  1538. }
  1539. },
  1540. "ThrottlingException": {
  1541. "base": null,
  1542. "refs": {
  1543. }
  1544. },
  1545. "TimeStamp": {
  1546. "base": null,
  1547. "refs": {
  1548. "ChangeBatchRecord$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).</p>",
  1549. "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).</p>",
  1550. "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).</p>"
  1551. }
  1552. },
  1553. "TooManyHealthChecks": {
  1554. "base": null,
  1555. "refs": {
  1556. }
  1557. },
  1558. "TooManyHostedZones": {
  1559. "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>",
  1560. "refs": {
  1561. }
  1562. },
  1563. "TooManyTrafficPolicies": {
  1564. "base": "<p>You've created the maximum number of traffic policies 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>",
  1565. "refs": {
  1566. }
  1567. },
  1568. "TooManyTrafficPolicyInstances": {
  1569. "base": "<p>You've created the maximum number of traffic policy instances 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>",
  1570. "refs": {
  1571. }
  1572. },
  1573. "TrafficPolicies": {
  1574. "base": null,
  1575. "refs": {
  1576. "ListTrafficPolicyVersionsResponse$TrafficPolicies": "<p>A list that contains one <code>TrafficPolicy</code> element for each traffic policy version that is associated with the specified traffic policy.</p>"
  1577. }
  1578. },
  1579. "TrafficPolicy": {
  1580. "base": null,
  1581. "refs": {
  1582. "CreateTrafficPolicyResponse$TrafficPolicy": "<p>A complex type that contains settings for the new traffic policy.</p>",
  1583. "CreateTrafficPolicyVersionResponse$TrafficPolicy": "<p>A complex type that contains settings for the new version of the traffic policy.</p>",
  1584. "GetTrafficPolicyResponse$TrafficPolicy": "<p>A complex type that contains settings for the specified traffic policy.</p>",
  1585. "TrafficPolicies$member": null,
  1586. "UpdateTrafficPolicyCommentResponse$TrafficPolicy": "<p>A complex type that contains settings for the specified traffic policy.</p>"
  1587. }
  1588. },
  1589. "TrafficPolicyAlreadyExists": {
  1590. "base": "<p>A traffic policy that has the same value for <code>Name</code> already exists.</p>",
  1591. "refs": {
  1592. }
  1593. },
  1594. "TrafficPolicyComment": {
  1595. "base": null,
  1596. "refs": {
  1597. "CreateTrafficPolicyRequest$Comment": "<p>Any comments that you want to include about the traffic policy.</p>",
  1598. "CreateTrafficPolicyVersionRequest$Comment": "<p>Any comments that you want to include about the new traffic policy version.</p>",
  1599. "TrafficPolicy$Comment": null,
  1600. "UpdateTrafficPolicyCommentRequest$Comment": "<p>The new comment for the specified traffic policy and version.</p>"
  1601. }
  1602. },
  1603. "TrafficPolicyDocument": {
  1604. "base": null,
  1605. "refs": {
  1606. "CreateTrafficPolicyRequest$Document": "<p>The definition of this traffic policy in JSON format. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html\">Traffic Policy Document Format</a> in the <i>Amazon Route 53 API Reference</i>.</p>",
  1607. "CreateTrafficPolicyVersionRequest$Document": "<p>The definition of a new traffic policy version, in JSON format. You must specify the full definition of the new traffic policy. You cannot specify just the differences between the new version and a previous version. For more information, see <a href=\"http://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html\">Traffic Policy Document Format</a> in the <i>Amazon Route 53 API Reference</i>.</p>",
  1608. "TrafficPolicy$Document": null
  1609. }
  1610. },
  1611. "TrafficPolicyId": {
  1612. "base": null,
  1613. "refs": {
  1614. "CreateTrafficPolicyInstanceRequest$TrafficPolicyId": "<p>The ID of the traffic policy that you want to use to create resource record sets in the specified hosted zone.</p>",
  1615. "CreateTrafficPolicyVersionRequest$Id": "<p>The ID of the traffic policy for which you want to create a new version.</p>",
  1616. "DeleteTrafficPolicyRequest$Id": "<p>The ID of the traffic policy that you want to delete.</p>",
  1617. "GetTrafficPolicyRequest$Id": "<p>The ID of the traffic policy that you want to get information about.</p>",
  1618. "ListTrafficPoliciesRequest$TrafficPolicyIdMarker": "<p>For your first request to <code>ListTrafficPolicies</code>, do not include the <code>TrafficPolicyIdMarker</code> parameter.</p> <p>If you have more traffic policies than the value of <code>MaxItems</code>, <code>ListTrafficPolicies</code> returns only the first <code>MaxItems</code> traffic policies. To get the next group of <code>MaxItems</code> policies, submit another request to <code>ListTrafficPolicies</code>. For the value of <code>TrafficPolicyIdMarker</code>, specify the value of the <code>TrafficPolicyIdMarker</code> element that was returned in the previous response.</p> <p>Policies are listed in the order in which they were created.</p>",
  1619. "ListTrafficPoliciesResponse$TrafficPolicyIdMarker": "<p>If the value of <code>IsTruncated</code> is <code>true</code>, <code>TrafficPolicyIdMarker</code> is the ID of the first traffic policy in the next group of <code>MaxItems</code> traffic policies.</p>",
  1620. "ListTrafficPolicyInstancesByPolicyRequest$TrafficPolicyId": "<p>The ID of the traffic policy for which you want to list traffic policy instances.</p>",
  1621. "ListTrafficPolicyVersionsRequest$Id": "<p>Specify the value of <code>Id</code> of the traffic policy for which you want to list all versions.</p>",
  1622. "TrafficPolicy$Id": null,
  1623. "TrafficPolicyInstance$TrafficPolicyId": null,
  1624. "TrafficPolicySummary$Id": null,
  1625. "UpdateTrafficPolicyCommentRequest$Id": "<p>The value of <code>Id</code> for the traffic policy for which you want to update the comment.</p>",
  1626. "UpdateTrafficPolicyInstanceRequest$TrafficPolicyId": "<p>The ID of the traffic policy that you want Amazon Route 53 to use to update resource record sets for the specified traffic policy instance.</p>"
  1627. }
  1628. },
  1629. "TrafficPolicyInUse": {
  1630. "base": "<p>One or more traffic policy instances were created by using the specified traffic policy.</p>",
  1631. "refs": {
  1632. }
  1633. },
  1634. "TrafficPolicyInstance": {
  1635. "base": null,
  1636. "refs": {
  1637. "CreateTrafficPolicyInstanceResponse$TrafficPolicyInstance": "<p>A complex type that contains settings for the new traffic policy instance.</p>",
  1638. "GetTrafficPolicyInstanceResponse$TrafficPolicyInstance": "<p>A complex type that contains settings for the traffic policy instance.</p>",
  1639. "TrafficPolicyInstances$member": null,
  1640. "UpdateTrafficPolicyInstanceResponse$TrafficPolicyInstance": "<p>A complex type that contains settings for the updated traffic policy instance.</p>"
  1641. }
  1642. },
  1643. "TrafficPolicyInstanceAlreadyExists": {
  1644. "base": "<p>Traffic policy instance with given Id already exists.</p>",
  1645. "refs": {
  1646. }
  1647. },
  1648. "TrafficPolicyInstanceCount": {
  1649. "base": null,
  1650. "refs": {
  1651. "GetTrafficPolicyInstanceCountResponse$TrafficPolicyInstanceCount": "<p>The number of traffic policy instances that are associated with the current AWS account.</p>"
  1652. }
  1653. },
  1654. "TrafficPolicyInstanceId": {
  1655. "base": null,
  1656. "refs": {
  1657. "DeleteTrafficPolicyInstanceRequest$Id": "<p>The ID of the traffic policy instance that you want to delete. </p> <important>When you delete a traffic policy instance, Amazon Route 53 also deletes all of the resource record sets that were created when you created the traffic policy instance.</important>",
  1658. "GetTrafficPolicyInstanceRequest$Id": "<p>The ID of the traffic policy instance that you want to get information about.</p>",
  1659. "ResourceRecordSet$TrafficPolicyInstanceId": null,
  1660. "TrafficPolicyInstance$Id": null,
  1661. "UpdateTrafficPolicyInstanceRequest$Id": "<p>The ID of the traffic policy instance that you want to update.</p>"
  1662. }
  1663. },
  1664. "TrafficPolicyInstanceState": {
  1665. "base": null,
  1666. "refs": {
  1667. "TrafficPolicyInstance$State": null
  1668. }
  1669. },
  1670. "TrafficPolicyInstances": {
  1671. "base": null,
  1672. "refs": {
  1673. "ListTrafficPolicyInstancesByHostedZoneResponse$TrafficPolicyInstances": "<p>A list that contains one <code>TrafficPolicyInstance</code> element for each traffic policy instance that matches the elements in the request. </p>",
  1674. "ListTrafficPolicyInstancesByPolicyResponse$TrafficPolicyInstances": "<p>A list that contains one <code>TrafficPolicyInstance</code> element for each traffic policy instance that matches the elements in the request.</p>",
  1675. "ListTrafficPolicyInstancesResponse$TrafficPolicyInstances": "<p>A list that contains one <code>TrafficPolicyInstance</code> element for each traffic policy instance that matches the elements in the request.</p>"
  1676. }
  1677. },
  1678. "TrafficPolicyName": {
  1679. "base": null,
  1680. "refs": {
  1681. "CreateTrafficPolicyRequest$Name": "<p>The name of the traffic policy.</p>",
  1682. "TrafficPolicy$Name": null,
  1683. "TrafficPolicySummary$Name": null
  1684. }
  1685. },
  1686. "TrafficPolicySummaries": {
  1687. "base": null,
  1688. "refs": {
  1689. "ListTrafficPoliciesResponse$TrafficPolicySummaries": "<p>A list that contains one <code>TrafficPolicySummary</code> element for each traffic policy that was created by the current AWS account.</p>"
  1690. }
  1691. },
  1692. "TrafficPolicySummary": {
  1693. "base": null,
  1694. "refs": {
  1695. "TrafficPolicySummaries$member": null
  1696. }
  1697. },
  1698. "TrafficPolicyVersion": {
  1699. "base": null,
  1700. "refs": {
  1701. "CreateTrafficPolicyInstanceRequest$TrafficPolicyVersion": "<p>The version of the traffic policy that you want to use to create resource record sets in the specified hosted zone.</p>",
  1702. "DeleteTrafficPolicyRequest$Version": "<p>The version number of the traffic policy that you want to delete.</p>",
  1703. "GetTrafficPolicyRequest$Version": "<p>The version number of the traffic policy that you want to get information about.</p>",
  1704. "ListTrafficPolicyInstancesByPolicyRequest$TrafficPolicyVersion": "<p>The version of the traffic policy for which you want to list traffic policy instances. The version must be associated with the traffic policy that is specified by <code>TrafficPolicyId</code>.</p>",
  1705. "TrafficPolicy$Version": null,
  1706. "TrafficPolicyInstance$TrafficPolicyVersion": null,
  1707. "TrafficPolicySummary$LatestVersion": null,
  1708. "TrafficPolicySummary$TrafficPolicyCount": null,
  1709. "UpdateTrafficPolicyCommentRequest$Version": "<p>The value of <code>Version</code> for the traffic policy for which you want to update the comment.</p>",
  1710. "UpdateTrafficPolicyInstanceRequest$TrafficPolicyVersion": "<p>The version of the traffic policy that you want Amazon Route 53 to use to update resource record sets for the specified traffic policy instance.</p>"
  1711. }
  1712. },
  1713. "TrafficPolicyVersionMarker": {
  1714. "base": null,
  1715. "refs": {
  1716. "ListTrafficPolicyVersionsRequest$TrafficPolicyVersionMarker": "<p>For your first request to <code>ListTrafficPolicyVersions</code>, do not include the <code>TrafficPolicyVersionMarker</code> parameter.</p> <p>If you have more traffic policy versions than the value of <code>MaxItems</code>, <code>ListTrafficPolicyVersions</code> returns only the first group of <code>MaxItems</code> versions. To get the next group of <code>MaxItems</code> traffic policy versions, submit another request to <code>ListTrafficPolicyVersions</code>. For the value of <code>TrafficPolicyVersionMarker</code>, specify the value of the <code>TrafficPolicyVersionMarker</code> element that was returned in the previous response.</p> <p>Traffic policy versions are listed in sequential order.</p>",
  1717. "ListTrafficPolicyVersionsResponse$TrafficPolicyVersionMarker": "<p>If <code>IsTruncated</code> is <code>true</code>, the value of <code>TrafficPolicyVersionMarker</code> identifies the first traffic policy in the next group of <code>MaxItems</code> traffic policies. Call <code>ListTrafficPolicyVersions</code> again and specify the value of <code>TrafficPolicyVersionMarker</code> in the <code>TrafficPolicyVersionMarker</code> request parameter.</p> <p>This element is present only if <code>IsTruncated</code> is <code>true</code>.</p>"
  1718. }
  1719. },
  1720. "UpdateHealthCheckRequest": {
  1721. "base": "<p>>A complex type that contains information about the request to update a health check.</p>",
  1722. "refs": {
  1723. }
  1724. },
  1725. "UpdateHealthCheckResponse": {
  1726. "base": null,
  1727. "refs": {
  1728. }
  1729. },
  1730. "UpdateHostedZoneCommentRequest": {
  1731. "base": "<p>A complex type that contains information about the request to update a hosted zone comment.</p>",
  1732. "refs": {
  1733. }
  1734. },
  1735. "UpdateHostedZoneCommentResponse": {
  1736. "base": "<p>A complex type containing information about the specified hosted zone after the update.</p>",
  1737. "refs": {
  1738. }
  1739. },
  1740. "UpdateTrafficPolicyCommentRequest": {
  1741. "base": "<p>A complex type that contains information about the traffic policy for which you want to update the comment.</p>",
  1742. "refs": {
  1743. }
  1744. },
  1745. "UpdateTrafficPolicyCommentResponse": {
  1746. "base": "<p>A complex type that contains the response information for the traffic policy.</p>",
  1747. "refs": {
  1748. }
  1749. },
  1750. "UpdateTrafficPolicyInstanceRequest": {
  1751. "base": "<p>A complex type that contains information about the resource record sets that you want to update based on a specified traffic policy instance.</p>",
  1752. "refs": {
  1753. }
  1754. },
  1755. "UpdateTrafficPolicyInstanceResponse": {
  1756. "base": "<p>A complex type that contains information about the resource record sets that Amazon Route 53 created based on a specified traffic policy.</p>",
  1757. "refs": {
  1758. }
  1759. },
  1760. "VPC": {
  1761. "base": null,
  1762. "refs": {
  1763. "AssociateVPCWithHostedZoneRequest$VPC": "<p>The VPC that you want your hosted zone to be associated with. </p>",
  1764. "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>",
  1765. "CreateHostedZoneResponse$VPC": null,
  1766. "DisassociateVPCFromHostedZoneRequest$VPC": "<p>The VPC that you want your hosted zone to be disassociated from. </p>",
  1767. "VPCs$member": null
  1768. }
  1769. },
  1770. "VPCAssociationNotFound": {
  1771. "base": "<p>The VPC you specified is not currently associated with the hosted zone.</p>",
  1772. "refs": {
  1773. }
  1774. },
  1775. "VPCId": {
  1776. "base": "<p>A VPC ID</p>",
  1777. "refs": {
  1778. "VPC$VPCId": null
  1779. }
  1780. },
  1781. "VPCRegion": {
  1782. "base": null,
  1783. "refs": {
  1784. "VPC$VPCRegion": null
  1785. }
  1786. },
  1787. "VPCs": {
  1788. "base": "<p>A list of VPCs</p>",
  1789. "refs": {
  1790. "GetHostedZoneResponse$VPCs": "<p>A complex type that contains information about VPCs associated with the specified hosted zone.</p>"
  1791. }
  1792. }
  1793. }
  1794. }