aws-sdk-route53 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bb729787a0ba10ef5756946160586656f05441e7
4
- data.tar.gz: a853a8f42f6e64a672cc0f67c11107f1def638c9
3
+ metadata.gz: 47149bee03ee463cf0ba96c37c022fa279dd46a4
4
+ data.tar.gz: 5ba92d2899ef7a8350fa42d14226e03047bc4e48
5
5
  SHA512:
6
- metadata.gz: 2c21053a377a7cb23517e3c0844725531a3ee2c523292ed33f03f9f030bb85fe54bf89698755b6af496f70e1ea8508bff71eb421b030b657464ccb53570dbbdf
7
- data.tar.gz: d66bf838bc1e16fce741b0d581db8c78fd269cbfec95ab677f01f9a163bc3eedcf6ffc3364d1ebbe340efcf859d047dfa493a33b2c161ecadb5d5ccfa2b7cd21
6
+ metadata.gz: 440c2a42bb88c25e3fbe285138ac1831123a8f66e554c906523cbb12295adb24dfad180bd745d311eed59809b04f81bf6110e5beaee423d2a632a071309ee81e
7
+ data.tar.gz: 6fb8487d3f7e1d7957ad55709be99827d8edf4b5639cdd3ba76199f03fddd59b953057bf17303ea40d9d6648fc1f477561446e5f23e2e21bc00ed1eb3ec5b1bd
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-route53/customizations'
43
43
  # @service
44
44
  module Aws::Route53
45
45
 
46
- GEM_VERSION = '1.21.0'
46
+ GEM_VERSION = '1.22.0'
47
47
 
48
48
  end
@@ -201,6 +201,49 @@ module Aws::Route53
201
201
  # When `true`, request parameters are validated before
202
202
  # sending the request.
203
203
  #
204
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
205
+ # requests through. Formatted like 'http://proxy.com:123'.
206
+ #
207
+ # @option options [Float] :http_open_timeout (15) The number of
208
+ # seconds to wait when opening a HTTP session before rasing a
209
+ # `Timeout::Error`.
210
+ #
211
+ # @option options [Integer] :http_read_timeout (60) The default
212
+ # number of seconds to wait for response data. This value can
213
+ # safely be set
214
+ # per-request on the session yeidled by {#session_for}.
215
+ #
216
+ # @option options [Float] :http_idle_timeout (5) The number of
217
+ # seconds a connection is allowed to sit idble before it is
218
+ # considered stale. Stale connections are closed and removed
219
+ # from the pool before making a request.
220
+ #
221
+ # @option options [Float] :http_continue_timeout (1) The number of
222
+ # seconds to wait for a 100-continue response before sending the
223
+ # request body. This option has no effect unless the request has
224
+ # "Expect" header set to "100-continue". Defaults to `nil` which
225
+ # disables this behaviour. This value can safely be set per
226
+ # request on the session yeidled by {#session_for}.
227
+ #
228
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
229
+ # HTTP debug output will be sent to the `:logger`.
230
+ #
231
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
232
+ # SSL peer certificates are verified when establishing a
233
+ # connection.
234
+ #
235
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
236
+ # certificate authority bundle file that should be used when
237
+ # verifying peer certificates. If you do not pass
238
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
239
+ # will be used if available.
240
+ #
241
+ # @option options [String] :ssl_ca_directory Full path of the
242
+ # directory that contains the unbundled SSL certificate
243
+ # authority files for verifying peer certificates. If you do
244
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
245
+ # system default will be used if available.
246
+ #
204
247
  def initialize(*args)
205
248
  super
206
249
  end
@@ -269,7 +312,7 @@ module Aws::Route53
269
312
  # resp = client.associate_vpc_with_hosted_zone({
270
313
  # hosted_zone_id: "ResourceId", # required
271
314
  # vpc: { # required
272
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
315
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
273
316
  # vpc_id: "VPCId",
274
317
  # },
275
318
  # comment: "AssociateVPCComment",
@@ -370,17 +413,18 @@ module Aws::Route53
370
413
  # servers. While your changes are propagating, `GetChange` returns a
