aws-sdk-route53 1.31.0 → 1.36.1

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
- SHA1:
3
- metadata.gz: 0c35d1a5e4b65cfc647b8f426bb0ca07f8c2446d
4
- data.tar.gz: a9bee2f0b9c9105e6d1955e4a6219c7e5f1dcd05
2
+ SHA256:
3
+ metadata.gz: 3ad98904479e11ccb039b64948d37725f5771d9340906afb170d0a4d5369c383
4
+ data.tar.gz: d036bb37ee3c17048170de65c489d18788946c1f275183743235497a730ea788
5
5
  SHA512:
6
- metadata.gz: 5252939d4f2f83d801921762c82441ca5c0a77b8912e09e72769ec82a51d0a277187b399b05050388432b15532b633e08566ceece740ea505ecccb1e9b020b51
7
- data.tar.gz: a1652387b534b70d28704780ea78388428f9b868d06a2d32e5632969a4f956c58b342515bdb9e892d013daf32c98a9eebcc9cb2be757d69fcde321c17c8d05fd
6
+ metadata.gz: 9a3096cea8bda299f04bfd6352bd8dab7635b1affc8eeb6739024cc80f168ac11e7d8ad479a91f5c317417c39949a1ec6a555c3e16254664a427660e28bb1400
7
+ data.tar.gz: 10b444da2695627651f80a7f3229726c1b2c39de11a9bc6b9ca7d4a520eb9d11a5204690ac3ee9f80e7410ce4522481422ac8fdd3aceddff3fc886e08b00b108
@@ -46,6 +46,6 @@ require_relative 'aws-sdk-route53/customizations'
46
46
  # @service
47
47
  module Aws::Route53
48
48
 
49
- GEM_VERSION = '1.31.0'
49
+ GEM_VERSION = '1.36.1'
50
50
 
51
51
  end
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
29
30
  require 'aws-sdk-route53/plugins/id_fix.rb'
@@ -33,11 +34,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:route53)
33
34
  module Aws::Route53
34
35
  # An API client for Route53. To construct a client, you need to configure a `:region` and `:credentials`.
35
36
  #
36
- # client = Aws::Route53::Client.new(
37
- # region: region_name,
38
- # credentials: credentials,
39
- # # ...
40
- # )
37
+ # client = Aws::Route53::Client.new(
38
+ # region: region_name,
39
+ # credentials: credentials,
40
+ # # ...
41
+ # )
41
42
  #
42
43
  # For details on configuring region and credentials see
43
44
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -70,6 +71,7 @@ module Aws::Route53
70
71
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
71
72
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
72
73
  add_plugin(Aws::Plugins::TransferEncoding)
74
+ add_plugin(Aws::Plugins::HttpChecksum)
73
75
  add_plugin(Aws::Plugins::SignatureV4)
74
76
  add_plugin(Aws::Plugins::Protocols::RestXml)
75
77
  add_plugin(Aws::Route53::Plugins::IdFix)
@@ -107,7 +109,7 @@ module Aws::Route53
107
109
  # @option options [required, String] :region
108
110
  # The AWS region to connect to. The configured `:region` is
109
111
  # used to determine the service `:endpoint`. When not passed,
110
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
111
113
  #
112
114
  # * `Aws.config[:region]`
113
115
  # * `ENV['AWS_REGION']`
@@ -163,7 +165,7 @@ module Aws::Route53
163
165
  # @option options [String] :endpoint
164
166
  # The client endpoint is normally constructed from the `:region`
165
167
  # option. You should only configure an `:endpoint` when connecting
166
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
167
169
  #
168
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
169
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -178,7 +180,7 @@ module Aws::Route53
178
180
  # requests fetching endpoints information. Defaults to 60 sec.
179
181
  #
180
182
  # @option options [Boolean] :endpoint_discovery (false)
181
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
182
184
  #
183
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
184
186
  # The log formatter.
@@ -231,15 +233,19 @@ module Aws::Route53
231
233
  #
232
234
  # @option options [String] :retry_mode ("legacy")
233
235
  # Specifies which retry algorithm to use. Values are:
