aws-sdk-route53 1.31.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c35d1a5e4b65cfc647b8f426bb0ca07f8c2446d
4
- data.tar.gz: a9bee2f0b9c9105e6d1955e4a6219c7e5f1dcd05
3
+ metadata.gz: 33d0203b01f190cda3c2500d7352a5fbd94035fc
4
+ data.tar.gz: c132188e80d15443eeaae13e652cf3bd0fde4f91
5
5
  SHA512:
6
- metadata.gz: 5252939d4f2f83d801921762c82441ca5c0a77b8912e09e72769ec82a51d0a277187b399b05050388432b15532b633e08566ceece740ea505ecccb1e9b020b51
7
- data.tar.gz: a1652387b534b70d28704780ea78388428f9b868d06a2d32e5632969a4f956c58b342515bdb9e892d013daf32c98a9eebcc9cb2be757d69fcde321c17c8d05fd
6
+ metadata.gz: f2732b18cd33049671c2eb4d28ba581df85244067d986e96a341de199be69a64fca7ae5e46bccb6db36a0d7d408dd9b906869a6bfda860b53c9ae9fd193429ba
7
+ data.tar.gz: 9258eab1b7ef3a3aeee10ab623cef2b82cf543e27cd49d2b2a174fb3be64ee116da3d771a6db7347b957dbeacd0cd889413953909bbe62e908a61768a7c6a0e0
@@ -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.32.0'
50
50
 
51
51
  end
@@ -33,11 +33,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:route53)
33
33
  module Aws::Route53
34
34
  # An API client for Route53. To construct a client, you need to configure a `:region` and `:credentials`.
35
35
  #
36
- # client = Aws::Route53::Client.new(
37
- # region: region_name,
38
- # credentials: credentials,
39
- # # ...
40
- # )
36
+ # client = Aws::Route53::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
41
  #
42
42
  # For details on configuring region and credentials see
43
43
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -231,15 +231,19 @@ module Aws::Route53
231
231
  #
232
232
  # @option options [String] :retry_mode ("legacy")
233
233
  # 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.
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
243
247
  #
244
248
  # @option options [String] :secret_access_key
245
249
  #
@@ -309,19 +313,31 @@ module Aws::Route53
309
313
 
310
314
  # Associates an Amazon VPC with a private hosted zone.
311
315
  #
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.
316
+ # <note markdown="1"> To perform the association, the VPC and the private hosted zone must
317
+ # already exist. Also, you can't convert a public hosted zone into a
318
+ # private hosted zone.
322
319
  #
323
320
  # </note>
324
321
  #
322
+ # If you want to associate a VPC that was created by one AWS account
323
+ # with a private hosted zone that was created by a different account, do
324
+ # one of the following:
325
+ #
326
+ # * Use the AWS account that created the private hosted zone to submit a
327
+ # [CreateVPCAssociationAuthorization][1] request. Then use the account
328
+ # that created the VPC to submit an `AssociateVPCWithHostedZone`
329
+ # request.
330
+ #
331
+ # * If a subnet in the VPC was shared with another account, you can use
332
+ # the account that the subnet was shared with to submit an
333
+ # `AssociateVPCWithHostedZone` request. For more information about
334
+ # sharing subnets, see [Working with Shared VPCs][2].
335
+ #
336
+ #
337
+ #
338
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
339
+ # [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
340
+ #
325
341
  # @option params [required, String] :hosted_zone_id
326
342
  # The ID of the private hosted zone that you want to associate an Amazon
327
343
  # VPC with.
@@ -479,7 +495,7 @@ module Aws::Route53
479
495
  #
480
496
  #
481
497
  #
482
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
498
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
483
499
  # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
484
500
  # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
485
501
  #
@@ -1260,7 +1276,7 @@ module Aws::Route53
1260
1276
  #
1261
1277
  # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId
1262
1278
  # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html
1263
- # [3]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1279
+ # [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
1264
1280
  #
1265
1281
  # @option params [required, String] :caller_reference
1266
1282
  # A unique string that identifies the request and that allows you to
@@ -1389,11 +1405,11 @@ module Aws::Route53
1389
1405
  # * You can't create a hosted zone for a top-level domain (TLD) such as
1390
1406
  # .com.
1391
1407
  #
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*.
1408
+ # * For public hosted zones, Route 53 automatically creates a default
1409
+ # SOA record and four NS records for the zone. For more information
1410
+ # about SOA and NS records, see [NS and SOA Records that Route 53
1411
+ # Creates for a Hosted Zone][2] in the *Amazon Route 53 Developer
1412
+ # Guide*.
1397
1413
  #
1398
1414
  # If you want to use the same name servers for multiple public hosted
1399
1415
  # zones, you can optionally associate a reusable delegation set with
@@ -1414,8 +1430,8 @@ module Aws::Route53
1414
1430
  #
1415
1431
  #
1416
1432
  # [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
1433
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html
1434
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html
1419
1435
  #
1420
1436
  # @option params [required, String] :name
1421
1437
  # The name of the domain. Specify a fully qualified domain name, for
@@ -1700,9 +1716,12 @@ module Aws::Route53
1700
1716
  end
1701
1717
 
1702
1718
  # 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.
