aws-sdk-route53 1.56.0 → 1.60.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
  SHA256:
3
- metadata.gz: 71dd61339e47b47fde167afd807f16c6ef6cf3b39dc4f63d637caa26f8982104
4
- data.tar.gz: ff5411b4b2c5ffe347dee2846434650b62936c2e560d66f8b43511d8b522f551
3
+ metadata.gz: 4760a64df4456a0a455614d1cb714f538f149c05a7b712934502f5de056b3b5a
4
+ data.tar.gz: 00ad560eae0c4d082cd8be201ef4dc0f7fa8b98a79b85cfb38d3ac7114023073
5
5
  SHA512:
6
- metadata.gz: 965e53a84274f7111f4138600af0cbb538b0c961f7f1fc2fe9f859db0caf40d7b546631104f5e10d62a041402646a7f05bca64a6da486b548193cccbbecfa255
7
- data.tar.gz: f39c0ae11b46319e9417f0748491fb060c313d137246764c510cd702988a5d12f452dd26f28eb50da3f72512c5f55e1779a656da7ea5882786ba31acab48d07f
6
+ metadata.gz: 22c5301e8845c0596323de637075fa26a483eea510295d540897e6f1f2e5fe9c9563f9d4e94ad664689c2d84000c774ec63e5b8eb121c3e84c5b145fa17f893d
7
+ data.tar.gz: 6e5f7334682db0a0f4af3239f525cf79bdf287cbb16a9587e9d557ed384e6487aceef7ed907411c7504dae29e4224ebbdffdafb3a8b956f287bd3bbe0de88f4c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.59.0 (2021-12-06)
10
+ ------------------
11
+
12
+ * Feature - Add PriorRequestNotComplete exception to UpdateHostedZoneComment API
13
+
14
+ 1.58.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.57.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.56.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.60.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
32
33
  require 'aws-sdk-route53/plugins/id_fix.rb'
@@ -74,6 +75,7 @@ module Aws::Route53
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::RestXml)
79
81
  add_plugin(Aws::Route53::Plugins::IdFix)
@@ -121,7 +123,9 @@ module Aws::Route53
121
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
124
  # are very aggressive. Construct and pass an instance of
123
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
125
129
  #
126
130
  # @option options [required, String] :region
127
131
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +179,10 @@ module Aws::Route53
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -277,6 +285,15 @@ module Aws::Route53
277
285
  # ** Please note ** When response stubbing is enabled, no HTTP
278
286
  # requests are made, and retries are disabled.
279
287
  #
288
+ # @option options [Boolean] :use_dualstack_endpoint
289
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
290
+ # will be used if available.
291
+ #
292
+ # @option options [Boolean] :use_fips_endpoint
293
+ # When set to `true`, fips compatible endpoints will be used if available.
294
+ # When a `fips` region is used, the region is normalized and this config
295
+ # is set to `true`.
296
+ #
280
297
  # @option options [Boolean] :validate_params (true)
281
298
  # When `true`, request parameters are validated before
282
299
  # sending the request.
@@ -288,7 +305,7 @@ module Aws::Route53
288
305
  # seconds to wait when opening a HTTP session before raising a
289
306
  # `Timeout::Error`.
290
307
  #
291
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
292
309
  # number of seconds to wait for response data. This value can
293
310
  # safely be set per-request on the session.
294
311
  #
@@ -304,6 +321,9 @@ module Aws::Route53
304
321
  # disables this behaviour. This value can safely be set per
305
322
  # request on the session.
306
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
307
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
308
328
  # HTTP debug output will be sent to the `:logger`.
309
329
  #
@@ -429,7 +449,7 @@ module Aws::Route53
429
449
  # resp = client.associate_vpc_with_hosted_zone({
430
450
  # hosted_zone_id: "ResourceId", # required
431
451
  # vpc: { # required
432
- # 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
452
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
433
453
  # vpc_id: "VPCId",
434
454
  # },
435
455
  # comment: "AssociateVPCComment",