234
- # * `legacy` - The pre-existing retry behavior. This is default value if
235
- # no retry mode is provided.
236
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
- # This includes support for retry quotas, which limit the number of
238
- # unsuccessful retries a client can make.
239
- # * `adaptive` - An experimental retry mode that includes all the
240
- # functionality of `standard` mode along with automatic client side
241
- # throttling. This is a provisional mode that may change behavior
242
- # in the future.
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
243
249
  #
244
250
  # @option options [String] :secret_access_key
245
251
  #
@@ -267,8 +273,7 @@ module Aws::Route53
267
273
  #
268
274
  # @option options [Integer] :http_read_timeout (60) The default
269
275
  # number of seconds to wait for response data. This value can
270
- # safely be set
271
- # per-request on the session yielded by {#session_for}.
276
+ # safely be set per-request on the session.
272
277
  #
273
278
  # @option options [Float] :http_idle_timeout (5) The number of
274
279
  # seconds a connection is allowed to sit idle before it is
@@ -280,7 +285,7 @@ module Aws::Route53
280
285
  # request body. This option has no effect unless the request has
281
286
  # "Expect" header set to "100-continue". Defaults to `nil` which
282
287
  # disables this behaviour. This value can safely be set per
283
- # request on the session yielded by {#session_for}.
288
+ # request on the session.
284
289
  #
285
290
  # @option options [Boolean] :http_wire_trace (false) When `true`,
286
291
  # HTTP debug output will be sent to the `:logger`.
@@ -309,19 +314,31 @@ module Aws::Route53
309
314
 
310
315
  # Associates an Amazon VPC with a private hosted zone.
311
316
  #
312
- # To perform the association, the VPC and the private hosted zone must
313
- # already exist. You can't convert a public hosted zone into a private
314
- # hosted zone.
315
- #
316
- # <note markdown="1"> If you want to associate a VPC that was created by using one AWS
317
- # account with a private hosted zone that was created by using a
318
- # different account, the AWS account that created the private hosted
319
- # zone must first submit a `CreateVPCAssociationAuthorization` request.
320
- # Then the account that created the VPC must submit an
321
- # `AssociateVPCWithHostedZone` request.
317
+ # <note markdown="1"> To perform the association, the VPC and the private hosted zone must
318
+ # already exist. Also, you can't convert a public hosted zone into a
319
+ # private hosted zone.
322
320
  #
323
321
  # </note>
324
322
  #
323
+ # If you want to associate a VPC that was created by one AWS account
324
+ # with a private hosted zone that was created by a different account, do
325
+ # one of the following:
326
+ #
327
+ # * Use the AWS account that created the private hosted zone to submit a
328
+ # [CreateVPCAssociationAuthorization][1] request. Then use the account
329
+ # that created the VPC to submit an `AssociateVPCWithHostedZone`
330
+ # request.
331
+ #
332
+ # * If a subnet in the VPC was shared with another account, you can use
333
+ # the account that the subnet was shared with to submit an
334
+ # `AssociateVPCWithHostedZone` request. For more information about
335
+ # sharing subnets, see [Working with Shared VPCs][2].
336
+ #
337
+ #
338
+ #
339
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
340
+ # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
341
+ #
325
342
  # @option params [required, String] :hosted_zone_id
326
343
  # The ID of the private hosted zone that you want to associate an Amazon
327
344
  # VPC with.
@@ -369,7 +386,7 @@ module Aws::Route53
369
386
  # resp = client.associate_vpc_with_hosted_zone({
370
387
  # hosted_zone_id: "ResourceId", # required
371
388
  # vpc: { # required
372
- # 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, me-south-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
389
+ # 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, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-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, af-south-1, eu-south-1
373
390
  # vpc_id: "VPCId",
374
391
  # },
375
392
  # comment: "AssociateVPCComment",
@@ -397,29 +414,35 @@ module Aws::Route53
397
414
  # resource record set that routes traffic for test.example.com to a web
398
415
  # server that has an IP address of 192.0.2.44.
399
416
  #
417
+ # **Deleting Resource Record Sets**
418
+ #
419
+ # To delete a resource record set, you must specify all the same values
420
+ # that you specified when you created it.
421
+ #
400
422
  # **Change Batches and Transactional Changes**