1719
+ # reused by multiple hosted zones that were created by the same AWS
1720
+ # account.
1721
+ #
1722
+ # You can also create a reusable delegation set that uses the four name
1723
+ # servers that are associated with an existing hosted zone. Specify the
1724
+ # hosted zone ID in the `CreateReusableDelegationSet` request.
1706
1725
  #
1707
1726
  # <note markdown="1"> You can't associate a reusable delegation set with a private hosted
1708
1727
  # zone.
@@ -1751,7 +1770,7 @@ module Aws::Route53
1751
1770
  #
1752
1771
  #
1753
1772
  #
1754
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html
1773
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html
1755
1774
  #
1756
1775
  # @option params [required, String] :caller_reference
1757
1776
  # A unique string that identifies the request, and that allows you to
@@ -2035,9 +2054,16 @@ module Aws::Route53
2035
2054
  # see [Replacing and Deleting Health Checks][1] in the *Amazon Route 53
2036
2055
  # Developer Guide*.
2037
2056
  #
2057
+ # If you're using AWS Cloud Map and you configured Cloud Map to create
2058
+ # a Route 53 health check when you register an instance, you can't use
2059
+ # the Route 53 `DeleteHealthCheck` command to delete the health check.
2060
+ # The health check is deleted automatically when you deregister the
2061
+ # instance; there can be a delay of several hours before the health
2062
+ # check is deleted from Route 53.
2038
2063
  #
2039
2064
  #
2040
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html
2065
+ #
2066
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html
2041
2067
  #
2042
2068
  # @option params [required, String] :health_check_id
2043
2069
  # The ID of the health check that you want to delete.
@@ -2462,6 +2488,11 @@ module Aws::Route53
2462
2488
  # resp.change_info.submitted_at #=> Time
2463
2489
  # resp.change_info.comment #=> String
2464
2490
  #
2491
+ #
2492
+ # The following waiters are defined for this operation (see {Client#wait_for} for detailed usage):
2493
+ #
2494
+ # * resource_record_sets_changed
2495
+ #
2465
2496
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChange AWS API Documentation
2466
2497
  #
2467
2498
  # @overload get_change(params = {})
@@ -2478,7 +2509,7 @@ module Aws::Route53
2478
2509
  #
2479
2510
  #
2480
2511
  #
2481
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
2512
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
2482
2513
  #
2483
2514
  # @return [Types::GetCheckerIpRangesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2484
2515
  #
@@ -2519,7 +2550,9 @@ module Aws::Route53
2519
2550
  # code&subdivisioncode=subdivision code `
2520
2551
  #
2521
2552
  # @option params [String] :continent_code
2522
- # Amazon Route 53 supports the following continent codes:
2553
+ # For geolocation resource record sets, a two-letter abbreviation that
2554
+ # identifies a continent. Amazon Route 53 supports the following
2555
+ # continent codes:
2523
2556
  #
2524
2557
  # * **AF**\: Africa
2525
2558
  #
@@ -2544,14 +2577,17 @@ module Aws::Route53
2544
2577
  # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2545
2578
  #
2546
2579
  # @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`.
2580
+ # For `SubdivisionCode`, Amazon Route 53 supports only states of the
2581
+ # United States. For a list of state abbreviations, see [Appendix B:
2582
+ # Two–Letter State and Possession Abbreviations][1] on the United States
2583
+ # Postal Service website.
2551
2584
  #
2585
+ # If you specify `subdivisioncode`, you must also specify `US` for
2586
+ # `CountryCode`.
2552
2587
  #
2553
2588
  #
2554
- # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2589
+ #
2590
+ # [1]: https://pe.usps.com/text/pub28/28apb.htm
2555
2591
  #
2556
2592
  # @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2557
2593
  #
@@ -3130,6 +3166,13 @@ module Aws::Route53
3130
3166
  # provinces), the subdivisions for that country are listed in
3131
3167
  # alphabetical order immediately after the corresponding country.
3132
3168
  #
3169
+ # For a list of supported geolocation codes, see the [GeoLocation][1]
3170
+ # data type.
3171
+ #
3172
+ #
3173
+ #
3174
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html
3175
+ #
3133
3176
  # @option params [String] :start_continent_code
3134
3177
  # The code for the continent with which you want to start listing
3135
3178
  # locations that Amazon Route 53 supports for geolocation. If Route 53
@@ -3150,23 +3193,15 @@ module Aws::Route53
3150
3193
  # value, enter that value in `startcountrycode` to return the next page
3151
3194
  # of results.
3152
3195
  #
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
3196
  # @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
3197
+ # The code for the state of the United States with which you want to
3198
+ # start listing locations that Amazon Route 53 supports for geolocation.
3199
+ # If Route 53 has already returned a page or more of results, if
3200
+ # `IsTruncated` is `true`, and if `NextSubdivisionCode` from the
3201
+ # previous response has a value, enter that value in
3202
+ # `startsubdivisioncode` to return the next page of results.
3203
+ #
3204
+ # To list subdivisions (U.S. states), you must include both
3170
3205
  # `startcountrycode` and `startsubdivisioncode`.
3171
3206
  #
3172
3207
  # @option params [Integer] :max_items