@@ -1159,7 +1179,7 @@ module Aws::Route53
1159
1179
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
1160
1180
  # set_identifier: "ResourceRecordSetIdentifier",
1161
1181
  # weight: 1,
1162
- # 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
1182
+ # 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-southeast-3, 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
1163
1183
  # geo_location: {
1164
1184
  # continent_code: "GeoLocationContinentCode",
1165
1185
  # country_code: "GeoLocationCountryCode",
@@ -1379,7 +1399,7 @@ module Aws::Route53
1379
1399
  # enable_sni: false,
1380
1400
  # 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
1381
1401
  # alarm_identifier: {
1382
- # 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
1402
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
1383
1403
  # name: "AlarmName", # required
1384
1404
  # },
1385
1405
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -1410,7 +1430,7 @@ module Aws::Route53
1410
1430
  # resp.health_check.health_check_config.enable_sni #=> Boolean
1411
1431
  # resp.health_check.health_check_config.regions #=> Array
1412
1432
  # 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"
1413
- # 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"
1433
+ # 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-southeast-3", "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-iso-west-1", "us-isob-east-1"
1414
1434
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
1415
1435
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
1416
1436
  # resp.health_check.health_check_config.routing_control_arn #=> String
@@ -1505,7 +1525,10 @@ module Aws::Route53
1505
1525
  # about the Amazon VPC that you're associating with this hosted zone.
1506
1526
  #
1507
1527
  # You can specify only one Amazon VPC when you create a private hosted
1508
- # zone. To associate additional Amazon VPCs with the hosted zone, use
1528
+ # zone. If you are associating a VPC with a hosted zone with this
1529
+ # request, the paramaters `VPCId` and `VPCRegion` are also required.
1530
+ #
1531
+ # To associate additional Amazon VPCs with the hosted zone, use
1509
1532
  # [AssociateVPCWithHostedZone][1] after you create a hosted zone.
1510
1533
  #
1511
1534
  #
@@ -1553,7 +1576,7 @@ module Aws::Route53
1553
1576
  # resp = client.create_hosted_zone({
1554
1577
  # name: "DNSName", # required
1555
1578
  # vpc: {
1556
- # 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
1579
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
1557
1580
  # vpc_id: "VPCId",
1558
1581
  # },
1559
1582
  # caller_reference: "Nonce", # required
@@ -1582,7 +1605,7 @@ module Aws::Route53
1582
1605
  # resp.delegation_set.caller_reference #=> String
1583
1606
  # resp.delegation_set.name_servers #=> Array
1584
1607
  # resp.delegation_set.name_servers[0] #=> String
1585
- # 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"
1608
+ # 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-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "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"
1586
1609
  # resp.vpc.vpc_id #=> String
1587
1610
  # resp.location #=> String
1588
1611
  #
@@ -1605,14 +1628,14 @@ module Aws::Route53
1605
1628
  # The unique string (ID) used to identify a hosted zone.
1606
1629
  #
1607
1630
  # @option params [required, String] :key_management_service_arn
1608
- # The Amazon resource name (ARN) for a customer managed customer master
1609
- # key (CMK) in Key Management Service (KMS). The
1610
- # `KeyManagementServiceArn` must be unique for each key-signing key
1611
- # (KSK) in a single hosted zone. To see an example of
1612
- # `KeyManagementServiceArn` that grants the correct permissions for
1613
- # DNSSEC, scroll down to **Example**.
1631
+ # The Amazon resource name (ARN) for a customer managed key in Key
1632
+ # Management Service (KMS). The `KeyManagementServiceArn` must be unique
1633
+ # for each key-signing key (KSK) in a single hosted zone. To see an
1634
+ # example of `KeyManagementServiceArn` that grants the correct
1635
+ # permissions for DNSSEC, scroll down to **Example**.
1614
1636
  #
1615
- # You must configure the customer managed CMK as follows:
1637
+ # You must configure the customer managed customer managed key as
1638
+ # follows:
1616
1639
  #
1617
1640
  # Status
1618
1641
  #