371
414
  # status of `PENDING`. When propagation is complete, `GetChange` returns
372
415
  # a status of `INSYNC`. Changes generally propagate to all Route 53 name
373
- # servers within 60 seconds. For more information, see GetChange.
416
+ # servers within 60 seconds. For more information, see [GetChange][2].
374
417
  #
375
418
  # **Limits on ChangeResourceRecordSets Requests**
376
419
  #
377
420
  # For information about the limits on a `ChangeResourceRecordSets`
378
- # request, see [Limits][2] in the *Amazon Route 53 Developer Guide*.
421
+ # request, see [Limits][3] in the *Amazon Route 53 Developer Guide*.
379
422
  #
380
423
  #
381
424
  #
382
425
  # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
383
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
426
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
427
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
384
428
  #
385
429
  # @option params [required, String] :hosted_zone_id
386
430
  # The ID of the hosted zone that contains the resource record sets that
@@ -992,7 +1036,7 @@ module Aws::Route53
992
1036
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
993
1037
  # set_identifier: "ResourceRecordSetIdentifier",
994
1038
  # weight: 1,
995
- # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-south-1
1039
+ # region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, ap-south-1
996
1040
  # geo_location: {
997
1041
  # continent_code: "GeoLocationContinentCode",
998
1042
  # country_code: "GeoLocationCountryCode",
@@ -1043,7 +1087,7 @@ module Aws::Route53
1043
1087
  #
1044
1088
  #
1045
1089
  #
1046
- # [1]: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
1090
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
1047
1091
  #
1048
1092
  # @option params [required, String] :resource_type
1049
1093
  # The type of the resource.
@@ -1123,7 +1167,7 @@ module Aws::Route53
1123
1167
  # Creates a new health check.
1124
1168
  #
1125
1169
  # For information about adding health checks to resource record sets,
1126
- # see ResourceRecordSet$HealthCheckId in ChangeResourceRecordSets.
1170
+ # see [HealthCheckId][1] in [ChangeResourceRecordSets][2].
1127
1171
  #
1128
1172
  # **ELB Load Balancers**
1129
1173
  #
@@ -1153,11 +1197,13 @@ module Aws::Route53
1153
1197
  # an alarm to the metric, and then create a health check that is based
1154
1198
  # on the state of the alarm. For information about creating CloudWatch
1155
1199
  # metrics and alarms by using the CloudWatch console, see the [Amazon
1156
- # CloudWatch User Guide][1].
1200
+ # CloudWatch User Guide][3].
1157
1201
  #
1158
1202
  #
1159
1203
  #
1160
- # [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1204
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId
1205
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html
1206
+ # [3]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1161
1207
  #
1162
1208
  # @option params [required, String] :caller_reference
1163
1209
  # A unique string that identifies the request and that allows you to
@@ -1211,7 +1257,7 @@ module Aws::Route53
1211
1257
  # enable_sni: false,
1212
1258
  # regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
1213
1259
  # alarm_identifier: {
1214
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
1260
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
1215
1261
  # name: "AlarmName", # required
1216
1262
  # },
1217
1263
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -1241,7 +1287,7 @@ module Aws::Route53
1241
1287
  # resp.health_check.health_check_config.enable_sni #=> Boolean
1242
1288
  # resp.health_check.health_check_config.regions #=> Array
1243
1289
  # resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
1244
- # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1"
1290
+ # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
1245
1291
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
1246
1292
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
1247
1293
  # resp.health_check.health_check_version #=> Integer
@@ -1333,7 +1379,11 @@ module Aws::Route53
1333
1379
  #
1334
1380
  # You can specify only one Amazon VPC when you create a private hosted
1335
1381
  # zone. To associate additional Amazon VPCs with the hosted zone, use
1336
- # AssociateVPCWithHostedZone after you create a hosted zone.
1382
+ # [AssociateVPCWithHostedZone][1] after you create a hosted zone.
1383
+ #
1384
+ #
1385
+ #
1386
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_AssociateVPCWithHostedZone.html
1337
1387
  #