@@ -3246,6 +3281,8 @@ module Aws::Route53
3246
3281
  # * {Types::ListHealthChecksResponse#next_marker #next_marker} => String
3247
3282
  # * {Types::ListHealthChecksResponse#max_items #max_items} => Integer
3248
3283
  #
3284
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3285
+ #
3249
3286
  # @example Request syntax with placeholder values
3250
3287
  #
3251
3288
  # resp = client.list_health_checks({
@@ -3345,6 +3382,8 @@ module Aws::Route53
3345
3382
  # * {Types::ListHostedZonesResponse#next_marker #next_marker} => String
3346
3383
  # * {Types::ListHostedZonesResponse#max_items #max_items} => Integer
3347
3384
  #
3385
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3386
+ #
3348
3387
  # @example Request syntax with placeholder values
3349
3388
  #
3350
3389
  # resp = client.list_hosted_zones({
@@ -3435,7 +3474,7 @@ module Aws::Route53
3435
3474
  #
3436
3475
  #
3437
3476
  #
3438
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
3477
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
3439
3478
  #
3440
3479
  # @option params [String] :dns_name
3441
3480
  # (Optional) For your first request to `ListHostedZonesByName`, include
@@ -3664,7 +3703,9 @@ module Aws::Route53
3664
3703
  #
3665
3704
  # @option params [String] :start_record_name
3666
3705
  # The first name in the lexicographic ordering of resource record sets
3667
- # that you want to list.
3706
+ # that you want to list. If the specified record name doesn't exist,
3707
+ # the results begin with the first resource record set that has a name
3708
+ # greater than the value of `name`.
3668
3709
  #
3669
3710
  # @option params [String] :start_record_type
3670
3711
  # The type of resource record set to begin the record listing from.
@@ -3688,9 +3729,9 @@ module Aws::Route53
3688
3729
  #
3689
3730
  # * **Elastic Load Balancing load balancer**\: A \| AAAA
3690
3731
  #
3691
- # * **Amazon S3 bucket**\: A
3732
+ # * **S3 bucket**\: A
3692
3733
  #
3693
- # * **Amazon VPC interface VPC endpoint**\: A
3734
+ # * **VPC interface VPC endpoint**\: A
3694
3735
  #
3695
3736
  # * **Another resource record set in this hosted zone:** The type of the
3696
3737
  # resource record set that the alias references.
@@ -3722,6 +3763,8 @@ module Aws::Route53
3722
3763
  # * {Types::ListResourceRecordSetsResponse#next_record_identifier #next_record_identifier} => String
3723
3764
  # * {Types::ListResourceRecordSetsResponse#max_items #max_items} => Integer
3724
3765
  #
3766
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3767
+ #
3725
3768
  # @example Request syntax with placeholder values
3726
3769
  #
3727
3770
  # resp = client.list_resource_record_sets({
@@ -4515,7 +4558,7 @@ module Aws::Route53
4515
4558
  #
4516
4559
  #
4517
4560
  #
4518
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html
4561
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html
4519
4562
  #
4520
4563
  # @option params [required, String] :health_check_id
4521
4564
  # The ID for the health check for which you want detailed information.
@@ -4602,8 +4645,13 @@ module Aws::Route53
4602
4645
  # [6]: https://tools.ietf.org/html/rfc5156
4603
4646
  #
4604
4647
  # @option params [Integer] :port
4605
- # The port on the endpoint on which you want Amazon Route 53 to perform
4606
- # health checks.
4648
+ # The port on the endpoint that you want Amazon Route 53 to perform
4649
+ # health checks on.
4650
+ #
4651
+ # <note markdown="1"> Don't specify a value for `Port` when you specify a value for `Type`
4652
+ # of `CLOUDWATCH_METRIC` or `CALCULATED`.
4653
+ #
4654
+ # </note>
4607
4655
  #
4608
4656
  # @option params [String] :resource_path
4609
4657
  # The path that you want Amazon Route 53 to request when performing
@@ -4690,7 +4738,7 @@ module Aws::Route53
4690
4738
  # Route 53 doesn't pass a `Host` header.
4691
4739
  #
4692
4740
  # @option params [String] :search_string
4693
- # If the value of `Type` is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
4741
+ # If the value of `Type` is `HTTP_STR_MATCH` or `HTTPS_STR_MATCH`, the
4694
4742
  # string that you want Amazon Route 53 to search for in the response
4695
4743
  # body from the specified resource. If the string appears in the
4696
4744
  # response body, Route 53 considers the resource healthy. (You can't
@@ -4708,7 +4756,7 @@ module Aws::Route53
4708
4756
  #
4709
4757
  #
4710
4758
  #
4711
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
4759
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
4712
4760
  #
4713
4761
  # @option params [Boolean] :inverted
4714
4762
  # Specify whether you want Amazon Route 53 to invert the status of a
@@ -5079,7 +5127,7 @@ module Aws::Route53
5079
5127
  params: params,
5080
5128
  config: config)
5081
5129
  context[:gem_name] = 'aws-sdk-route53'
5082
- context[:gem_version] = '1.31.0'
5130
+ context[:gem_version] = '1.32.0'
5083
5131
  Seahorse::Client::Request.new(handlers, context)
5084
5132
  end