401
423
  #
402
424
  # The request body must include a document with a
403
425
  # `ChangeResourceRecordSetsRequest` element. The request body contains a
404
426
  # list of change items, known as a change batch. Change batches are
405
- # considered transactional changes. When using the Amazon Route 53 API
406
- # to change resource record sets, Route 53 either makes all or none of
407
- # the changes in a change batch request. This ensures that Route 53
408
- # never partially implements the intended changes to the resource record
409
- # sets in a hosted zone.
410
- #
411
- # For example, a change batch request that deletes the `CNAME` record
412
- # for www.example.com and creates an alias resource record set for
413
- # www.example.com. Route 53 deletes the first resource record set and
414
- # creates the second resource record set in a single operation. If
415
- # either the `DELETE` or the `CREATE` action fails, then both changes
416
- # (plus any other changes in the batch) fail, and the original `CNAME`
417
- # record continues to exist.
418
- #
419
- # Due to the nature of transactional changes, you can't delete the same
420
- # resource record set more than once in a single change batch. If you
421
- # attempt to delete the same change batch more than once, Route 53
422
- # returns an `InvalidChangeBatch` error.
427
+ # considered transactional changes. Route 53 validates the changes in
428
+ # the request and then either makes all or none of the changes in the
429
+ # change batch request. This ensures that DNS routing isn't adversely
430
+ # affected by partial changes to the resource record sets in a hosted
431
+ # zone.
432
+ #
433
+ # For example, suppose a change batch request contains two changes: it
434
+ # deletes the `CNAME` resource record set for www.example.com and
435
+ # creates an alias resource record set for www.example.com. If
436
+ # validation for both records succeeds, Route 53 deletes the first
437
+ # resource record set and creates the second resource record set in a
438
+ # single operation. If validation for either the `DELETE` or the
439
+ # `CREATE` action fails, then the request is canceled, and the original
440
+ # `CNAME` record continues to exist.
441
+ #
442
+ # <note markdown="1"> If you try to delete the same resource record set more than once in a
443
+ # single change batch, Route 53 returns an `InvalidChangeBatch` error.
444
+ #
445
+ # </note>
423
446
  #
424
447
  # **Traffic Flow**
425
448
  #
@@ -479,7 +502,7 @@ module Aws::Route53
479
502
  #
480
503
  #
481
504
  #
482
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
505
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
483
506
  # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
484
507
  # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
485
508
  #
@@ -1093,7 +1116,7 @@ module Aws::Route53
1093
1116
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
1094
1117
  # set_identifier: "ResourceRecordSetIdentifier",
1095
1118
  # weight: 1,
1096
- # 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, me-south-1, ap-south-1
1119
+ # 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, me-south-1, ap-south-1, af-south-1, eu-south-1
1097
1120
  # geo_location: {
1098
1121
  # continent_code: "GeoLocationContinentCode",
1099
1122
  # country_code: "GeoLocationCountryCode",
@@ -1260,7 +1283,7 @@ module Aws::Route53
1260
1283
  #
1261
1284
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId
1262
1285
  # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html
1263
- # [3]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1286
+ # [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1264
1287
  #
1265
1288
  # @option params [required, String] :caller_reference
1266
1289
  # A unique string that identifies the request and that allows you to
@@ -1314,7 +1337,7 @@ module Aws::Route53
1314
1337
  # enable_sni: false,
1315
1338
  # 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
1316
1339
  # alarm_identifier: {
1317
- # 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, me-south-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
1340
+ # 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, me-south-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, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
1318
1341
  # name: "AlarmName", # required
1319
1342
  # },
1320
1343
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -1344,7 +1367,7 @@ module Aws::Route53
1344
1367
  # resp.health_check.health_check_config.enable_sni #=> Boolean
1345
1368
  # resp.health_check.health_check_config.regions #=> Array
1346
1369
  # 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"
1347
- # 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", "me-south-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"
1370
+ # 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", "me-south-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", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
1348
1371
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
1349
1372
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
1350
1373
  # resp.health_check.health_check_version #=> Integer
@@ -1389,11 +1412,11 @@ module Aws::Route53
1389
1412
  # * You can't create a hosted zone for a top-level domain (TLD) such as
1390
1413
  # .com.
1391
1414
  #
1392
- # * For public hosted zones, Amazon Route 53 automatically creates a
1393
- # default SOA record and four NS records for the zone. For more
1394
- # information about SOA and NS records, see [NS and SOA Records that
1395
- # Route 53 Creates for a Hosted Zone][2] in the *Amazon Route 53
1396
- # Developer Guide*.
1415
+ # * For public hosted zones, Route 53 automatically creates a default
1416
+ # SOA record and four NS records for the zone. For more information
1417
+ # about SOA and NS records, see [NS and SOA Records that Route 53
1418
+ # Creates for a Hosted Zone][2] in the *Amazon Route 53 Developer
1419
+ # Guide*.
1397
1420
  #
1398
1421
  # If you want to use the same name servers for multiple public hosted
1399
1422
  # zones, you can optionally associate a reusable delegation set with
@@ -1414,8 +1437,8 @@ module Aws::Route53
1414
1437
  #
1415
1438
  #
1416
1439
  # [1]: http://aws.amazon.com/route53/pricing/
1417
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html
1418
- # [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html
1440
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html
1441
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html
1419
1442
  #
1420
1443
  # @option params [required, String] :name
1421
1444
  # The name of the domain. Specify a fully qualified domain name, for
@@ -1483,7 +1506,7 @@ module Aws::Route53
1483
1506
  # resp = client.create_hosted_zone({
1484
1507
  # name: "DNSName", # required
1485
1508
  # vpc: {
1486
- # 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, me-south-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
1509
+ # 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, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-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, af-south-1, eu-south-1
1487
1510
  # vpc_id: "VPCId",
1488
1511
  # },
1489
1512
  # caller_reference: "Nonce", # required
@@ -1512,7 +1535,7 @@ module Aws::Route53
1512
1535
  # resp.delegation_set.caller_reference #=> String
1513
1536
  # resp.delegation_set.name_servers #=> Array
1514
1537
  # resp.delegation_set.name_servers[0] #=> String
1515
- # 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", "me-south-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"
1538
+ # 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", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-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", "af-south-1", "eu-south-1"
1516
1539
  # resp.vpc.vpc_id #=> String
1517
1540
  # resp.location #=> String
1518
1541
  #
@@ -1700,9 +1723,12 @@ module Aws::Route53
1700
1723
  end
1701
1724
 
1702
1725
  # Creates a delegation set (a group of four name servers) that can be
1703
- # reused by multiple hosted zones. If a hosted zoned ID is specified,
1704
- # `CreateReusableDelegationSet` marks the delegation set associated with
1705
- # that zone as reusable.
1726
+ # reused by multiple hosted zones that were created by the same AWS
1727
+ # account.
1728
+ #
1729
+ # You can also create a reusable delegation set that uses the four name
1730
+ # servers that are associated with an existing hosted zone. Specify the
1731
+ # hosted zone ID in the `CreateReusableDelegationSet` request.
1706
1732
  #
1707
1733
  # <note markdown="1"> You can't associate a reusable delegation set with a private hosted
1708
1734
  # zone.
@@ -1751,7 +1777,7 @@ module Aws::Route53
1751
1777
  #
1752
1778
  #
1753
1779
  #
1754
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html
1780
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html
1755
1781
  #
1756
1782
  # @option params [required, String] :caller_reference
1757
1783
  # A unique string that identifies the request, and that allows you to
@@ -2004,7 +2030,7 @@ module Aws::Route53
2004
2030
  # resp = client.create_vpc_association_authorization({
2005
2031
  # hosted_zone_id: "ResourceId", # required
2006
2032
  # vpc: { # required
2007
- # 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, me-south-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
2033
+ # 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, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-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, af-south-1, eu-south-1
2008
2034
  # vpc_id: "VPCId",
2009
2035
  # },
2010
2036
  # })
@@ -2012,7 +2038,7 @@ module Aws::Route53
2012
2038
  # @example Response structure
2013
2039
  #
2014
2040
  # resp.hosted_zone_id #=> String
2015
- # 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", "me-south-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"
2041
+ # 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", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-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", "af-south-1", "eu-south-1"
2016
2042
  # resp.vpc.vpc_id #=> String
2017
2043
  #
2018
2044
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
@@ -2035,9 +2061,16 @@ module Aws::Route53
2035
2061
  # see [Replacing and Deleting Health Checks][1] in the *Amazon Route 53
2036
2062
  # Developer Guide*.
2037
2063
  #
2064
+ # If you're using AWS Cloud Map and you configured Cloud Map to create
2065
+ # a Route 53 health check when you register an instance, you can't use
2066
+ # the Route 53 `DeleteHealthCheck` command to delete the health check.
2067
+ # The health check is deleted automatically when you deregister the
2068
+ # instance; there can be a delay of several hours before the health
2069
+ # check is deleted from Route 53.
2070
+ #
2038
2071
  #
2039
2072
  #
2040
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html
2073
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html
2041
2074
  #
2042
2075
  # @option params [required, String] :health_check_id
2043
2076
  # The ID of the health check that you want to delete.
@@ -2297,7 +2330,7 @@ module Aws::Route53
2297
2330
  # resp = client.delete_vpc_association_authorization({
2298
2331
  # hosted_zone_id: "ResourceId", # required
2299
2332
  # vpc: { # required
2300
- # 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, me-south-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
2333
+ # 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, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-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, af-south-1, eu-south-1
2301
2334
  # vpc_id: "VPCId",
2302
2335
  # },
2303
2336
  # })
@@ -2342,7 +2375,7 @@ module Aws::Route53
2342
2375
  # resp = client.disassociate_vpc_from_hosted_zone({
2343
2376
  # hosted_zone_id: "ResourceId", # required
2344
2377
  # vpc: { # required
2345
- # 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, me-south-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
2378
+ # 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, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-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, af-south-1, eu-south-1
2346
2379
  # vpc_id: "VPCId",
2347
2380
  # },
2348
2381
  # comment: "DisassociateVPCComment",
@@ -2462,6 +2495,11 @@ module Aws::Route53
2462
2495
  # resp.change_info.submitted_at #=> Time
2463
2496
  # resp.change_info.comment #=> String
2464
2497
  #
2498
+ #
2499
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
2500
+ #
2501
+ # * resource_record_sets_changed
2502
+ #
2465
2503
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChange AWS API Documentation
2466
2504
  #
2467
2505
  # @overload get_change(params = {})
@@ -2478,7 +2516,7 @@ module Aws::Route53
2478
2516
  #
2479
2517
  #
2480
2518
  #
2481
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
2519
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
2482
2520
  #
2483
2521
  # @return [Types::GetCheckerIpRangesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2484
2522
  #
@@ -2519,7 +2557,9 @@ module Aws::Route53
2519
2557
  # code&subdivisioncode=subdivision code `
2520
2558
  #
2521
2559
  # @option params [String] :continent_code
2522
- # Amazon Route 53 supports the following continent codes:
2560
+ # For geolocation resource record sets, a two-letter abbreviation that
2561
+ # identifies a continent. Amazon Route 53 supports the following
2562
+ # continent codes:
2523
2563
  #
2524
2564
  # * **AF**\: Africa
2525
2565
  #
@@ -2544,14 +2584,17 @@ module Aws::Route53
2544
2584
  # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2545
2585
  #
2546
2586
  # @option params [String] :subdivision_code
2547
- # Amazon Route 53 uses the one- to three-letter subdivision codes that
2548
- # are specified in [ISO standard 3166-1 alpha-2][1]. Route 53 doesn't
2549
- # support subdivision codes for all countries. If you specify
2550
- # `subdivisioncode`, you must also specify `countrycode`.
2587
+ # For `SubdivisionCode`, Amazon Route 53 supports only states of the
2588
+ # United States. For a list of state abbreviations, see [Appendix B:
2589
+ # Two–Letter State and Possession Abbreviations][1] on the United States
2590
+ # Postal Service website.
2551
2591
  #
2592
+ # If you specify `subdivisioncode`, you must also specify `US` for
2593
+ # `CountryCode`.
2552
2594
  #
2553
2595
  #
2554
- # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2596
+ #
2597
+ # [1]: https://pe.usps.com/text/pub28/28apb.htm
2555
2598
  #
2556
2599
  # @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2557
2600
  #
@@ -2624,7 +2667,7 @@ module Aws::Route53
2624
2667
  # resp.health_check.health_check_config.enable_sni #=> Boolean
2625
2668
  # resp.health_check.health_check_config.regions #=> Array
2626
2669
  # 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"
2627
- # 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", "me-south-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"
2670
+ # 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", "me-south-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", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
2628
2671
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
2629
2672
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
2630
2673
  # resp.health_check.health_check_version #=> Integer
@@ -2813,7 +2856,7 @@ module Aws::Route53
2813
2856
  # resp.delegation_set.name_servers #=> Array
2814
2857
  # resp.delegation_set.name_servers[0] #=> String
2815
2858
  # resp.vp_cs #=> Array
2816
- # 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", "me-south-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"
2859
+ # 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", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-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", "af-south-1", "eu-south-1"
2817
2860
  # resp.vp_cs[0].vpc_id #=> String
2818
2861
  #
2819
2862
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
@@ -3130,6 +3173,13 @@ module Aws::Route53
3130
3173
  # provinces), the subdivisions for that country are listed in
3131
3174
  # alphabetical order immediately after the corresponding country.
3132
3175
  #
3176
+ # For a list of supported geolocation codes, see the [GeoLocation][1]
3177
+ # data type.
3178
+ #
3179
+ #
3180
+ #
3181
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html
3182
+ #
3133
3183
  # @option params [String] :start_continent_code
3134
3184
  # The code for the continent with which you want to start listing
3135
3185
  # locations that Amazon Route 53 supports for geolocation. If Route 53
@@ -3150,23 +3200,15 @@ module Aws::Route53
3150
3200
  # value, enter that value in `startcountrycode` to return the next page
3151
3201
  # of results.
3152
3202
  #
3153
- # Route 53 uses the two-letter country codes that are specified in [ISO
3154
- # standard 3166-1 alpha-2][1].
3155
- #
3156
- #
3157
- #
3158
- # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
3159
- #
3160
3203
  # @option params [String] :start_subdivision_code
3161
- # The code for the subdivision (for example, state or province) with
3162
- # which you want to start listing locations that Amazon Route 53
3163
- # supports for geolocation. If Route 53 has already returned a page or
3164
- # more of results, if `IsTruncated` is `true`, and if
3165
- # `NextSubdivisionCode` from the previous response has a value, enter
3166
- # that value in `startsubdivisioncode` to return the next page of
3167
- # results.
3168
- #
3169
- # To list subdivisions of a country, you must include both
3204
+ # The code for the state of the United States with which you want to
3205
+ # start listing locations that Amazon Route 53 supports for geolocation.
3206
+ # If Route 53 has already returned a page or more of results, if
3207
+ # `IsTruncated` is `true`, and if `NextSubdivisionCode` from the
3208
+ # previous response has a value, enter that value in
3209
+ # `startsubdivisioncode` to return the next page of results.
3210
+ #
3211
+ # To list subdivisions (U.S. states), you must include both
3170
3212
  # `startcountrycode` and `startsubdivisioncode`.
3171
3213
  #
3172
3214
  # @option params [Integer] :max_items
@@ -3246,6 +3288,8 @@ module Aws::Route53
3246
3288
  # * {Types::ListHealthChecksResponse#next_marker #next_marker} => String
3247
3289
  # * {Types::ListHealthChecksResponse#max_items #max_items} => Integer
3248
3290
  #
3291
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3292
+ #
3249
3293
  # @example Request syntax with placeholder values
3250
3294
  #
3251
3295
  # resp = client.list_health_checks({
@@ -3277,7 +3321,7 @@ module Aws::Route53
3277
3321
  # resp.health_checks[0].health_check_config.enable_sni #=> Boolean
3278
3322
  # resp.health_checks[0].health_check_config.regions #=> Array
3279
3323
  # 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"
3280
- # 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", "me-south-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"
3324
+ # 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", "me-south-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", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
3281
3325
  # resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
3282
3326
  # resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
3283
3327
  # resp.health_checks[0].health_check_version #=> Integer
@@ -3345,6 +3389,8 @@ module Aws::Route53
3345
3389
  # * {Types::ListHostedZonesResponse#next_marker #next_marker} => String
3346
3390
  # * {Types::ListHostedZonesResponse#max_items #max_items} => Integer
3347
3391
  #
3392
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3393
+ #
3348
3394
  # @example Request syntax with placeholder values
3349
3395
  #
3350
3396
  # resp = client.list_hosted_zones({
@@ -3435,7 +3481,7 @@ module Aws::Route53
3435
3481
  #
3436
3482
  #
3437
3483
  #
3438
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
3484
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
3439
3485
  #
3440
3486
  # @option params [String] :dns_name
3441
3487
  # (Optional) For your first request to `ListHostedZonesByName`, include
@@ -3563,6 +3609,8 @@ module Aws::Route53
3563
3609
  # * {Types::ListQueryLoggingConfigsResponse#query_logging_configs #query_logging_configs} => Array&lt;Types::QueryLoggingConfig&gt;
3564
3610
  # * {Types::ListQueryLoggingConfigsResponse#next_token #next_token} => String
3565
3611
  #
3612
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3613
+ #
3566
3614
  # @example Request syntax with placeholder values
3567
3615
  #
3568
3616
  # resp = client.list_query_logging_configs({
@@ -3664,7 +3712,9 @@ module Aws::Route53
3664
3712
  #
3665
3713
  # @option params [String] :start_record_name
3666
3714
  # The first name in the lexicographic ordering of resource record sets
3667
- # that you want to list.
3715
+ # that you want to list. If the specified record name doesn't exist,
3716
+ # the results begin with the first resource record set that has a name
3717
+ # greater than the value of `name`.
3668
3718
  #
3669
3719
  # @option params [String] :start_record_type
3670
3720
  # The type of resource record set to begin the record listing from.
@@ -3688,9 +3738,9 @@ module Aws::Route53
3688
3738
  #
3689
3739
  # * **Elastic Load Balancing load balancer**\: A \| AAAA
3690
3740
  #
3691
- # * **Amazon S3 bucket**\: A
3741
+ # * **S3 bucket**\: A
3692
3742
  #
3693
- # * **Amazon VPC interface VPC endpoint**\: A
3743
+ # * **VPC interface VPC endpoint**\: A
3694
3744
  #
3695
3745
  # * **Another resource record set in this hosted zone:** The type of the
3696
3746
  # resource record set that the alias references.
@@ -3722,6 +3772,8 @@ module Aws::Route53
3722
3772
  # * {Types::ListResourceRecordSetsResponse#next_record_identifier #next_record_identifier} => String
3723
3773
  # * {Types::ListResourceRecordSetsResponse#max_items #max_items} => Integer
3724
3774
  #
3775
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3776
+ #
3725
3777
  # @example Request syntax with placeholder values
3726
3778
  #
3727
3779
  # resp = client.list_resource_record_sets({
@@ -3739,7 +3791,7 @@ module Aws::Route53
3739
3791
  # resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
3740
3792
  # resp.resource_record_sets[0].set_identifier #=> String
3741
3793
  # resp.resource_record_sets[0].weight #=> Integer
3742
- # 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", "me-south-1", "ap-south-1"
3794
+ # 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", "me-south-1", "ap-south-1", "af-south-1", "eu-south-1"
3743
3795
  # resp.resource_record_sets[0].geo_location.continent_code #=> String
3744
3796
  # resp.resource_record_sets[0].geo_location.country_code #=> String
3745
3797
  # resp.resource_record_sets[0].geo_location.subdivision_code #=> String
@@ -4412,7 +4464,7 @@ module Aws::Route53
4412
4464
  # resp.hosted_zone_id #=> String
4413
4465
  # resp.next_token #=> String
4414
4466
  # resp.vp_cs #=> Array
4415
- # 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", "me-south-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"
4467
+ # 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", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-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", "af-south-1", "eu-south-1"
4416
4468
  # resp.vp_cs[0].vpc_id #=> String
4417
4469
  #
4418
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
@@ -4515,7 +4567,7 @@ module Aws::Route53
4515
4567
  #
4516
4568
  #
4517
4569
  #
4518
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html
4570
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html
4519
4571
  #
4520
4572
  # @option params [required, String] :health_check_id
4521
4573
  # The ID for the health check for which you want detailed information.
@@ -4602,8 +4654,13 @@ module Aws::Route53
4602
4654
  # [6]: https://tools.ietf.org/html/rfc5156
4603
4655
  #
4604
4656
  # @option params [Integer] :port
4605
- # The port on the endpoint on which you want Amazon Route 53 to perform
4606
- # health checks.
4657
+ # The port on the endpoint that you want Amazon Route 53 to perform
4658
+ # health checks on.
4659
+ #
4660
+ # <note markdown="1"> Don't specify a value for `Port` when you specify a value for `Type`
4661
+ # of `CLOUDWATCH_METRIC` or `CALCULATED`.
4662
+ #
4663
+ # </note>
4607
4664
  #
4608
4665
  # @option params [String] :resource_path
4609
4666
  # The path that you want Amazon Route 53 to request when performing
@@ -4690,7 +4747,7 @@ module Aws::Route53
4690
4747
  # Route 53 doesn't pass a `Host` header.
4691
4748
  #
4692
4749
  # @option params [String] :search_string
4693
- # If the value of `Type` is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
4750
+ # If the value of `Type` is `HTTP_STR_MATCH` or `HTTPS_STR_MATCH`, the
4694
4751
  # string that you want Amazon Route 53 to search for in the response
4695
4752
  # body from the specified resource. If the string appears in the
4696
4753
  # response body, Route 53 considers the resource healthy. (You can't
@@ -4708,7 +4765,7 @@ module Aws::Route53
4708
4765
  #
4709
4766
  #
4710
4767
  #
4711
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
4768
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
4712
4769
  #
4713
4770
  # @option params [Boolean] :inverted
4714
4771
  # Specify whether you want Amazon Route 53 to invert the status of a
@@ -4857,7 +4914,7 @@ module Aws::Route53
4857
4914
  # enable_sni: false,
4858
4915
  # 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
4859
4916
  # alarm_identifier: {
4860
- # 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, me-south-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
4917
+ # 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, me-south-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, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
4861
4918
  # name: "AlarmName", # required
4862
4919
  # },
4863
4920
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -4887,7 +4944,7 @@ module Aws::Route53
4887
4944
  # resp.health_check.health_check_config.enable_sni #=> Boolean
4888
4945
  # resp.health_check.health_check_config.regions #=> Array
4889
4946
  # 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"
4890
- # 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", "me-south-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"
4947
+ # 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", "me-south-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", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
4891
4948
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
4892
4949
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
4893
4950
  # resp.health_check.health_check_version #=> Integer
@@ -5079,7 +5136,7 @@ module Aws::Route53
5079
5136
  params: params,
5080
5137
  config: config)
5081
5138
  context[:gem_name] = 'aws-sdk-route53'
5082
- context[:gem_version] = '1.31.0'
5139
+ context[:gem_version] = '1.36.1'
5083
5140
  Seahorse::Client::Request.new(handlers, context)
5084
5141
  end
5085
5142
 
@@ -5145,9 +5202,9 @@ module Aws::Route53
5145
5202
  # The following table lists the valid waiter names, the operations they call,
5146
5203
  # and the default `:delay` and `:max_attempts` values.
5147
5204
  #
5148
- # | waiter_name | params | :delay | :max_attempts |
5149
- # | ---------------------------- | ------------- | -------- | ------------- |
5150
- # | resource_record_sets_changed | {#get_change} | 30 | 60 |
5205
+ # | waiter_name | params | :delay | :max_attempts |
5206
+ # | ---------------------------- | ------------------- | -------- | ------------- |
5207
+ # | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
5151
5208
  #
5152
5209
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
5153
5210
  # because the waiter has entered a state that it will not transition