1338
1388
  # @option params [required, String] :caller_reference
1339
1389
  # A unique string that identifies the request and that allows failed
@@ -1357,7 +1407,11 @@ module Aws::Route53
1357
1407
  # If you want to associate a reusable delegation set with this hosted
1358
1408
  # zone, the ID that Amazon Route 53 assigned to the reusable delegation
1359
1409
  # set when you created it. For more information about reusable
1360
- # delegation sets, see CreateReusableDelegationSet.
1410
+ # delegation sets, see [CreateReusableDelegationSet][1].
1411
+ #
1412
+ #
1413
+ #
1414
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html
1361
1415
  #
1362
1416
  # @return [Types::CreateHostedZoneResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1363
1417
  #
@@ -1372,7 +1426,7 @@ module Aws::Route53
1372
1426
  # resp = client.create_hosted_zone({
1373
1427
  # name: "DNSName", # required
1374
1428
  # vpc: {
1375
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
1429
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
1376
1430
  # vpc_id: "VPCId",
1377
1431
  # },
1378
1432
  # caller_reference: "Nonce", # required
@@ -1401,7 +1455,7 @@ module Aws::Route53
1401
1455
  # resp.delegation_set.caller_reference #=> String
1402
1456
  # resp.delegation_set.name_servers #=> Array
1403
1457
  # resp.delegation_set.name_servers[0] #=> String
1404
- # resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
1458
+ # resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
1405
1459
  # resp.vpc.vpc_id #=> String
1406
1460
  # resp.location #=> String
1407
1461
  #
@@ -1531,14 +1585,15 @@ module Aws::Route53
1531
1585
  #
1532
1586
  # : If you want Route 53 to stop sending query logs to CloudWatch Logs,
1533
1587
  # delete the query logging configuration. For more information, see
1534
- # DeleteQueryLoggingConfig.
1588
+ # [DeleteQueryLoggingConfig][5].
1535
1589
  #
1536
1590
  #
1537
1591
  #
1538
1592
  # [1]: http://aws.amazon.com/route53/details/
1539
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html
1540
- # [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
1593
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html
1594
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
1541
1595
  # [4]: http://aws.amazon.com/cloudwatch/pricing/
1596
+ # [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html
1542
1597
  #
1543
1598
  # @option params [required, String] :hosted_zone_id
1544
1599
  # The ID of the hosted zone that you want to log queries for. You can
@@ -1556,8 +1611,8 @@ module Aws::Route53
1556
1611
  #
1557
1612
  #
1558
1613
  #
1559
- # [1]: http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html
1560
- # [2]: http://docs.aws.amazon.com/cli/latest/reference/logs/describe-log-groups.html
1614
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html
1615
+ # [2]: https://docs.aws.amazon.com/cli/latest/reference/logs/describe-log-groups.html
1561
1616
  #
1562
1617
  # @return [Types::CreateQueryLoggingConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1563
1618
  #
@@ -1695,7 +1750,7 @@ module Aws::Route53
1695
1750
  #
1696
1751
  #
1697
1752
  #
1698
- # [1]: http://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html
1753
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html
1699
1754
  #
1700
1755
  # @option params [String] :comment
1701
1756
  # (Optional) Any comments that you want to include about the traffic
@@ -1817,7 +1872,12 @@ module Aws::Route53
1817
1872
  # @option params [required, String] :document
1818
1873
  # The definition of this version of the traffic policy, in JSON format.
1819
1874
  # You specified the JSON in the `CreateTrafficPolicyVersion` request.
1820
- # For more information about the JSON format, see CreateTrafficPolicy.
1875
+ # For more information about the JSON format, see
1876
+ # [CreateTrafficPolicy][1].
1877
+ #
1878
+ #
1879
+ #
1880
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html
1821
1881
  #
1822
1882
  # @option params [String] :comment
1823
1883
  # The comment that you specified in the `CreateTrafficPolicyVersion`
@@ -1887,7 +1947,7 @@ module Aws::Route53
1887
1947
  # resp = client.create_vpc_association_authorization({