@@ -1643,7 +1666,7 @@ module Aws::Route53
1643
1666
  #
1644
1667
  # ^
1645
1668
  #
1646
- # For more information about working with a customer managed CMK in KMS,
1669
+ # For more information about working with a customer managed key in KMS,
1647
1670
  # see [Key Management Service concepts][1].
1648
1671
  #
1649
1672
  #
@@ -2192,7 +2215,7 @@ module Aws::Route53
2192
2215
  # resp = client.create_vpc_association_authorization({
2193
2216
  # hosted_zone_id: "ResourceId", # required
2194
2217
  # vpc: { # required
2195
- # 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
2218
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
2196
2219
  # vpc_id: "VPCId",
2197
2220
  # },
2198
2221
  # })
@@ -2200,7 +2223,7 @@ module Aws::Route53
2200
2223
  # @example Response structure
2201
2224
  #
2202
2225
  # resp.hosted_zone_id #=> String
2203
- # 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"
2226
+ # 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-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "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"
2204
2227
  # resp.vpc.vpc_id #=> String
2205
2228
  #
2206
2229
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
@@ -2380,6 +2403,16 @@ module Aws::Route53
2380
2403
  # deactivate it. The KSK must be deactivated before you can delete it
2381
2404
  # regardless of whether the hosted zone is enabled for DNSSEC signing.
2382
2405
  #
2406
+ # You can use [DeactivateKeySigningKey][1] to deactivate the key before
2407
+ # you delete it.
2408
+ #
2409
+ # Use [GetDNSSEC][2] to verify that the KSK is in an `INACTIVE` status.
2410
+ #
2411
+ #
2412
+ #
2413
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeactivateKeySigningKey.html
2414
+ # [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetDNSSEC.html
2415
+ #
2383
2416
  # @option params [required, String] :hosted_zone_id
2384
2417
  # A unique string used to identify a hosted zone.
2385
2418
  #
@@ -2585,7 +2618,7 @@ module Aws::Route53
2585
2618
  # resp = client.delete_vpc_association_authorization({
2586
2619
  # hosted_zone_id: "ResourceId", # required
2587
2620
  # vpc: { # required
2588
- # 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
2621
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
2589
2622
  # vpc_id: "VPCId",
2590
2623
  # },
2591
2624
  # })
@@ -2680,7 +2713,7 @@ module Aws::Route53
2680
2713
  # resp = client.disassociate_vpc_from_hosted_zone({
2681
2714
  # hosted_zone_id: "ResourceId", # required
2682
2715
  # vpc: { # required
2683
- # 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
2716
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
2684
2717
  # vpc_id: "VPCId",
2685
2718
  # },
2686
2719
  # comment: "DisassociateVPCComment",
@@ -3057,7 +3090,7 @@ module Aws::Route53
3057
3090
  # resp.health_check.health_check_config.enable_sni #=> Boolean
3058
3091
  # resp.health_check.health_check_config.regions #=> Array
3059
3092
  # 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"
3060
- # 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"
3093
+ # 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-southeast-3", "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-iso-west-1", "us-isob-east-1"
3061
3094
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
3062
3095
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
3063
3096
  # resp.health_check.health_check_config.routing_control_arn #=> String
@@ -3251,7 +3284,7 @@ module Aws::Route53
3251
3284
  # resp.delegation_set.name_servers #=> Array
3252
3285
  # resp.delegation_set.name_servers[0] #=> String
3253
3286
  # resp.vp_cs #=> Array
3254
- # 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"
3287
+ # 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-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "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"
3255
3288
  # resp.vp_cs[0].vpc_id #=> String
3256
3289
  #
3257
3290
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
@@ -3726,7 +3759,7 @@ module Aws::Route53
3726
3759
  # resp.health_checks[0].health_check_config.enable_sni #=> Boolean
3727
3760
  # resp.health_checks[0].health_check_config.regions #=> Array
3728
3761
  # 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"
3729
- # 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"
3762
+ # 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-southeast-3", "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-iso-west-1", "us-isob-east-1"
3730
3763
  # resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