5085
5133
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Route53
9
- # This class provides a resource oriented interface for Route53.
10
- # To create a resource object:
11
- # resource = Aws::Route53::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::Route53::Client.new(region: 'us-west-2')
15
- # resource = Aws::Route53::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
@@ -67,12 +67,12 @@ module Aws::Route53
67
67
  # that the alarm was created in.
68
68
  #
69
69
  # For the current list of CloudWatch regions, see [Amazon
70
- # CloudWatch][1] in the *AWS Regions and Endpoints* chapter of the
71
- # *Amazon Web Services General Reference*.
70
+ # CloudWatch][1] in the *AWS Service Endpoints* chapter of the *Amazon
71
+ # Web Services General Reference*.
72
72
  #
73
73
  #
74
74
  #
75
- # [1]: http://docs.aws.amazon.com/general/latest/gr/rande.html#cw_region
75
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/rande.html#cw_region
76
76
  # @return [String]
77
77
  #
78
78
  # @!attribute [rw] name
@@ -93,7 +93,7 @@ module Aws::Route53
93
93
  #
94
94
  #
95
95
  #
96
- # [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/publishingMetrics.html#high-resolution-metrics
96
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/publishingMetrics.html#high-resolution-metrics
97
97
  # @return [String]
98
98
  #
99
99
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AlarmIdentifier AWS API Documentation
@@ -120,7 +120,7 @@ module Aws::Route53
120
120
  #
121
121
  #
122
122
  #
123
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
123
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
124
124
  #
125
125
  # @note When making an API call, you may pass AliasTarget
126
126
  # data as a hash:
@@ -165,7 +165,7 @@ module Aws::Route53
165
165
  # : Specify the hosted zone ID for the region that you created the
166
166
  # environment in. The environment must have a regionalized
167
167
  # subdomain. For a list of regions and the corresponding hosted zone
168
- # IDs, see [AWS Elastic Beanstalk][3] in the "AWS Regions and
168
+ # IDs, see [AWS Elastic Beanstalk][3] in the "AWS Service
169
169
  # Endpoints" chapter of the *Amazon Web Services General
170
170
  # Reference*.
171
171
  #
@@ -174,8 +174,8 @@ module Aws::Route53
174
174
  # : Specify the value of the hosted zone ID for the load balancer. Use
175
175
  # the following methods to get the hosted zone ID:
176
176
  #
177
- # * [Elastic Load Balancing][4] table in the "AWS Regions and
178
- # Endpoints" chapter of the *Amazon Web Services General
177
+ # * [Service Endpoints][4] table in the "Elastic Load Balancing
178
+ # Endpoints and Quotas" topic in the *Amazon Web Services General
179
179
  # Reference*\: Use the value that corresponds with the region that
180
180
  # you created your load balancer in. Note that there are separate
181
181
  # columns for Application and Classic Load Balancers and for
@@ -208,12 +208,15 @@ module Aws::Route53
208
208
  # [describe-load-balancers][8] to get the value of
209
209
  # `CanonicalHostedZoneId`.
210
210
  #
211
+ # AWS Global Accelerator accelerator
212
+ #
213
+ # : Specify `Z2BJ6XQ5FK7U4H`.
214
+ #
211
215
  # An Amazon S3 bucket configured as a static website
212
216
  #
213
217
  # : Specify the hosted zone ID for the region that you created the
214
- # bucket in. For more information about valid values, see the
215
- # [Amazon Simple Storage Service Website Endpoints][9] table in the
216
- # "AWS Regions and Endpoints" chapter of the *Amazon Web Services
218
+ # bucket in. For more information about valid values, see the table
219
+ # [Amazon S3 Website Endpoints][9] in the *Amazon Web Services
217
220
  # General Reference*.
218
221
  #
219
222
  # Another Route 53 resource record set in your hosted zone
@@ -226,13 +229,13 @@ module Aws::Route53
226
229
  #
227
230
  # [1]: https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html
228
231
  # [2]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html
229
- # [3]: http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region
230
- # [4]: https://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
231
- # [5]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
232
- # [6]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
232
+ # [3]: https://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region
233
+ # [4]: https://docs.aws.amazon.com/general/latest/gr/elb.html
234
+ # [5]: https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
235
+ # [6]: https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
233
236
  # [7]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
234
237
  # [8]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
235
- # [9]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
238
+ # [9]: https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints
236
239
  # @return [String]
237
240
  #
238
241
  # @!attribute [rw] dns_name
@@ -323,8 +326,7 @@ module Aws::Route53
323
326
  #
324
327
  # * *AWS CLI*\: Use the `describe-environments` command to get the
325
328
  # value of the `CNAME` attribute. For more information, see
326
- # [describe-environments][6] in the *AWS Command Line Interface
327
- # Reference*.
329
+ # [describe-environments][6] in the *AWS CLI Command Reference*.
328
330
  #
329
331
  # ELB load balancer
330
332
  #
@@ -359,16 +361,25 @@ module Aws::Route53
359
361
  # * Application and Network Load Balancers:
360
362
  # [describe-load-balancers][10]
361
363
  #
364
+ # AWS Global Accelerator accelerator
365
+ #
366
+ # : Specify the DNS name for your accelerator:
367
+ #
368
+ # * **Global Accelerator API:** To get the DNS name, use
369
+ # [DescribeAccelerator][11].
370
+ #
371
+ # * **AWS CLI:** To get the DNS name, use
372
+ # [describe-accelerator][12].
373
+ #
362
374
  # Amazon S3 bucket that is configured as a static website
363
375
  #
364
376
  # : Specify the domain name of the Amazon S3 website endpoint that you
365
377
  # created the bucket in, for example,
366
378
  # `s3-website.us-east-2.amazonaws.com`. For more information about
367
- # valid values, see the table [Amazon Simple Storage Service (S3)
368
- # Website Endpoints][11] in the *Amazon Web Services General
369
- # Reference*. For more information about using S3 buckets for
370
- # websites, see [Getting Started with Amazon Route 53][12] in the
371
- # *Amazon Route 53 Developer Guide.*
379
+ # valid values, see the table [Amazon S3 Website Endpoints][13] in
380
+ # the *Amazon Web Services General Reference*. For more information
381
+ # about using S3 buckets for websites, see [Getting Started with
382
+ # Amazon Route 53][14] in the *Amazon Route 53 Developer Guide.*
372
383
  #
373
384
  # Another Route 53 resource record set
374
385
  #
@@ -389,16 +400,18 @@ module Aws::Route53
389
400
  #
390
401
  # [1]: https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html
391
402
  # [2]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html
392
- # [3]: http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html
393
- # [4]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html
394
- # [5]: http://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html
395
- # [6]: http://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html
396
- # [7]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
397
- # [8]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
403
+ # [3]: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html
404
+ # [4]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html
405
+ # [5]: https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html
406
+ # [6]: https://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html
407
+ # [7]: https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
408
+ # [8]: https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
398
409
  # [9]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
399
410
  # [10]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
400
- # [11]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
401
- # [12]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html
411
+ # [11]: https://docs.aws.amazon.com/global-accelerator/latest/api/API_DescribeAccelerator.html
412
+ # [12]: https://docs.aws.amazon.com/cli/latest/reference/globalaccelerator/describe-accelerator.html
413
+ # [13]: https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints
414
+ # [14]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html
402
415
  # @return [String]
403
416
  #
404
417
  # @!attribute [rw] evaluate_target_health
@@ -486,8 +499,8 @@ module Aws::Route53
486
499
  #
487
500
  #
488
501
  #
489
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting
490
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
502
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting
503
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
491
504
  # @return [Boolean]
492
505
  #
493
506
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AliasTarget AWS API Documentation
@@ -910,7 +923,7 @@ module Aws::Route53
910
923
  #
911
924
  #
912
925
  #
913
- # [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html
926
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html
914
927
  # @return [String]
915
928
  #
916
929
  # @!attribute [rw] statistic
@@ -927,7 +940,7 @@ module Aws::Route53
927
940
  #
928
941
  #
929
942
  #
930
- # [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html
943
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html
931
944
  # @return [Array<Types::Dimension>]
932
945
  #
933
946
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CloudWatchAlarmConfiguration AWS API Documentation
@@ -1970,19 +1983,51 @@ module Aws::Route53
1970
1983
  # @!attribute [rw] continent_code
1971
1984
  # The two-letter code for the continent.
1972
1985
  #
1973
- # Valid values: `AF` \| `AN` \| `AS` \| `EU` \| `OC` \| `NA` \| `SA`
1986
+ # Amazon Route 53 supports the following continent codes:
1987
+ #
1988
+ # * **AF**\: Africa
1989
+ #
1990
+ # * **AN**\: Antarctica
1991
+ #
1992
+ # * **AS**\: Asia
1993
+ #
1994
+ # * **EU**\: Europe
1995
+ #
1996
+ # * **OC**\: Oceania
1997
+ #
1998
+ # * **NA**\: North America
1999
+ #
2000
+ # * **SA**\: South America
1974
2001
  #
1975
2002
  # Constraint: Specifying `ContinentCode` with either `CountryCode` or
1976
2003
  # `SubdivisionCode` returns an `InvalidInput` error.
1977
2004
  # @return [String]
1978
2005
  #
1979
2006
  # @!attribute [rw] country_code
1980
- # The two-letter code for the country.
2007
+ # For geolocation resource record sets, the two-letter code for a
2008
+ # country.
2009
+ #
2010
+ # Amazon Route 53 uses the two-letter country codes that are specified
2011
+ # in [ISO standard 3166-1 alpha-2][1].
2012
+ #
2013
+ #
2014
+ #
2015
+ # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
1981
2016
  # @return [String]
1982
2017
  #
1983
2018
  # @!attribute [rw] subdivision_code
1984
- # The code for the subdivision. Route 53 currently supports only
1985
- # states in the United States.
2019
+ # For geolocation resource record sets, the two-letter code for a
2020
+ # state of the United States. Route 53 doesn't support any other
2021
+ # values for `SubdivisionCode`. For a list of state abbreviations, see
2022
+ # [Appendix B: Two–Letter State and Possession Abbreviations][1] on
2023
+ # the United States Postal Service website.
2024
+ #
2025
+ # If you specify `subdivisioncode`, you must also specify `US` for
2026
+ # `CountryCode`.
2027
+ #
2028
+ #
2029
+ #
2030
+ # [1]: https://pe.usps.com/text/pub28/28apb.htm
1986
2031
  # @return [String]
1987
2032
  #
1988
2033
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoLocation AWS API Documentation
@@ -2171,7 +2216,9 @@ module Aws::Route53
2171
2216
  # }
2172
2217
  #
2173
2218
  # @!attribute [rw] continent_code
2174
- # Amazon Route 53 supports the following continent codes:
2219
+ # For geolocation resource record sets, a two-letter abbreviation that
2220
+ # identifies a continent. Amazon Route 53 supports the following
2221
+ # continent codes:
2175
2222
  #
2176
2223
  # * **AF**\: Africa
2177
2224
  #
@@ -2198,14 +2245,17 @@ module Aws::Route53
2198
2245
  # @return [String]
2199
2246
  #
2200
2247
  # @!attribute [rw] subdivision_code
2201
- # Amazon Route 53 uses the one- to three-letter subdivision codes that
2202
- # are specified in [ISO standard 3166-1 alpha-2][1]. Route 53 doesn't
2203
- # support subdivision codes for all countries. If you specify
2204
- # `subdivisioncode`, you must also specify `countrycode`.
2248
+ # For `SubdivisionCode`, Amazon Route 53 supports only states of the
2249
+ # United States. For a list of state abbreviations, see [Appendix B:
2250
+ # Two–Letter State and Possession Abbreviations][1] on the United
2251
+ # States Postal Service website.
2205
2252
  #
2253
+ # If you specify `subdivisioncode`, you must also specify `US` for
2254
+ # `CountryCode`.
2206
2255
  #
2207
2256
  #
2208
- # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
2257
+ #
2258
+ # [1]: https://pe.usps.com/text/pub28/28apb.htm
2209
2259
  # @return [String]
2210
2260
  #
2211
2261
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetGeoLocationRequest AWS API Documentation
@@ -2883,9 +2933,13 @@ module Aws::Route53
2883
2933
  # @return [String]
2884
2934
  #
2885
2935
  # @!attribute [rw] port
2886
- # The port on the endpoint on which you want Amazon Route 53 to
2887
- # perform health checks. Specify a value for `Port` only when you
2888
- # specify a value for `IPAddress`.
2936
+ # The port on the endpoint that you want Amazon Route 53 to perform
2937
+ # health checks on.
2938
+ #
2939
+ # <note markdown="1"> Don't specify a value for `Port` when you specify a value for
2940
+ # `Type` of `CLOUDWATCH_METRIC` or `CALCULATED`.
2941
+ #
2942
+ # </note>
2889
2943
  # @return [Integer]
2890
2944
  #
2891
2945
  # @!attribute [rw] type
@@ -3019,7 +3073,7 @@ module Aws::Route53
3019
3073
  # @return [String]
3020
3074
  #
3021
3075
  # @!attribute [rw] search_string
3022
- # If the value of Type is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
3076
+ # If the value of Type is `HTTP_STR_MATCH` or `HTTPS_STR_MATCH`, the
3023
3077
  # string that you want Amazon Route 53 to search for in the response
3024
3078
  # body from the specified resource. If the string appears in the
3025
3079
  # response body, Route 53 considers the resource healthy.
@@ -3053,7 +3107,7 @@ module Aws::Route53
3053
3107
  #
3054
3108
  #
3055
3109
  #
3056
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
3110
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
3057
3111
  # @return [Integer]
3058
3112
  #
3059
3113
  # @!attribute [rw] measure_latency
@@ -3669,25 +3723,17 @@ module Aws::Route53
3669
3723
  # `true`, and if `NextCountryCode` from the previous response has a
3670
3724
  # value, enter that value in `startcountrycode` to return the next
3671
3725
  # page of results.
3672
- #
3673
- # Route 53 uses the two-letter country codes that are specified in
3674
- # [ISO standard 3166-1 alpha-2][1].
3675
- #
3676
- #
3677
- #
3678
- # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
3679
3726
  # @return [String]
3680
3727
  #
3681
3728
  # @!attribute [rw] start_subdivision_code
3682
- # The code for the subdivision (for example, state or province) with
3683
- # which you want to start listing locations that Amazon Route 53
3684
- # supports for geolocation. If Route 53 has already returned a page or
3685
- # more of results, if `IsTruncated` is `true`, and if
3686
- # `NextSubdivisionCode` from the previous response has a value, enter
3687
- # that value in `startsubdivisioncode` to return the next page of
3688
- # results.
3689
- #
3690
- # To list subdivisions of a country, you must include both
3729
+ # The code for the state of the United States with which you want to
3730
+ # start listing locations that Amazon Route 53 supports for
3731
+ # geolocation. If Route 53 has already returned a page or more of
3732
+ # results, if `IsTruncated` is `true`, and if `NextSubdivisionCode`
3733
+ # from the previous response has a value, enter that value in
3734
+ # `startsubdivisioncode` to return the next page of results.
3735
+ #
3736
+ # To list subdivisions (U.S. states), you must include both
3691
3737
  # `startcountrycode` and `startsubdivisioncode`.
3692
3738
  # @return [String]
3693
3739
  #
@@ -4161,7 +4207,9 @@ module Aws::Route53
4161
4207
  #
4162
4208
  # @!attribute [rw] start_record_name
4163
4209
  # The first name in the lexicographic ordering of resource record sets
4164
- # that you want to list.
4210
+ # that you want to list. If the specified record name doesn't exist,
4211
+ # the results begin with the first resource record set that has a name
4212
+ # greater than the value of `name`.
4165
4213
  # @return [String]
4166
4214
  #
4167
4215
  # @!attribute [rw] start_record_type
@@ -4186,9 +4234,9 @@ module Aws::Route53
4186
4234
  #
4187
4235
  # * **Elastic Load Balancing load balancer**\: A \| AAAA
4188
4236
  #
4189
- # * **Amazon S3 bucket**\: A
4237
+ # * **S3 bucket**\: A
4190
4238
  #
4191
- # * **Amazon VPC interface VPC endpoint**\: A
4239
+ # * **VPC interface VPC endpoint**\: A
4192
4240
  #
4193
4241
  # * **Another resource record set in this hosted zone:** The type of
4194
4242
  # the resource record set that the alias references.
@@ -5117,6 +5165,12 @@ module Aws::Route53
5117
5165
  end
5118
5166
 
5119
5167
  # Amazon Route 53 doesn't support the specified geographic location.
5168
+ # For a list of supported geolocation codes, see the [GeoLocation][1]
5169
+ # data type.
5170
+ #
5171
+ #
5172
+ #
5173
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html
5120
5174
  #
5121
5175
  # @!attribute [rw] message
5122
5176
  # Descriptive message for the error response.
@@ -5393,7 +5447,7 @@ module Aws::Route53
5393
5447
  #
5394
5448
  #
5395
5449
  #
5396
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
5450
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
5397
5451
  # @return [String]
5398
5452
  #
5399
5453
  # @!attribute [rw] type
@@ -5437,7 +5491,7 @@ module Aws::Route53
5437
5491
  # record sets to route traffic to your distribution, one with a
5438
5492
  # value of `A` and one with a value of `AAAA`.
5439
5493
  #
5440
- # * **AWS Elastic Beanstalk environment that has a regionalized
5494
+ # * **Amazon API Gateway environment that has a regionalized
5441
5495
  # subdomain**\: `A`
5442
5496
  #
5443
5497
  # * **ELB load balancers:** `A` \| `AAAA`
@@ -5461,7 +5515,7 @@ module Aws::Route53
5461
5515
  #
5462
5516
  #
5463
5517
  #
5464
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html
5518
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html
5465
5519
  # [2]: http://tools.ietf.org/html/rfc7208#section-14.1
5466
5520
  # @return [String]
5467
5521
  #
@@ -5520,7 +5574,7 @@ module Aws::Route53
5520
5574
  #
5521
5575
  #
5522
5576
  #
5523
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html
5577
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html
5524
5578
  # @return [Integer]
5525
5579
  #
5526
5580
  # @!attribute [rw] region
@@ -5530,8 +5584,8 @@ module Aws::Route53
5530
5584
  # instance or an ELB load balancer, and is referred to by an IP
5531
5585
  # address or a DNS domain name, depending on the record type.
5532
5586
  #
5533
- # <note markdown="1"> Creating latency and latency alias resource record sets in private
5534
- # hosted zones is not supported.
5587
+ # <note markdown="1"> Although creating latency and latency alias resource record sets in
5588
+ # a private hosted zone is allowed, it's not supported.
5535
5589
  #
5536
5590
  # </note>
5537
5591
  #
@@ -5568,8 +5622,8 @@ module Aws::Route53
5568
5622
  # `192.0.2.111`, create a resource record set with a `Type` of `A` and
5569
5623
  # a `ContinentCode` of `AF`.
5570
5624
  #
5571
- # <note markdown="1"> Creating geolocation and geolocation alias resource record sets in
5572
- # private hosted zones is not supported.
5625
+ # <note markdown="1"> Although creating geolocation and geolocation alias resource record
5626
+ # sets in a private hosted zone is allowed, it's not supported.
5573
5627
  #
5574
5628
  # </note>
5575
5629
  #
@@ -5593,8 +5647,9 @@ module Aws::Route53
5593
5647
  # you create geolocation resource record sets that cover all seven
5594
5648
  # continents, Route 53 will receive some DNS queries from locations
5595
5649
  # that it can't identify. We recommend that you create a resource
5596
- # record set for which the value of `CountryCode` is `*`, which
5597
- # handles both queries that come from locations for which you haven't
5650
+ # record set for which the value of `CountryCode` is `*`. Two groups
5651
+ # of queries are routed to the resource that you specify in this
5652
+ # record: queries that come from locations for which you haven't
5598
5653
  # created geolocation resource record sets and queries from IP
5599
5654
  # addresses that aren't mapped to a location. If you don't create a
5600
5655
  # `*` resource record set, Route 53 returns a "no answer" response
@@ -5655,8 +5710,8 @@ module Aws::Route53
5655
5710
  #
5656
5711
  #
5657
5712
  #
5658
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
5659
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5713
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
5714
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5660
5715
  # @return [String]
5661
5716
  #
5662
5717
  # @!attribute [rw] multi_value_answer
@@ -5744,7 +5799,7 @@ module Aws::Route53
5744
5799
  #
5745
5800
  #
5746
5801
  #
5747
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5802
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5748
5803
  # @return [Types::AliasTarget]
5749
5804
  #
5750
5805
  # @!attribute [rw] health_check_id
@@ -5873,8 +5928,8 @@ module Aws::Route53
5873
5928
  #
5874
5929
  #
5875
5930
  # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
5876
- # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
5877
- # [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5931
+ # [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
5932
+ # [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
5878
5933
  # @return [String]
5879
5934
  #
5880
5935
  # @!attribute [rw] traffic_policy_instance_id
@@ -6667,8 +6722,13 @@ module Aws::Route53
6667
6722
  # @return [String]
6668
6723
  #
6669
6724
  # @!attribute [rw] port
6670
- # The port on the endpoint on which you want Amazon Route 53 to
6671
- # perform health checks.
6725
+ # The port on the endpoint that you want Amazon Route 53 to perform
6726
+ # health checks on.
6727
+ #
6728
+ # <note markdown="1"> Don't specify a value for `Port` when you specify a value for
6729
+ # `Type` of `CLOUDWATCH_METRIC` or `CALCULATED`.
6730
+ #
6731
+ # </note>
6672
6732
  # @return [Integer]
6673
6733
  #
6674
6734
  # @!attribute [rw] resource_path
@@ -6758,7 +6818,7 @@ module Aws::Route53
6758
6818
  # @return [String]
6759
6819
  #
6760
6820
  # @!attribute [rw] search_string
6761
- # If the value of `Type` is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
6821
+ # If the value of `Type` is `HTTP_STR_MATCH` or `HTTPS_STR_MATCH`, the
6762
6822
  # string that you want Amazon Route 53 to search for in the response
6763
6823
  # body from the specified resource. If the string appears in the
6764
6824
  # response body, Route 53 considers the resource healthy. (You can't
@@ -6777,7 +6837,7 @@ module Aws::Route53
6777
6837
  #
6778
6838
  #
6779
6839
  #
6780
- # [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
6840
+ # [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
6781
6841
  # @return [Integer]
6782
6842
  #
6783
6843
  # @!attribute [rw] inverted
@@ -8,6 +8,67 @@
8
8
  require 'aws-sdk-core/waiters'
9
9
 
10
10
  module Aws::Route53
11
+ # Waiters are utility methods that poll for a particular state to occur
12
+ # on a client. Waiters can fail after a number of attempts at a polling
13
+ # interval defined for the service client.
14
+ #
15
+ # For a list of operations that can be waited for and the
16
+ # client methods called for each operation, see the table below or the
17
+ # {Client#wait_until} field documentation for the {Client}.
18
+ #
19
+ # # Invoking a Waiter
20
+ # To invoke a waiter, call #wait_until on a {Client}. The first parameter
21
+ # is the waiter name, which is specific to the service client and indicates
22
+ # which operation is being waited for. The second parameter is a hash of
23
+ # parameters that are passed to the client method called by the waiter,
24
+ # which varies according to the waiter name.
25
+ #
26
+ # # Wait Failures
27
+ # To catch errors in a waiter, use WaiterFailed,
28
+ # as shown in the following example.
29
+ #
30
+ # rescue rescue Aws::Waiters::Errors::WaiterFailed => error
31
+ # puts "failed waiting for instance running: #{error.message}
32
+ # end
33
+ #
34
+ # # Configuring a Waiter
35
+ # Each waiter has a default polling interval and a maximum number of
36
+ # attempts it will make before returning control to your program.
37
+ # To set these values, use the `max_attempts` and `delay` parameters
38
+ # in your `#wait_until` call.
39
+ # The following example waits for up to 25 seconds, polling every five seconds.
40
+ #
41
+ # client.wait_until(...) do |w|
42
+ # w.max_attempts = 5
43
+ # w.delay = 5
44
+ # end
45
+ #
46
+ # To disable wait failures, set the value of either of these parameters
47
+ # to `nil`.
48
+ #
49
+ # # Extending a Waiter
50
+ # To modify the behavior of waiters, you can register callbacks that are
51
+ # triggered before each polling attempt and before waiting.
52
+ #
53
+ # The following example implements an exponential backoff in a waiter
54
+ # by doubling the amount of time to wait on every attempt.
55
+ #
56
+ # client.wait_until(...) do |w|
57
+ # w.interval = 0 # disable normal sleep
58
+ # w.before_wait do |n, resp|
59
+ # sleep(n ** 2)
60
+ # end
61
+ # end
62
+ #
63
+ # # Available Waiters
64
+ #
65
+ # The following table lists the valid waiter names, the operations they call,
66
+ # and the default `:delay` and `:max_attempts` values.
67
+ #
68
+ # | waiter_name | params | :delay | :max_attempts |
69
+ # | ---------------------------- | ------------- | -------- | ------------- |
70
+ # | resource_record_sets_changed | {#get_change} | 30 | 60 |
71
+ #
11
72
  module Waiters
12
73
 
13
74
  class ResourceRecordSetsChanged
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core