1888
1948
  # hosted_zone_id: "ResourceId", # required
1889
1949
  # vpc: { # required
1890
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
1950
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
1891
1951
  # vpc_id: "VPCId",
1892
1952
  # },
1893
1953
  # })
@@ -1895,7 +1955,7 @@ module Aws::Route53
1895
1955
  # @example Response structure
1896
1956
  #
1897
1957
  # resp.hosted_zone_id #=> String
1898
- # resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
1958
+ # resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
1899
1959
  # resp.vpc.vpc_id #=> String
1900
1960
  #
1901
1961
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
@@ -1944,20 +2004,36 @@ module Aws::Route53
1944
2004
 
1945
2005
  # Deletes a hosted zone.
1946
2006
  #
1947
- # If the name servers for the hosted zone are associated with a domain
1948
- # and if you want to make the domain unavailable on the Internet, we
1949
- # recommend that you delete the name servers from the domain to prevent
1950
- # future DNS queries from possibly being misrouted. If the domain is
1951
- # registered with Amazon Route 53, see `UpdateDomainNameservers`. If the
1952
- # domain is registered with another registrar, use the method provided
1953
- # by the registrar to delete name servers for the domain.
1954
- #
1955
- # Some domain registries don't allow you to remove all of the name
1956
- # servers for a domain. If the registry for your domain requires one or
1957
- # more name servers, we recommend that you delete the hosted zone only
1958
- # if you transfer DNS service to another service provider, and you
1959
- # replace the name servers for the domain with name servers from the new
1960
- # provider.
2007
+ # If the hosted zone was created by another service, such as AWS Cloud
2008
+ # Map, see [Deleting Public Hosted Zones That Were Created by Another
2009
+ # Service][1] in the *Amazon Route 53 Developer Guide* for information
2010
+ # about how to delete it. (The process is the same for public and
2011
+ # private hosted zones that were created by another service.)
2012
+ #
2013
+ # If you want to keep your domain registration but you want to stop
2014
+ # routing internet traffic to your website or web application, we
2015
+ # recommend that you delete resource record sets in the hosted zone
2016
+ # instead of deleting the hosted zone.
2017
+ #
2018
+ # If you delete a hosted zone, you can't undelete it. You must create a
2019
+ # new hosted zone and update the name servers for your domain
2020
+ # registration, which can require up to 48 hours to take effect. (If you
2021
+ # delegated responsibility for a subdomain to a hosted zone and you
2022
+ # delete the child hosted zone, you must update the name servers in the
2023
+ # parent hosted zone.) In addition, if you delete a hosted zone, someone
2024
+ # could hijack the domain and route traffic to their own resources using
2025
+ # your domain name.
2026
+ #
2027
+ # If you want to avoid the monthly charge for the hosted zone, you can
2028
+ # transfer DNS service for the domain to a free DNS service. When you
2029
+ # transfer DNS service, you have to update the name servers for the
2030
+ # domain registration. If the domain is registered with Route 53, see
2031
+ # [UpdateDomainNameservers][2] for information about how to replace
2032
+ # Route 53 name servers with name servers for the new DNS service. If
2033
+ # the domain is registered with another registrar, use the method
2034
+ # provided by the registrar to update name servers for the domain
2035
+ # registration. For more information, perform an internet search on
2036
+ # "free DNS service."
1961
2037
  #
1962
2038
  # You can delete a hosted zone only if it contains only the default SOA
1963
2039
  # record and NS resource record sets. If the hosted zone contains other
@@ -1965,7 +2041,7 @@ module Aws::Route53
1965
2041
  # hosted zone. If you try to delete a hosted zone that contains other
1966
2042
  # resource record sets, the request fails, and Route 53 returns a
1967
2043
  # `HostedZoneNotEmpty` error. For information about deleting records
1968
- # from your hosted zone, see ChangeResourceRecordSets.
2044
+ # from your hosted zone, see [ChangeResourceRecordSets][3].
1969
2045
  #
1970
2046
  # To verify that the hosted zone has been deleted, do one of the