3731
3764
  # resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
3732
3765
  # resp.health_checks[0].health_check_config.routing_control_arn #=> String
@@ -4014,7 +4047,7 @@ module Aws::Route53
4014
4047
  #
4015
4048
  # resp = client.list_hosted_zones_by_vpc({
4016
4049
  # vpc_id: "VPCId", # required
4017
- # vpc_region: "us-east-1", # required, 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
4050
+ # vpc_region: "us-east-1", # required, 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
4018
4051
  # max_items: 1,
4019
4052
  # next_token: "PaginationToken",
4020
4053
  # })
@@ -4272,7 +4305,7 @@ module Aws::Route53
4272
4305
  # resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
4273
4306
  # resp.resource_record_sets[0].set_identifier #=> String
4274
4307
  # resp.resource_record_sets[0].weight #=> Integer
4275
- # 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"
4308
+ # 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-southeast-3", "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"
4276
4309
  # resp.resource_record_sets[0].geo_location.continent_code #=> String
4277
4310
  # resp.resource_record_sets[0].geo_location.country_code #=> String
4278
4311
  # resp.resource_record_sets[0].geo_location.subdivision_code #=> String
@@ -4950,7 +4983,7 @@ module Aws::Route53
4950
4983
  # resp.hosted_zone_id #=> String
4951
4984
  # resp.next_token #=> String
4952
4985
  # resp.vp_cs #=> Array
4953
- # 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"
4986
+ # 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-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "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"
4954
4987
  # resp.vp_cs[0].vpc_id #=> String
4955
4988
  #
4956
4989
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
@@ -5352,10 +5385,10 @@ module Aws::Route53
5352
5385
  #
5353
5386
  # * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
5354
5387
  #
5355
- # * `LastKnownStatus`\: Route 53 uses the status of the health check
5356
- # from the last time CloudWatch had sufficient data to determine the
5357
- # alarm state. For new health checks that have no last known status,
5358
- # the default status for the health check is healthy.
5388
+ # * `LastKnownStatus`\: By default, Route 53 uses the status of the
5389
+ # health check from the last time CloudWatch had sufficient data to
5390
+ # determine the alarm state. For new health checks that have no last
5391
+ # known status, the status for the health check is healthy.
5359
5392
  #
5360
5393
  # @option params [Array<String>] :reset_elements
5361
5394
  # A complex type that contains one `ResettableElementName` element for
@@ -5402,7 +5435,7 @@ module Aws::Route53
5402
5435
  # enable_sni: false,
5403
5436
  # 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
5404
5437
  # alarm_identifier: {
5405
- # 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
5438
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
5406
5439
  # name: "AlarmName", # required
5407
5440
  # },
5408
5441
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -5432,7 +5465,7 @@ module Aws::Route53
5432
5465
  # resp.health_check.health_check_config.enable_sni #=> Boolean
5433
5466
  # resp.health_check.health_check_config.regions #=> Array
5434
5467
  # 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"
5435
- # 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"
5468
+ # 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-southeast-3", "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-iso-west-1", "us-isob-east-1"
5436
5469
  # resp.health_check.health_check_config.alarm_identifier.name #=> String
5437
5470
  # resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
5438
5471
  # resp.health_check.health_check_config.routing_control_arn #=> String
@@ -5625,7 +5658,7 @@ module Aws::Route53
5625
5658
  params: params,
5626
5659
  config: config)
5627
5660
  context[:gem_name] = 'aws-sdk-route53'
5628
- context[:gem_version] = '1.56.0'
5661
+ context[:gem_version] = '1.60.0'
5629
5662
  Seahorse::Client::Request.new(handlers, context)
5630
5663
  end
5631
5664
 
@@ -2223,6 +2223,7 @@ module Aws::Route53
2223
2223
  o.output = Shapes::ShapeRef.new(shape: UpdateHostedZoneCommentResponse)
2224
2224
  o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
2225
2225
  o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
2226
+ o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
2226
2227
  end)
2227
2228
 