1971
2047
  # following:
@@ -1976,6 +2052,12 @@ module Aws::Route53
1976
2052
  # * Use the `ListHostedZones` action to get a list of the hosted zones
1977
2053
  # associated with the current AWS account.
1978
2054
  #
2055
+ #
2056
+ #
2057
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeleteHostedZone.html#delete-public-hosted-zone-created-by-another-service
2058
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_UpdateDomainNameservers.html
2059
+ # [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html
2060
+ #
1979
2061
  # @option params [required, String] :id
1980
2062
  # The ID of the hosted zone you want to delete.
1981
2063
  #
@@ -2011,7 +2093,11 @@ module Aws::Route53
2011
2093
  # Logs.
2012
2094
  #
2013
2095
  # For more information about DNS query logs, see
2014
- # CreateQueryLoggingConfig.
2096
+ # [CreateQueryLoggingConfig][1].
2097
+ #
2098
+ #
2099
+ #
2100
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html
2015
2101
  #
2016
2102
  # @option params [required, String] :id
2017
2103
  # The ID of the configuration that you want to delete.
@@ -2039,8 +2125,12 @@ module Aws::Route53
2039
2125
  # with any hosted zones.
2040
2126
  #
2041
2127
  # To verify that the reusable delegation set is not associated with any
2042
- # hosted zones, submit a GetReusableDelegationSet request and specify
2043
- # the ID of the reusable delegation set that you want to delete.
2128
+ # hosted zones, submit a [GetReusableDelegationSet][1] request and
2129
+ # specify the ID of the reusable delegation set that you want to delete.
2130
+ #
2131
+ #
2132
+ #
2133
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetReusableDelegationSet.html
2044
2134
  #
2045
2135
  # @option params [required, String] :id
2046
2136
  # The ID of the reusable delegation set that you want to delete.
@@ -2150,7 +2240,7 @@ module Aws::Route53
2150
2240
  # resp = client.delete_vpc_association_authorization({
2151
2241
  # hosted_zone_id: "ResourceId", # required
2152
2242
  # vpc: { # required
2153
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
2243
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
2154
2244
  # vpc_id: "VPCId",
2155
2245
  # },
2156
2246
  # })
@@ -2195,7 +2285,7 @@ module Aws::Route53
2195
2285
  # resp = client.disassociate_vpc_from_hosted_zone({
2196
2286
  # hosted_zone_id: "ResourceId", # required
2197
2287
  # vpc: { # required
2198
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
2288
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
2199
2289
  # vpc_id: "VPCId",
2200
2290
  # },
2201
2291
  # comment: "DisassociateVPCComment",
@@ -2223,10 +2313,18 @@ module Aws::Route53
2223
2313
  # For the default limit, see [Limits][1] in the *Amazon Route 53
2224
2314
  # Developer Guide*. To request a higher limit, [open a case][2].
2225
2315
  #
2316
+ # <note markdown="1"> You can also view account limits in AWS Trusted Advisor. Sign in to
2317
+ # the AWS Management Console and open the Trusted Advisor console at
2318
+ # [https://console.aws.amazon.com/trustedadvisor/][3]. Then choose
2319
+ # **Service limits** in the navigation pane.
2320
+ #
2321
+ # </note>
2322
+ #
2226
2323
  #
2227
2324
  #
2228
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2325
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2229
2326
  # [2]: https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53
2327
+ # [3]: https://console.aws.amazon.com/trustedadvisor
2230
2328
  #
2231
2329
  # @option params [required, String] :type
2232
2330
  # The limit that you want to get. Valid values include the following:
@@ -2469,7 +2567,7 @@ module Aws::Route53
2469
2567
  # resp.health_check.health_check_config.enable_sni #=> Boolean
2470
2568
  # resp.health_check.health_check_config.regions #=> Array
2471
2569
  # resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
2472
- # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1"
2570
+ # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
2473
2571
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
2474
2572
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
2475
2573
  # resp.health_check.health_check_version #=> Integer
@@ -2658,7 +2756,7 @@ module Aws::Route53
2658
2756
  # resp.delegation_set.name_servers #=> Array
2659
2757
  # resp.delegation_set.name_servers[0] #=> String
2660
2758
  # resp.vp_cs #=> Array
2661
- # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
2759
+ # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
2662
2760
  # resp.vp_cs[0].vpc_id #=> String
2663
2761
  #
2664
2762
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
@@ -2698,7 +2796,7 @@ module Aws::Route53
2698
2796
  #
2699
2797
  #
2700
2798
  #
2701
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2799
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2702
2800
  # [2]: https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53
2703
2801
  #
2704
2802
  # @option params [required, String] :type
@@ -2744,11 +2842,12 @@ module Aws::Route53
2744
2842
  # logging.
2745
2843
  #
2746
2844
  # For more information about DNS query logs, see
2747
- # CreateQueryLoggingConfig and [Logging DNS Queries][1].
2845
+ # [CreateQueryLoggingConfig][1] and [Logging DNS Queries][2].
2748
2846
  #
2749
2847
  #
2750
2848
  #
2751
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
2849
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html
2850
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
2752
2851
  #
2753
2852
  # @option params [required, String] :id
2754
2853
  # The ID of the configuration for DNS query logging that you want to get
@@ -2821,7 +2920,7 @@ module Aws::Route53
2821
2920
  #
2822
2921
  #
2823
2922
  #
2824
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2923
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
2825
2924
  # [2]: https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-route53
2826
2925
  #
2827
2926
  # @option params [required, String] :type
@@ -3121,7 +3220,7 @@ module Aws::Route53
3121
3220
  # resp.health_checks[0].health_check_config.enable_sni #=> Boolean
3122
3221
  # resp.health_checks[0].health_check_config.regions #=> Array
3123
3222
  # resp.health_checks[0].health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
3124
- # resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1"
3223
+ # resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
3125
3224
  # resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
3126
3225
  # resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
3127
3226
  # resp.health_checks[0].health_check_version #=> Integer
@@ -3360,13 +3459,14 @@ module Aws::Route53
3360
3459
  # with a specified hosted zone.
3361
3460
  #
3362
3461
  # For more information about DNS query logs, see
3363
- # CreateQueryLoggingConfig. Additional information, including the format
3364
- # of DNS query logs, appears in [Logging DNS Queries][1] in the *Amazon
3365
- # Route 53 Developer Guide*.
3462
+ # [CreateQueryLoggingConfig][1]. Additional information, including the
3463
+ # format of DNS query logs, appears in [Logging DNS Queries][2] in the
3464
+ # *Amazon Route 53 Developer Guide*.
3366
3465
  #
3367
3466
  #
3368
3467
  #
3369
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
3468
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateQueryLoggingConfig.html
3469
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
3370
3470
  #
3371
3471
  # @option params [String] :hosted_zone_id
3372
3472
  # (Optional) If you want to list the query logging configuration that is
@@ -3391,12 +3491,16 @@ module Aws::Route53
3391
3491
  # (Optional) The maximum number of query logging configurations that you
3392
3492
  # want Amazon Route 53 to return in response to the current request. If
3393
3493
  # the current AWS account has more than `MaxResults` configurations, use
3394
- # the value of ListQueryLoggingConfigsResponse$NextToken in the response
3395
- # to get the next page of results.
3494
+ # the value of [NextToken][1] in the response to get the next page of
3495
+ # results.
3396
3496
  #
3397
3497
  # If you don't specify a value for `MaxResults`, Route 53 returns up to
3398
3498
  # 100 configurations.
3399
3499
  #
3500
+ #
3501
+ #
3502
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListQueryLoggingConfigs.html#API_ListQueryLoggingConfigs_RequestSyntax
3503
+ #
3400
3504
  # @return [Types::ListQueryLoggingConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3401
3505
  #
3402
3506
  # * {Types::ListQueryLoggingConfigsResponse#query_logging_configs #query_logging_configs} => Array&lt;Types::QueryLoggingConfig&gt;
@@ -3518,15 +3622,19 @@ module Aws::Route53
3518
3622
  #
3519
3623
  # Values for alias resource record sets:
3520
3624
  #
3625
+ # * **API Gateway custom regional API or edge-optimized API**\: A
3626
+ #
3521
3627
  # * **CloudFront distribution**\: A or AAAA
3522
3628
  #
3523
3629
  # * **Elastic Beanstalk environment that has a regionalized
3524
3630
  # subdomain**\: A
3525
3631
  #
3526
- # * **ELB load balancer**\: A \| AAAA
3632
+ # * **Elastic Load Balancing load balancer**\: A \| AAAA
3527
3633
  #
3528
3634
  # * **Amazon S3 bucket**\: A
3529
3635
  #
3636
+ # * **Amazon VPC interface VPC endpoint**\: A
3637
+ #
3530
3638
  # * **Another resource record set in this hosted zone:** The type of the
3531
3639
  # resource record set that the alias references.
3532
3640
  #
@@ -3574,7 +3682,7 @@ module Aws::Route53
3574
3682
  # resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
3575
3683
  # resp.resource_record_sets[0].set_identifier #=> String
3576
3684
  # resp.resource_record_sets[0].weight #=> Integer
3577
- # resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-south-1"
3685
+ # resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "ap-south-1"
3578
3686
  # resp.resource_record_sets[0].geo_location.continent_code #=> String
3579
3687
  # resp.resource_record_sets[0].geo_location.country_code #=> String
3580
3688
  # resp.resource_record_sets[0].geo_location.subdivision_code #=> String
@@ -3668,7 +3776,7 @@ module Aws::Route53
3668
3776
  #
3669
3777
  #
3670
3778
  #
3671
- # [1]: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
3779
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
3672
3780
  #
3673
3781
  # @option params [required, String] :resource_type
3674
3782
  # The type of the resource.
@@ -3716,7 +3824,7 @@ module Aws::Route53
3716
3824
  #
3717
3825
  #
3718
3826
  #
3719
- # [1]: http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
3827
+ # [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
3720
3828
  #
3721
3829
  # @option params [required, String] :resource_type
3722
3830
  # The type of the resources.
@@ -4247,7 +4355,7 @@ module Aws::Route53
4247
4355
  # resp.hosted_zone_id #=> String
4248
4356
  # resp.next_token #=> String
4249
4357
  # resp.vp_cs #=> Array
4250
- # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
4358
+ # resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1"
4251
4359
  # resp.vp_cs[0].vpc_id #=> String
4252
4360
  #
4253
4361
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
@@ -4414,27 +4522,27 @@ module Aws::Route53
4414
4522
  #
4415
4523
  # </note>
4416
4524
  #
4417
- # For more information, see
4418
- # UpdateHealthCheckRequest$FullyQualifiedDomainName.
4525
+ # For more information, see [FullyQualifiedDomainName][3].
4419
4526
  #
4420
4527
  # Constraints: Route 53 can't check the health of endpoints for which
4421
4528
  # the IP address is in local, private, non-routable, or multicast
4422
4529
  # ranges. For more information about IP addresses for which you can't
4423
4530
  # create health checks, see the following documents:
4424
4531
  #
4425
- # * [RFC 5735, Special Use IPv4 Addresses][3]
4532
+ # * [RFC 5735, Special Use IPv4 Addresses][4]
4426
4533
  #
4427
- # * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][4]
4534
+ # * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][5]
4428
4535
  #
4429
- # * [RFC 5156, Special-Use IPv6 Addresses][5]
4536
+ # * [RFC 5156, Special-Use IPv6 Addresses][6]
4430
4537
  #
4431
4538
  #
4432
4539
  #
4433
- # [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
4434
- # [2]: http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-ip-addresses-eip.html
4435
- # [3]: https://tools.ietf.org/html/rfc5735
4436
- # [4]: https://tools.ietf.org/html/rfc6598
4437
- # [5]: https://tools.ietf.org/html/rfc5156
4540
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
4541
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-ip-addresses-eip.html
4542
+ # [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName
4543
+ # [4]: https://tools.ietf.org/html/rfc5735
4544
+ # [5]: https://tools.ietf.org/html/rfc6598
4545
+ # [6]: https://tools.ietf.org/html/rfc5156
4438
4546
  #
4439
4547
  # @option params [Integer] :port
4440
4548
  # The port on the endpoint on which you want Amazon Route 53 to perform
@@ -4567,14 +4675,15 @@ module Aws::Route53
4567
4675
  # health check to always be healthy. If you configured DNS failover,
4568
4676
  # Route 53 continues to route traffic to the corresponding resources. If
4569
4677
  # you want to stop routing traffic to a resource, change the value of
4570
- # UpdateHealthCheckRequest$Inverted.
4678
+ # [Inverted][1].
4571
4679
  #
4572
4680
  # Charges for a health check still apply when the health check is
4573
- # disabled. For more information, see [Amazon Route 53 Pricing][1].
4681
+ # disabled. For more information, see [Amazon Route 53 Pricing][2].
4574
4682
  #
4575
4683
  #
4576
4684
  #
4577
- # [1]: http://aws.amazon.com/route53/pricing/
4685
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-Inverted
4686
+ # [2]: http://aws.amazon.com/route53/pricing/
4578
4687
  #
4579
4688
  # @option params [Integer] :health_threshold
4580
4689
  # The number of child health checks that are associated with a
@@ -4651,17 +4760,23 @@ module Aws::Route53
4651
4760
  # each element that you want to reset to the default value. Valid values
4652
4761
  # for `ResettableElementName` include the following:
4653
4762
  #
4654
- # * `ChildHealthChecks`\: Amazon Route 53 resets
4655
- # HealthCheckConfig$ChildHealthChecks to null.
4763
+ # * `ChildHealthChecks`\: Amazon Route 53 resets [ChildHealthChecks][1]
4764
+ # to null.
4656
4765
  #
4657
4766
  # * `FullyQualifiedDomainName`\: Route 53 resets
4658
- # HealthCheckConfig$FullyQualifiedDomainName to null.
4767
+ # [FullyQualifiedDomainName][2]. to null.
4768
+ #
4769
+ # * `Regions`\: Route 53 resets the [Regions][3] list to the default set
4770
+ # of regions.
4771
+ #
4772
+ # * `ResourcePath`\: Route 53 resets [ResourcePath][4] to null.
4773
+ #
4659
4774
  #
4660
- # * `Regions`\: Route 53 resets the HealthCheckConfig$Regions list to
4661
- # the default set of regions.
4662
4775
  #
4663
- # * `ResourcePath`\: Route 53 resets HealthCheckConfig$ResourcePath to
4664
- # null.
4776
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ChildHealthChecks
4777
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName
4778
+ # [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-Regions
4779
+ # [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ResourcePath
4665
4780
  #
4666
4781
  # @return [Types::UpdateHealthCheckResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4667
4782
  #
@@ -4685,7 +4800,7 @@ module Aws::Route53
4685
4800
  # enable_sni: false,
4686
4801
  # regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
4687
4802
  # alarm_identifier: {
4688
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
4803
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
4689
4804
  # name: "AlarmName", # required
4690
4805
  # },
4691
4806
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -4715,7 +4830,7 @@ module Aws::Route53
4715
4830
  # resp.health_check.health_check_config.enable_sni #=> Boolean
4716
4831
  # resp.health_check.health_check_config.regions #=> Array
4717
4832
  # resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
4718
- # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1"
4833
+ # resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
4719
4834
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
4720
4835
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
4721
4836
  # resp.health_check.health_check_version #=> Integer
@@ -4907,7 +5022,7 @@ module Aws::Route53
4907
5022
  params: params,
4908
5023
  config: config)
4909
5024
  context[:gem_name] = 'aws-sdk-route53'
4910
- context[:gem_version] = '1.21.0'
5025
+ context[:gem_version] = '1.22.0'
4911
5026
  Seahorse::Client::Request.new(handlers, context)
4912
5027
  end
4913
5028