2228
2229
  api.add_operation(:update_traffic_policy_comment, Seahorse::Model::Operation.new.tap do |o|
@@ -100,7 +100,7 @@ module Aws::Route53
100
100
  # data as a hash:
101
101
  #
102
102
  # {
103
- # 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
103
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
104
104
  # name: "AlarmName", # required
105
105
  # }
106
106
  #
@@ -563,7 +563,7 @@ module Aws::Route53
563
563
  # {
564
564
  # hosted_zone_id: "ResourceId", # required
565
565
  # vpc: { # required
566
- # 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
566
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
567
567
  # vpc_id: "VPCId",
568
568
  # },
569
569
  # comment: "AssociateVPCComment",
@@ -623,7 +623,7 @@ module Aws::Route53
623
623
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
624
624
  # set_identifier: "ResourceRecordSetIdentifier",
625
625
  # weight: 1,
626
- # 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
626
+ # 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-southeast-3, 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
627
627
  # geo_location: {
628
628
  # continent_code: "GeoLocationContinentCode",
629
629
  # country_code: "GeoLocationCountryCode",
@@ -701,7 +701,7 @@ module Aws::Route53
701
701
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
702
702
  # set_identifier: "ResourceRecordSetIdentifier",
703
703
  # weight: 1,
704
- # 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
704
+ # 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-southeast-3, 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
705
705
  # geo_location: {
706
706
  # continent_code: "GeoLocationContinentCode",
707
707
  # country_code: "GeoLocationCountryCode",
@@ -806,7 +806,7 @@ module Aws::Route53
806
806
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
807
807
  # set_identifier: "ResourceRecordSetIdentifier",
808
808
  # weight: 1,
809
- # 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
809
+ # 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-southeast-3, 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
810
810
  # geo_location: {
811
811
  # continent_code: "GeoLocationContinentCode",
812
812
  # country_code: "GeoLocationCountryCode",
@@ -1094,7 +1094,7 @@ module Aws::Route53
1094
1094
  # enable_sni: false,
1095
1095
  # 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
1096
1096
  # alarm_identifier: {
1097
- # 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
1097
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
1098
1098
  # name: "AlarmName", # required
1099
1099
  # },
1100
1100
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -1169,7 +1169,7 @@ module Aws::Route53
1169
1169
  # {
1170
1170
  # name: "DNSName", # required
1171
1171
  # vpc: {
1172
- # 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
1172
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
1173
1173
  # vpc_id: "VPCId",
1174
1174
  # },
1175
1175
  # caller_reference: "Nonce", # required
@@ -1199,7 +1199,10 @@ module Aws::Route53
1199
1199
  # about the Amazon VPC that you're associating with this hosted zone.
1200
1200
  #
1201
1201
  # You can specify only one Amazon VPC when you create a private hosted
1202
- # zone. To associate additional Amazon VPCs with the hosted zone, use
1202
+ # zone. If you are associating a VPC with a hosted zone with this
1203
+ # request, the paramaters `VPCId` and `VPCRegion` are also required.
1204
+ #
1205
+ # To associate additional Amazon VPCs with the hosted zone, use
1203
1206
  # [AssociateVPCWithHostedZone][1] after you create a hosted zone.
1204
1207
  #
1205
1208
  #
@@ -1309,14 +1312,14 @@ module Aws::Route53
1309
1312
  # @return [String]
1310
1313
  #
1311
1314
  # @!attribute [rw] key_management_service_arn
1312
- # The Amazon resource name (ARN) for a customer managed customer
1313
- # master key (CMK) in Key Management Service (KMS). The
1314
- # `KeyManagementServiceArn` must be unique for each key-signing key
1315
- # (KSK) in a single hosted zone. To see an example of
1316
- # `KeyManagementServiceArn` that grants the correct permissions for
1317
- # DNSSEC, scroll down to **Example**.
1315
+ # The Amazon resource name (ARN) for a customer managed key in Key
1316
+ # Management Service (KMS). The `KeyManagementServiceArn` must be
1317
+ # unique for each key-signing key (KSK) in a single hosted zone. To
1318
+ # see an example of `KeyManagementServiceArn` that grants the correct
1319
+ # permissions for DNSSEC, scroll down to **Example**.
1318
1320
  #
1319
- # You must configure the customer managed CMK as follows:
1321
+ # You must configure the customer managed customer managed key as
1322
+ # follows:
1320
1323
  #
1321
1324
  # Status
1322
1325
  #
@@ -1347,7 +1350,7 @@ module Aws::Route53
1347
1350
  #
1348
1351
  # ^
1349
1352
  #
1350
- # For more information about working with a customer managed CMK in
1353
+ # For more information about working with a customer managed key in
1351
1354
  # KMS, see [Key Management Service concepts][1].
1352
1355
  #
1353
1356
  #
@@ -1720,7 +1723,7 @@ module Aws::Route53
1720
1723
  # {
1721
1724
  # hosted_zone_id: "ResourceId", # required
1722
1725
  # vpc: { # required
1723
- # 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
1726
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
1724
1727
  # vpc_id: "VPCId",
1725
1728
  # },
1726
1729
  # }
@@ -1802,8 +1805,8 @@ module Aws::Route53
1802
1805
  #
1803
1806
  # : There is a problem with signing in the hosted zone that requires
1804
1807
  # you to take action to resolve. For example, the customer managed
1805
- # customer master key (CMK) might have been deleted, or the
1806
- # permissions for the customer managed CMK might have been changed.
1808
+ # key might have been deleted, or the permissions for the customer
1809
+ # managed key might have been changed.
1807
1810
  #
1808
1811
  # INTERNAL\_FAILURE
1809
1812
  #
@@ -2192,7 +2195,7 @@ module Aws::Route53
2192
2195
  # {
2193
2196
  # hosted_zone_id: "ResourceId", # required
2194
2197
  # vpc: { # required
2195
- # 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
2198
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
2196
2199
  # vpc_id: "VPCId",
2197
2200
  # },
2198
2201
  # }
@@ -2289,7 +2292,7 @@ module Aws::Route53
2289
2292
  # {
2290
2293
  # hosted_zone_id: "ResourceId", # required
2291
2294
  # vpc: { # required
2292
- # 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
2295
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
2293
2296
  # vpc_id: "VPCId",
2294
2297
  # },
2295
2298
  # comment: "DisassociateVPCComment",
@@ -3353,7 +3356,7 @@ module Aws::Route53
3353
3356
  # enable_sni: false,
3354
3357
  # 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
3355
3358
  # alarm_identifier: {
3356
- # 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
3359
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
3357
3360
  # name: "AlarmName", # required
3358
3361
  # },
3359
3362
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -4276,11 +4279,10 @@ module Aws::Route53
4276
4279
  #
4277
4280
  # @!attribute [rw] kms_arn
4278
4281
  # The Amazon resource name (ARN) used to identify the customer managed
4279
- # customer master key (CMK) in Key Management Service (KMS). The
4280
- # `KmsArn` must be unique for each key-signing key (KSK) in a single
4281
- # hosted zone.
4282
+ # key in Key Management Service (KMS). The `KmsArn` must be unique for
4283
+ # each key-signing key (KSK) in a single hosted zone.
4282
4284
  #
4283
- # You must configure the CMK as follows:
4285
+ # You must configure the customer managed key as follows:
4284
4286
  #
4285
4287
  # Status
4286
4288
  #
@@ -4311,7 +4313,7 @@ module Aws::Route53
4311
4313
  #
4312
4314
  # ^
4313
4315
  #
4314
- # For more information about working with the customer managed CMK in
4316
+ # For more information about working with the customer managed key in
4315
4317
  # KMS, see [Key Management Service concepts][1].
4316
4318
  #
4317
4319
  #
@@ -4416,9 +4418,9 @@ module Aws::Route53
4416
4418
  # ACTION\_NEEDED
4417
4419
  #
4418
4420
  # : There is a problem with the KSK that requires you to take action
4419
- # to resolve. For example, the customer managed customer master key
4420
- # (CMK) might have been deleted, or the permissions for the customer
4421
- # managed CMK might have been changed.
4421
+ # to resolve. For example, the customer managed key might have been
4422
+ # deleted, or the permissions for the customer managed key might
4423
+ # have been changed.
4422
4424
  #
4423
4425
  # INTERNAL\_FAILURE
4424
4426
  #
@@ -4467,7 +4469,7 @@ module Aws::Route53
4467
4469
  end
4468
4470
 
4469
4471
  # You've already created a key-signing key (KSK) with this name or with
4470
- # the same customer managed customer master key (CMK) ARN.
4472
+ # the same customer managed key ARN.
4471
4473
  #
4472
4474
  # @!attribute [rw] message
4473
4475
  # @return [String]
@@ -4925,7 +4927,7 @@ module Aws::Route53
4925
4927
  #
4926
4928
  # {
4927
4929
  # vpc_id: "VPCId", # required
4928
- # vpc_region: "us-east-1", # required, 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
4930
+ # vpc_region: "us-east-1", # required, 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
4929
4931
  # max_items: 1,
4930
4932
  # next_token: "PaginationToken",
4931
4933
  # }
@@ -6419,7 +6421,7 @@ module Aws::Route53
6419
6421
  # type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
6420
6422
  # set_identifier: "ResourceRecordSetIdentifier",
6421
6423
  # weight: 1,
6422
- # 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
6424
+ # 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-southeast-3, 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
6423
6425
  # geo_location: {
6424
6426
  # continent_code: "GeoLocationContinentCode",
6425
6427
  # country_code: "GeoLocationCountryCode",
@@ -7692,7 +7694,7 @@ module Aws::Route53
7692
7694
  # enable_sni: false,
7693
7695
  # 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
7694
7696
  # alarm_identifier: {
7695
- # 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
7697
+ # 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-southeast-3, 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-iso-west-1, us-isob-east-1
7696
7698
  # name: "AlarmName", # required
7697
7699
  # },
7698
7700
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -8011,10 +8013,10 @@ module Aws::Route53
8011
8013
  #
8012
8014
  # * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
8013
8015
  #
8014
- # * `LastKnownStatus`\: Route 53 uses the status of the health check
8015
- # from the last time CloudWatch had sufficient data to determine the
8016
- # alarm state. For new health checks that have no last known status,
8017
- # the default status for the health check is healthy.
8016
+ # * `LastKnownStatus`\: By default, Route 53 uses the status of the
8017
+ # health check from the last time CloudWatch had sufficient data to
8018
+ # determine the alarm state. For new health checks that have no last
8019
+ # known status, the status for the health check is healthy.
8018
8020
  # @return [String]
8019
8021
  #
8020
8022
  # @!attribute [rw] reset_elements
@@ -8243,11 +8245,19 @@ module Aws::Route53
8243
8245
  # (Private hosted zones only) A complex type that contains information
8244
8246
  # about an Amazon VPC.
8245
8247
  #
8248
+ # If you associate a private hosted zone with an Amazon VPC when you
8249
+ # make a [CreateHostedZone][1] request, the following parameters are
8250
+ # also required.
8251
+ #
8252
+ #
8253
+ #
8254
+ # [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateHostedZone.html
8255
+ #
8246
8256
  # @note When making an API call, you may pass VPC
8247
8257
  # data as a hash:
8248
8258
  #
8249
8259
  # {
8250
- # 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
8260
+ # 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-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, 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
8251
8261
  # vpc_id: "VPCId",
8252
8262
  # }
8253
8263
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-route53/customizations'
49
49
  # @!group service
50
50
  module Aws::Route53
51
51
 
52
- GEM_VERSION = '1.56.0'
52
+ GEM_VERSION = '1.60.0'
53
53
 
54
54
  end
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.56.0
4
+ version: 1.60.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: 2021-10-18 00:00:00.000000000 Z
11
+ date: 2021-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.121.2
22
+ version: 3.125.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.121.2
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement