aws-sdk-route53 1.49.0 → 1.53.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +116 -105
- data/lib/aws-sdk-route53/client_api.rb +8 -0
- data/lib/aws-sdk-route53/types.rb +180 -146
- metadata +5 -6
@@ -300,6 +300,7 @@ module Aws::Route53
|
|
300
300
|
ResourceURI = Shapes::StringShape.new(name: 'ResourceURI')
|
301
301
|
ReusableDelegationSetLimit = Shapes::StructureShape.new(name: 'ReusableDelegationSetLimit')
|
302
302
|
ReusableDelegationSetLimitType = Shapes::StringShape.new(name: 'ReusableDelegationSetLimitType')
|
303
|
+
RoutingControlArn = Shapes::StringShape.new(name: 'RoutingControlArn')
|
303
304
|
SearchString = Shapes::StringShape.new(name: 'SearchString')
|
304
305
|
ServeSignature = Shapes::StringShape.new(name: 'ServeSignature')
|
305
306
|
ServicePrincipal = Shapes::StringShape.new(name: 'ServicePrincipal')
|
@@ -807,6 +808,7 @@ module Aws::Route53
|
|
807
808
|
HealthCheckConfig.add_member(:regions, Shapes::ShapeRef.new(shape: HealthCheckRegionList, location_name: "Regions"))
|
808
809
|
HealthCheckConfig.add_member(:alarm_identifier, Shapes::ShapeRef.new(shape: AlarmIdentifier, location_name: "AlarmIdentifier"))
|
809
810
|
HealthCheckConfig.add_member(:insufficient_data_health_status, Shapes::ShapeRef.new(shape: InsufficientDataHealthStatus, location_name: "InsufficientDataHealthStatus"))
|
811
|
+
HealthCheckConfig.add_member(:routing_control_arn, Shapes::ShapeRef.new(shape: RoutingControlArn, location_name: "RoutingControlArn"))
|
810
812
|
HealthCheckConfig.struct_class = Types::HealthCheckConfig
|
811
813
|
|
812
814
|
HealthCheckInUse.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -1405,6 +1407,7 @@ module Aws::Route53
|
|
1405
1407
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKeySigningKeyStatus)
|
1406
1408
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSigningStatus)
|
1407
1409
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKMSArn)
|
1410
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1408
1411
|
end)
|
1409
1412
|
|
1410
1413
|
api.add_operation(:associate_vpc_with_hosted_zone, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1647,6 +1650,7 @@ module Aws::Route53
|
|
1647
1650
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSigningStatus)
|
1648
1651
|
o.errors << Shapes::ShapeRef.new(shape: KeySigningKeyInUse)
|
1649
1652
|
o.errors << Shapes::ShapeRef.new(shape: KeySigningKeyInParentDSRecord)
|
1653
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1650
1654
|
end)
|
1651
1655
|
|
1652
1656
|
api.add_operation(:delete_health_check, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1684,6 +1688,7 @@ module Aws::Route53
|
|
1684
1688
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKeySigningKeyStatus)
|
1685
1689
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSigningStatus)
|
1686
1690
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKMSArn)
|
1691
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1687
1692
|
end)
|
1688
1693
|
|
1689
1694
|
api.add_operation(:delete_query_logging_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1763,6 +1768,7 @@ module Aws::Route53
|
|
1763
1768
|
o.errors << Shapes::ShapeRef.new(shape: DNSSECNotFound)
|
1764
1769
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKeySigningKeyStatus)
|
1765
1770
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKMSArn)
|
1771
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1766
1772
|
end)
|
1767
1773
|
|
1768
1774
|
api.add_operation(:disassociate_vpc_from_hosted_zone, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1797,6 +1803,7 @@ module Aws::Route53
|
|
1797
1803
|
o.errors << Shapes::ShapeRef.new(shape: HostedZonePartiallyDelegated)
|
1798
1804
|
o.errors << Shapes::ShapeRef.new(shape: DNSSECNotFound)
|
1799
1805
|
o.errors << Shapes::ShapeRef.new(shape: InvalidKeySigningKeyStatus)
|
1806
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1800
1807
|
end)
|
1801
1808
|
|
1802
1809
|
api.add_operation(:get_account_limit, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1834,6 +1841,7 @@ module Aws::Route53
|
|
1834
1841
|
o.output = Shapes::ShapeRef.new(shape: GetDNSSECResponse)
|
1835
1842
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
|
1836
1843
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgument)
|
1844
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
1837
1845
|
end)
|
1838
1846
|
|
1839
1847
|
api.add_operation(:get_geo_location, Seahorse::Model::Operation.new.tap do |o|
|
@@ -148,9 +148,9 @@ module Aws::Route53
|
|
148
148
|
include Aws::Structure
|
149
149
|
end
|
150
150
|
|
151
|
-
# *Alias resource record sets only:* Information about the
|
152
|
-
# such as a CloudFront distribution or an Amazon S3
|
153
|
-
# want to route traffic to.
|
151
|
+
# *Alias resource record sets only:* Information about the Amazon Web
|
152
|
+
# Services resource, such as a CloudFront distribution or an Amazon S3
|
153
|
+
# bucket, that you want to route traffic to.
|
154
154
|
#
|
155
155
|
# When creating resource record sets for a private hosted zone, note the
|
156
156
|
# following:
|
@@ -182,7 +182,7 @@ module Aws::Route53
|
|
182
182
|
# Amazon API Gateway custom regional APIs and edge-optimized APIs
|
183
183
|
#
|
184
184
|
# : Specify the hosted zone ID for your API. You can get the
|
185
|
-
# applicable value using the
|
185
|
+
# applicable value using the CLI command [get-domain-names][1]\:
|
186
186
|
#
|
187
187
|
# * For regional APIs, specify the value of `regionalHostedZoneId`.
|
188
188
|
#
|
@@ -192,7 +192,7 @@ module Aws::Route53
|
|
192
192
|
# Amazon Virtual Private Cloud interface VPC endpoint
|
193
193
|
#
|
194
194
|
# : Specify the hosted zone ID for your interface endpoint. You can
|
195
|
-
# get the value of `HostedZoneId` using the
|
195
|
+
# get the value of `HostedZoneId` using the CLI command
|
196
196
|
# [describe-vpc-endpoints][2].
|
197
197
|
#
|
198
198
|
# CloudFront distribution
|
@@ -209,8 +209,8 @@ module Aws::Route53
|
|
209
209
|
# : Specify the hosted zone ID for the region that you created the
|
210
210
|
# environment in. The environment must have a regionalized
|
211
211
|
# subdomain. For a list of regions and the corresponding hosted zone
|
212
|
-
# IDs, see [
|
213
|
-
#
|
212
|
+
# IDs, see [Elastic Beanstalk endpoints and quotas][3] in the the
|
213
|
+
# *Amazon Web Services General Reference*.
|
214
214
|
#
|
215
215
|
# ELB load balancer
|
216
216
|
#
|
@@ -223,10 +223,10 @@ module Aws::Route53
|
|
223
223
|
# in. Note that there are separate columns for Application and
|
224
224
|
# Classic Load Balancers and for Network Load Balancers.
|
225
225
|
#
|
226
|
-
# * **
|
227
|
-
# **Load Balancers** in the navigation pane,
|
228
|
-
# balancer, and get the value of the **Hosted
|
229
|
-
# **Description** tab.
|
226
|
+
# * **Amazon Web Services Management Console**\: Go to the Amazon
|
227
|
+
# EC2 page, choose **Load Balancers** in the navigation pane,
|
228
|
+
# select the load balancer, and get the value of the **Hosted
|
229
|
+
# zone** field on the **Description** tab.
|
230
230
|
#
|
231
231
|
# * **Elastic Load Balancing API**\: Use `DescribeLoadBalancers` to
|
232
232
|
# get the applicable value. For more information, see the
|
@@ -239,9 +239,8 @@ module Aws::Route53
|
|
239
239
|
# [DescribeLoadBalancers][6] to get the value of
|
240
240
|
# `CanonicalHostedZoneId`.
|
241
241
|
#
|
242
|
-
# * **
|
243
|
-
#
|
244
|
-
# guide:
|
242
|
+
# * **CLI**\: Use `describe-load-balancers` to get the applicable
|
243
|
+
# value. For more information, see the applicable guide:
|
245
244
|
#
|
246
245
|
# * Classic Load Balancers: Use [describe-load-balancers][7] to
|
247
246
|
# get the value of `CanonicalHostedZoneNameId`.
|
@@ -250,7 +249,7 @@ module Aws::Route53
|
|
250
249
|
# [describe-load-balancers][8] to get the value of
|
251
250
|
# `CanonicalHostedZoneId`.
|
252
251
|
#
|
253
|
-
#
|
252
|
+
# Global Accelerator accelerator
|
254
253
|
#
|
255
254
|
# : Specify `Z2BJ6XQ5FK7U4H`.
|
256
255
|
#
|
@@ -287,7 +286,7 @@ module Aws::Route53
|
|
287
286
|
# Amazon API Gateway custom regional APIs and edge-optimized APIs
|
288
287
|
#
|
289
288
|
# : Specify the applicable domain name for your API. You can get the
|
290
|
-
# applicable value using the
|
289
|
+
# applicable value using the CLI command [get-domain-names][1]\:
|
291
290
|
#
|
292
291
|
# * For regional APIs, specify the value of `regionalDomainName`.
|
293
292
|
#
|
@@ -306,7 +305,7 @@ module Aws::Route53
|
|
306
305
|
# `vpce-123456789abcdef01-example-us-east-1a.elasticloadbalancing.us-east-1.vpce.amazonaws.com`.
|
307
306
|
# For edge-optimized APIs, this is the domain name for the
|
308
307
|
# corresponding CloudFront distribution. You can get the value of
|
309
|
-
# `DnsName` using the
|
308
|
+
# `DnsName` using the CLI command [describe-vpc-endpoints][2].
|
310
309
|
#
|
311
310
|
# CloudFront distribution
|
312
311
|
#
|
@@ -356,30 +355,30 @@ module Aws::Route53
|
|
356
355
|
# can use the following methods to get the value of the CNAME
|
357
356
|
# attribute:
|
358
357
|
#
|
359
|
-
# * *
|
360
|
-
# value by using the console, see [Using Custom
|
361
|
-
# Elastic Beanstalk][4] in the *
|
362
|
-
# Guide*.
|
358
|
+
# * *Amazon Web Services Management Console*\: For information about
|
359
|
+
# how to get the value by using the console, see [Using Custom
|
360
|
+
# Domains with Elastic Beanstalk][4] in the *Elastic Beanstalk
|
361
|
+
# Developer Guide*.
|
363
362
|
#
|
364
363
|
# * *Elastic Beanstalk API*\: Use the `DescribeEnvironments` action
|
365
364
|
# to get the value of the `CNAME` attribute. For more information,
|
366
|
-
# see [DescribeEnvironments][5] in the *
|
365
|
+
# see [DescribeEnvironments][5] in the *Elastic Beanstalk API
|
367
366
|
# Reference*.
|
368
367
|
#
|
369
|
-
# * *
|
370
|
-
#
|
371
|
-
# [describe-environments][6] in the *
|
368
|
+
# * *CLI*\: Use the `describe-environments` command to get the value
|
369
|
+
# of the `CNAME` attribute. For more information, see
|
370
|
+
# [describe-environments][6] in the *CLI Command Reference*.
|
372
371
|
#
|
373
372
|
# ELB load balancer
|
374
373
|
#
|
375
374
|
# : Specify the DNS name that is associated with the load balancer.
|
376
|
-
# Get the DNS name by using the
|
377
|
-
# or the
|
375
|
+
# Get the DNS name by using the Amazon Web Services Management
|
376
|
+
# Console, the ELB API, or the CLI.
|
378
377
|
#
|
379
|
-
# * **
|
380
|
-
# Balancers** in the navigation pane, choose the
|
381
|
-
# choose the **Description** tab, and get the value
|
382
|
-
# name** field.
|
378
|
+
# * **Amazon Web Services Management Console**\: Go to the EC2 page,
|
379
|
+
# choose **Load Balancers** in the navigation pane, choose the
|
380
|
+
# load balancer, choose the **Description** tab, and get the value
|
381
|
+
# of the **DNS name** field.
|
383
382
|
#
|
384
383
|
# If you're routing traffic to a Classic Load Balancer, get the
|
385
384
|
# value that begins with **dualstack**. If you're routing traffic
|
@@ -395,7 +394,7 @@ module Aws::Route53
|
|
395
394
|
# * Application and Network Load Balancers:
|
396
395
|
# [DescribeLoadBalancers][8]
|
397
396
|
#
|
398
|
-
# * **
|
397
|
+
# * **CLI**\: Use `describe-load-balancers` to get the value of
|
399
398
|
# `DNSName`. For more information, see the applicable guide:
|
400
399
|
#
|
401
400
|
# * Classic Load Balancers: [describe-load-balancers][9]
|
@@ -403,15 +402,14 @@ module Aws::Route53
|
|
403
402
|
# * Application and Network Load Balancers:
|
404
403
|
# [describe-load-balancers][10]
|
405
404
|
#
|
406
|
-
#
|
405
|
+
# Global Accelerator accelerator
|
407
406
|
#
|
408
407
|
# : Specify the DNS name for your accelerator:
|
409
408
|
#
|
410
409
|
# * **Global Accelerator API:** To get the DNS name, use
|
411
410
|
# [DescribeAccelerator][11].
|
412
411
|
#
|
413
|
-
# * **
|
414
|
-
# [describe-accelerator][12].
|
412
|
+
# * **CLI:** To get the DNS name, use [describe-accelerator][12].
|
415
413
|
#
|
416
414
|
# Amazon S3 bucket that is configured as a static website
|
417
415
|
#
|
@@ -460,8 +458,9 @@ module Aws::Route53
|
|
460
458
|
# *Applies only to alias, failover alias, geolocation alias, latency
|
461
459
|
# alias, and weighted alias resource record sets:* When
|
462
460
|
# `EvaluateTargetHealth` is `true`, an alias resource record set
|
463
|
-
# inherits the health of the referenced
|
464
|
-
# load balancer or another resource record set in the
|
461
|
+
# inherits the health of the referenced Amazon Web Services resource,
|
462
|
+
# such as an ELB load balancer or another resource record set in the
|
463
|
+
# hosted zone.
|
465
464
|
#
|
466
465
|
# Note the following:
|
467
466
|
#
|
@@ -528,12 +527,12 @@ module Aws::Route53
|
|
528
527
|
#
|
529
528
|
# Other records in the same hosted zone
|
530
529
|
#
|
531
|
-
# : If the
|
532
|
-
# group of records (for example, a group of
|
533
|
-
# not another alias record, we recommend
|
534
|
-
# check with all of the records in the
|
535
|
-
# information, see [What Happens When You
|
536
|
-
# the *Amazon Route 53 Developer Guide*.
|
530
|
+
# : If the Amazon Web Services resource that you specify in `DNSName`
|
531
|
+
# is a record or a group of records (for example, a group of
|
532
|
+
# weighted records) but is not another alias record, we recommend
|
533
|
+
# that you associate a health check with all of the records in the
|
534
|
+
# alias target. For more information, see [What Happens When You
|
535
|
+
# Omit Health Checks?][1] in the *Amazon Route 53 Developer Guide*.
|
537
536
|
#
|
538
537
|
# For more information and examples, see [Amazon Route 53 Health
|
539
538
|
# Checks and DNS Failover][2] in the *Amazon Route 53 Developer
|
@@ -750,7 +749,12 @@ module Aws::Route53
|
|
750
749
|
# your hosted zone.
|
751
750
|
#
|
752
751
|
# @!attribute [rw] id
|
753
|
-
#
|
752
|
+
# This element contains an ID that you use when performing a
|
753
|
+
# [GetChange][1] action to get detailed information about the change.
|
754
|
+
#
|
755
|
+
#
|
756
|
+
#
|
757
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
|
754
758
|
# @return [String]
|
755
759
|
#
|
756
760
|
# @!attribute [rw] status
|
@@ -770,15 +774,7 @@ module Aws::Route53
|
|
770
774
|
# @return [Time]
|
771
775
|
#
|
772
776
|
# @!attribute [rw] comment
|
773
|
-
# A
|
774
|
-
# to your hosted zone.
|
775
|
-
#
|
776
|
-
# This element contains an ID that you use when performing a
|
777
|
-
# [GetChange][1] action to get detailed information about the change.
|
778
|
-
#
|
779
|
-
#
|
780
|
-
#
|
781
|
-
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
|
777
|
+
# A comment you can provide.
|
782
778
|
# @return [String]
|
783
779
|
#
|
784
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeInfo AWS API Documentation
|
@@ -1084,7 +1080,7 @@ module Aws::Route53
|
|
1084
1080
|
# health_check_config: { # required
|
1085
1081
|
# ip_address: "IPAddress",
|
1086
1082
|
# port: 1,
|
1087
|
-
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC
|
1083
|
+
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC, RECOVERY_CONTROL
|
1088
1084
|
# resource_path: "ResourcePath",
|
1089
1085
|
# fully_qualified_domain_name: "FullyQualifiedDomainName",
|
1090
1086
|
# search_string: "SearchString",
|
@@ -1102,6 +1098,7 @@ module Aws::Route53
|
|
1102
1098
|
# name: "AlarmName", # required
|
1103
1099
|
# },
|
1104
1100
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
1101
|
+
# routing_control_arn: "RoutingControlArn",
|
1105
1102
|
# },
|
1106
1103
|
# }
|
1107
1104
|
#
|
@@ -1313,7 +1310,7 @@ module Aws::Route53
|
|
1313
1310
|
#
|
1314
1311
|
# @!attribute [rw] key_management_service_arn
|
1315
1312
|
# The Amazon resource name (ARN) for a customer managed customer
|
1316
|
-
# master key (CMK) in
|
1313
|
+
# master key (CMK) in Key Management Service (KMS). The
|
1317
1314
|
# `KeyManagementServiceArn` must be unique for each key-signing key
|
1318
1315
|
# (KSK) in a single hosted zone. To see an example of
|
1319
1316
|
# `KeyManagementServiceArn` that grants the correct permissions for
|
@@ -1346,12 +1343,12 @@ module Aws::Route53
|
|
1346
1343
|
# The key policy must also include the Amazon Route 53 service in
|
1347
1344
|
# the principal for your account. Specify the following:
|
1348
1345
|
#
|
1349
|
-
# * `"Service": "dnssec
|
1346
|
+
# * `"Service": "dnssec-route53.amazonaws.com"`
|
1350
1347
|
#
|
1351
1348
|
# ^
|
1352
1349
|
#
|
1353
1350
|
# For more information about working with a customer managed CMK in
|
1354
|
-
#
|
1351
|
+
# KMS, see [Key Management Service concepts][1].
|
1355
1352
|
#
|
1356
1353
|
#
|
1357
1354
|
#
|
@@ -1426,7 +1423,8 @@ module Aws::Route53
|
|
1426
1423
|
#
|
1427
1424
|
# To get the ARN for a log group, you can use the CloudWatch console,
|
1428
1425
|
# the [DescribeLogGroups][1] API action, the [describe-log-groups][2]
|
1429
|
-
# command, or the applicable command in one of the
|
1426
|
+
# command, or the applicable command in one of the Amazon Web Services
|
1427
|
+
# SDKs.
|
1430
1428
|
#
|
1431
1429
|
#
|
1432
1430
|
#
|
@@ -2184,8 +2182,9 @@ module Aws::Route53
|
|
2184
2182
|
class DeleteTrafficPolicyResponse < Aws::EmptyStructure; end
|
2185
2183
|
|
2186
2184
|
# A complex type that contains information about the request to remove
|
2187
|
-
# authorization to associate a VPC that was created by one
|
2188
|
-
# with a hosted zone that was created with a different
|
2185
|
+
# authorization to associate a VPC that was created by one Amazon Web
|
2186
|
+
# Services account with a hosted zone that was created with a different
|
2187
|
+
# Amazon Web Services account.
|
2189
2188
|
#
|
2190
2189
|
# @note When making an API call, you may pass DeleteVPCAssociationAuthorizationRequest
|
2191
2190
|
# data as a hash:
|
@@ -2200,15 +2199,16 @@ module Aws::Route53
|
|
2200
2199
|
#
|
2201
2200
|
# @!attribute [rw] hosted_zone_id
|
2202
2201
|
# When removing authorization to associate a VPC that was created by
|
2203
|
-
# one
|
2204
|
-
#
|
2202
|
+
# one Amazon Web Services account with a hosted zone that was created
|
2203
|
+
# with a different Amazon Web Services account, the ID of the hosted
|
2204
|
+
# zone.
|
2205
2205
|
# @return [String]
|
2206
2206
|
#
|
2207
2207
|
# @!attribute [rw] vpc
|
2208
2208
|
# When removing authorization to associate a VPC that was created by
|
2209
|
-
# one
|
2210
|
-
#
|
2211
|
-
# VPC.
|
2209
|
+
# one Amazon Web Services account with a hosted zone that was created
|
2210
|
+
# with a different Amazon Web Services account, a complex type that
|
2211
|
+
# includes the ID and region of the VPC.
|
2212
2212
|
# @return [Types::VPC]
|
2213
2213
|
#
|
2214
2214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteVPCAssociationAuthorizationRequest AWS API Documentation
|
@@ -2733,7 +2733,7 @@ module Aws::Route53
|
|
2733
2733
|
end
|
2734
2734
|
|
2735
2735
|
# A request for the number of health checks that are associated with the
|
2736
|
-
# current
|
2736
|
+
# current Amazon Web Services account.
|
2737
2737
|
#
|
2738
2738
|
# @api private
|
2739
2739
|
#
|
@@ -2745,7 +2745,8 @@ module Aws::Route53
|
|
2745
2745
|
# request.
|
2746
2746
|
#
|
2747
2747
|
# @!attribute [rw] health_check_count
|
2748
|
-
# The number of health checks associated with the current
|
2748
|
+
# The number of health checks associated with the current Amazon Web
|
2749
|
+
# Services account.
|
2749
2750
|
# @return [Integer]
|
2750
2751
|
#
|
2751
2752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckCountResponse AWS API Documentation
|
@@ -2831,7 +2832,7 @@ module Aws::Route53
|
|
2831
2832
|
#
|
2832
2833
|
# @!attribute [rw] health_check
|
2833
2834
|
# A complex type that contains information about one health check that
|
2834
|
-
# is associated with the current
|
2835
|
+
# is associated with the current Amazon Web Services account.
|
2835
2836
|
# @return [Types::HealthCheck]
|
2836
2837
|
#
|
2837
2838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckResponse AWS API Documentation
|
@@ -2890,7 +2891,7 @@ module Aws::Route53
|
|
2890
2891
|
end
|
2891
2892
|
|
2892
2893
|
# A request to retrieve a count of all the hosted zones that are
|
2893
|
-
# associated with the current
|
2894
|
+
# associated with the current Amazon Web Services account.
|
2894
2895
|
#
|
2895
2896
|
# @api private
|
2896
2897
|
#
|
@@ -2903,7 +2904,7 @@ module Aws::Route53
|
|
2903
2904
|
#
|
2904
2905
|
# @!attribute [rw] hosted_zone_count
|
2905
2906
|
# The total number of public and private hosted zones that are
|
2906
|
-
# associated with the current
|
2907
|
+
# associated with the current Amazon Web Services account.
|
2907
2908
|
# @return [Integer]
|
2908
2909
|
#
|
2909
2910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneCountResponse AWS API Documentation
|
@@ -3152,7 +3153,7 @@ module Aws::Route53
|
|
3152
3153
|
end
|
3153
3154
|
|
3154
3155
|
# Request to get the number of traffic policy instances that are
|
3155
|
-
# associated with the current
|
3156
|
+
# associated with the current Amazon Web Services account.
|
3156
3157
|
#
|
3157
3158
|
# @api private
|
3158
3159
|
#
|
@@ -3165,7 +3166,7 @@ module Aws::Route53
|
|
3165
3166
|
#
|
3166
3167
|
# @!attribute [rw] traffic_policy_instance_count
|
3167
3168
|
# The number of traffic policy instances that are associated with the
|
3168
|
-
# current
|
3169
|
+
# current Amazon Web Services account.
|
3169
3170
|
# @return [Integer]
|
3170
3171
|
#
|
3171
3172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceCountResponse AWS API Documentation
|
@@ -3258,7 +3259,7 @@ module Aws::Route53
|
|
3258
3259
|
end
|
3259
3260
|
|
3260
3261
|
# A complex type that contains information about one health check that
|
3261
|
-
# is associated with the current
|
3262
|
+
# is associated with the current Amazon Web Services account.
|
3262
3263
|
#
|
3263
3264
|
# @!attribute [rw] id
|
3264
3265
|
# The identifier that Amazon Route 53 assigned to the health check
|
@@ -3338,7 +3339,7 @@ module Aws::Route53
|
|
3338
3339
|
# {
|
3339
3340
|
# ip_address: "IPAddress",
|
3340
3341
|
# port: 1,
|
3341
|
-
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC
|
3342
|
+
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC, RECOVERY_CONTROL
|
3342
3343
|
# resource_path: "ResourcePath",
|
3343
3344
|
# fully_qualified_domain_name: "FullyQualifiedDomainName",
|
3344
3345
|
# search_string: "SearchString",
|
@@ -3356,6 +3357,7 @@ module Aws::Route53
|
|
3356
3357
|
# name: "AlarmName", # required
|
3357
3358
|
# },
|
3358
3359
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
3360
|
+
# routing_control_arn: "RoutingControlArn",
|
3359
3361
|
# }
|
3360
3362
|
#
|
3361
3363
|
# @!attribute [rw] ip_address
|
@@ -3462,6 +3464,12 @@ module Aws::Route53
|
|
3462
3464
|
# that Route 53 health checkers consider to be healthy and compares
|
3463
3465
|
# that number with the value of `HealthThreshold`.
|
3464
3466
|
#
|
3467
|
+
# * **RECOVERY\_CONTROL**\: The health check is assocated with a
|
3468
|
+
# Route53 Application Recovery Controller routing control. If the
|
3469
|
+
# routing control state is `ON`, the health check is considered
|
3470
|
+
# healthy. If the state is `OFF`, the health check is considered
|
3471
|
+
# unhealthy.
|
3472
|
+
#
|
3465
3473
|
# For more information, see [How Route 53 Determines Whether an
|
3466
3474
|
# Endpoint Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
|
3467
3475
|
#
|
@@ -3586,9 +3594,9 @@ module Aws::Route53
|
|
3586
3594
|
#
|
3587
3595
|
# @!attribute [rw] measure_latency
|
3588
3596
|
# Specify whether you want Amazon Route 53 to measure the latency
|
3589
|
-
# between health checkers in multiple
|
3590
|
-
# and to display CloudWatch latency graphs on the
|
3591
|
-
# page in the Route 53 console.
|
3597
|
+
# between health checkers in multiple Amazon Web Services regions and
|
3598
|
+
# your endpoint, and to display CloudWatch latency graphs on the
|
3599
|
+
# **Health Checks** page in the Route 53 console.
|
3592
3600
|
#
|
3593
3601
|
# You can't change the value of `MeasureLatency` after you create a
|
3594
3602
|
# health check.
|
@@ -3719,6 +3727,18 @@ module Aws::Route53
|
|
3719
3727
|
# known status, the default status for the health check is healthy.
|
3720
3728
|
# @return [String]
|
3721
3729
|
#
|
3730
|
+
# @!attribute [rw] routing_control_arn
|
3731
|
+
# The Amazon Resource Name (ARN) for the Route 53 Application Recovery
|
3732
|
+
# Controller routing control.
|
3733
|
+
#
|
3734
|
+
# For more information about Route 53 Application Recovery Controller,
|
3735
|
+
# see [Route 53 Application Recovery Controller Developer Guide.][1].
|
3736
|
+
#
|
3737
|
+
#
|
3738
|
+
#
|
3739
|
+
# [1]: https://docs.aws.amazon.com/r53recovery/latest/dg/what-is-route-53-recovery.html
|
3740
|
+
# @return [String]
|
3741
|
+
#
|
3722
3742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckConfig AWS API Documentation
|
3723
3743
|
#
|
3724
3744
|
class HealthCheckConfig < Struct.new(
|
@@ -3738,7 +3758,8 @@ module Aws::Route53
|
|
3738
3758
|
:enable_sni,
|
3739
3759
|
:regions,
|
3740
3760
|
:alarm_identifier,
|
3741
|
-
:insufficient_data_health_status
|
3761
|
+
:insufficient_data_health_status,
|
3762
|
+
:routing_control_arn)
|
3742
3763
|
SENSITIVE = []
|
3743
3764
|
include Aws::Structure
|
3744
3765
|
end
|
@@ -3973,20 +3994,21 @@ module Aws::Route53
|
|
3973
3994
|
# vice versa.
|
3974
3995
|
#
|
3975
3996
|
# @!attribute [rw] owning_account
|
3976
|
-
# If the hosted zone was created by an
|
3977
|
-
# an
|
3978
|
-
#
|
3979
|
-
# example, when you use
|
3980
|
-
# Map creates the hosted zone using the
|
3997
|
+
# If the hosted zone was created by an Amazon Web Services account, or
|
3998
|
+
# was created by an Amazon Web Services service that creates hosted
|
3999
|
+
# zones using the current account, `OwningAccount` contains the
|
4000
|
+
# account ID of that account. For example, when you use Cloud Map to
|
4001
|
+
# create a hosted zone, Cloud Map creates the hosted zone using the
|
4002
|
+
# current Amazon Web Services account.
|
3981
4003
|
# @return [String]
|
3982
4004
|
#
|
3983
4005
|
# @!attribute [rw] owning_service
|
3984
|
-
# If an
|
3985
|
-
# associate the specified VPC with that hosted zone,
|
3986
|
-
# contains an abbreviation that identifies the
|
3987
|
-
# if Amazon Elastic File System (Amazon EFS)
|
3988
|
-
# associated a VPC with the hosted zone, the
|
3989
|
-
# is `efs.amazonaws.com`.
|
4006
|
+
# If an Amazon Web Services service uses its own account to create a
|
4007
|
+
# hosted zone and associate the specified VPC with that hosted zone,
|
4008
|
+
# `OwningService` contains an abbreviation that identifies the
|
4009
|
+
# service. For example, if Amazon Elastic File System (Amazon EFS)
|
4010
|
+
# created a hosted zone and associated a VPC with the hosted zone, the
|
4011
|
+
# value of `OwningService` is `efs.amazonaws.com`.
|
3990
4012
|
# @return [String]
|
3991
4013
|
#
|
3992
4014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneOwner AWS API Documentation
|
@@ -4029,8 +4051,8 @@ module Aws::Route53
|
|
4029
4051
|
#
|
4030
4052
|
# @!attribute [rw] owner
|
4031
4053
|
# The owner of a private hosted zone that the specified VPC is
|
4032
|
-
# associated with. The owner can be either an
|
4033
|
-
# service.
|
4054
|
+
# associated with. The owner can be either an Amazon Web Services
|
4055
|
+
# account or an Amazon Web Services service.
|
4034
4056
|
# @return [Types::HostedZoneOwner]
|
4035
4057
|
#
|
4036
4058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneSummary AWS API Documentation
|
@@ -4069,6 +4091,11 @@ module Aws::Route53
|
|
4069
4091
|
#
|
4070
4092
|
# * The resource policy hasn't finished propagating yet.
|
4071
4093
|
#
|
4094
|
+
# * The Key management service (KMS) key you specified doesn’t exist or
|
4095
|
+
# it can’t be used with the log group associated with query log.
|
4096
|
+
# Update or provide a resource policy to grant permissions for the KMS
|
4097
|
+
# key.
|
4098
|
+
#
|
4072
4099
|
# @!attribute [rw] message
|
4073
4100
|
# @return [String]
|
4074
4101
|
#
|
@@ -4249,9 +4276,9 @@ module Aws::Route53
|
|
4249
4276
|
#
|
4250
4277
|
# @!attribute [rw] kms_arn
|
4251
4278
|
# The Amazon resource name (ARN) used to identify the customer managed
|
4252
|
-
# customer master key (CMK) in
|
4253
|
-
#
|
4254
|
-
#
|
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.
|
4255
4282
|
#
|
4256
4283
|
# You must configure the CMK as follows:
|
4257
4284
|
#
|
@@ -4280,12 +4307,12 @@ module Aws::Route53
|
|
4280
4307
|
# The key policy must also include the Amazon Route 53 service in
|
4281
4308
|
# the principal for your account. Specify the following:
|
4282
4309
|
#
|
4283
|
-
# * `"Service": "
|
4310
|
+
# * `"Service": "dnssec-route53.amazonaws.com"`
|
4284
4311
|
#
|
4285
4312
|
# ^
|
4286
4313
|
#
|
4287
4314
|
# For more information about working with the customer managed CMK in
|
4288
|
-
#
|
4315
|
+
# KMS, see [Key Management Service concepts][1].
|
4289
4316
|
#
|
4290
4317
|
#
|
4291
4318
|
#
|
@@ -4517,8 +4544,8 @@ module Aws::Route53
|
|
4517
4544
|
# on the number of reusable delegation sets, see [GetAccountLimit][1].
|
4518
4545
|
# To get the current limit on the number of Amazon VPCs that you can
|
4519
4546
|
# associate with a private hosted zone, see [GetHostedZoneLimit][2]. To
|
4520
|
-
# request a higher limit, [create a case][3] with the
|
4521
|
-
# Center.
|
4547
|
+
# request a higher limit, [create a case][3] with the Amazon Web
|
4548
|
+
# Services Support Center.
|
4522
4549
|
#
|
4523
4550
|
#
|
4524
4551
|
#
|
@@ -4683,7 +4710,7 @@ module Aws::Route53
|
|
4683
4710
|
end
|
4684
4711
|
|
4685
4712
|
# A request to retrieve a list of the health checks that are associated
|
4686
|
-
# with the current
|
4713
|
+
# with the current Amazon Web Services account.
|
4687
4714
|
#
|
4688
4715
|
# @note When making an API call, you may pass ListHealthChecksRequest
|
4689
4716
|
# data as a hash:
|
@@ -4727,7 +4754,8 @@ module Aws::Route53
|
|
4727
4754
|
#
|
4728
4755
|
# @!attribute [rw] health_checks
|
4729
4756
|
# A complex type that contains one `HealthCheck` element for each
|
4730
|
-
# health check that is associated with the current
|
4757
|
+
# health check that is associated with the current Amazon Web Services
|
4758
|
+
# account.
|
4731
4759
|
# @return [Array<Types::HealthCheck>]
|
4732
4760
|
#
|
4733
4761
|
# @!attribute [rw] marker
|
@@ -4768,7 +4796,8 @@ module Aws::Route53
|
|
4768
4796
|
end
|
4769
4797
|
|
4770
4798
|
# Retrieves a list of the public and private hosted zones that are
|
4771
|
-
# associated with the current
|
4799
|
+
# associated with the current Amazon Web Services account in ASCII order
|
4800
|
+
# by domain name.
|
4772
4801
|
#
|
4773
4802
|
# @note When making an API call, you may pass ListHostedZonesByNameRequest
|
4774
4803
|
# data as a hash:
|
@@ -4784,10 +4813,10 @@ module Aws::Route53
|
|
4784
4813
|
# include the `dnsname` parameter only if you want to specify the name
|
4785
4814
|
# of the first hosted zone in the response. If you don't include the
|
4786
4815
|
# `dnsname` parameter, Amazon Route 53 returns all of the hosted zones
|
4787
|
-
# that were created by the current
|
4788
|
-
# subsequent requests, include both `dnsname` and
|
4789
|
-
# parameters. For `dnsname`, specify the value of
|
4790
|
-
# the previous response.
|
4816
|
+
# that were created by the current Amazon Web Services account, in
|
4817
|
+
# ASCII order. For subsequent requests, include both `dnsname` and
|
4818
|
+
# `hostedzoneid` parameters. For `dnsname`, specify the value of
|
4819
|
+
# `NextDNSName` from the previous response.
|
4791
4820
|
# @return [String]
|
4792
4821
|
#
|
4793
4822
|
# @!attribute [rw] hosted_zone_id
|
@@ -4888,7 +4917,8 @@ module Aws::Route53
|
|
4888
4917
|
end
|
4889
4918
|
|
4890
4919
|
# Lists all the private hosted zones that a specified VPC is associated
|
4891
|
-
# with, regardless of which
|
4920
|
+
# with, regardless of which Amazon Web Services account created the
|
4921
|
+
# hosted zones.
|
4892
4922
|
#
|
4893
4923
|
# @note When making an API call, you may pass ListHostedZonesByVPCRequest
|
4894
4924
|
# data as a hash:
|
@@ -4905,8 +4935,8 @@ module Aws::Route53
|
|
4905
4935
|
# @return [String]
|
4906
4936
|
#
|
4907
4937
|
# @!attribute [rw] vpc_region
|
4908
|
-
# For the Amazon VPC that you specified for `VPCId`, the
|
4909
|
-
# that you created the VPC in.
|
4938
|
+
# For the Amazon VPC that you specified for `VPCId`, the Amazon Web
|
4939
|
+
# Services Region that you created the VPC in.
|
4910
4940
|
# @return [String]
|
4911
4941
|
#
|
4912
4942
|
# @!attribute [rw] max_items
|
@@ -4954,7 +4984,7 @@ module Aws::Route53
|
|
4954
4984
|
# @return [Integer]
|
4955
4985
|
#
|
4956
4986
|
# @!attribute [rw] next_token
|
4957
|
-
# The value that you
|
4987
|
+
# The value that you will use for `NextToken` in the next
|
4958
4988
|
# `ListHostedZonesByVPC` request.
|
4959
4989
|
# @return [String]
|
4960
4990
|
#
|
@@ -4969,7 +4999,7 @@ module Aws::Route53
|
|
4969
4999
|
end
|
4970
5000
|
|
4971
5001
|
# A request to retrieve a list of the public and private hosted zones
|
4972
|
-
# that are associated with the current
|
5002
|
+
# that are associated with the current Amazon Web Services account.
|
4973
5003
|
#
|
4974
5004
|
# @note When making an API call, you may pass ListHostedZonesRequest
|
4975
5005
|
# data as a hash:
|
@@ -5076,13 +5106,13 @@ module Aws::Route53
|
|
5076
5106
|
#
|
5077
5107
|
# If you don't specify a hosted zone ID, `ListQueryLoggingConfigs`
|
5078
5108
|
# returns all of the configurations that are associated with the
|
5079
|
-
# current
|
5109
|
+
# current Amazon Web Services account.
|
5080
5110
|
# @return [String]
|
5081
5111
|
#
|
5082
5112
|
# @!attribute [rw] next_token
|
5083
|
-
# (Optional) If the current
|
5084
|
-
# query logging configurations, use `NextToken` to get
|
5085
|
-
# subsequent pages of results.
|
5113
|
+
# (Optional) If the current Amazon Web Services account has more than
|
5114
|
+
# `MaxResults` query logging configurations, use `NextToken` to get
|
5115
|
+
# the second and subsequent pages of results.
|
5086
5116
|
#
|
5087
5117
|
# For the first `ListQueryLoggingConfigs` request, omit this value.
|
5088
5118
|
#
|
@@ -5094,9 +5124,9 @@ module Aws::Route53
|
|
5094
5124
|
# @!attribute [rw] max_results
|
5095
5125
|
# (Optional) The maximum number of query logging configurations that
|
5096
5126
|
# you want Amazon Route 53 to return in response to the current
|
5097
|
-
# request. If the current
|
5098
|
-
# configurations, use the value of [NextToken][1] in the
|
5099
|
-
# get the next page of results.
|
5127
|
+
# request. If the current Amazon Web Services account has more than
|
5128
|
+
# `MaxResults` configurations, use the value of [NextToken][1] in the
|
5129
|
+
# response to get the next page of results.
|
5100
5130
|
#
|
5101
5131
|
# If you don't specify a value for `MaxResults`, Route 53 returns up
|
5102
5132
|
# to 100 configurations.
|
@@ -5119,7 +5149,7 @@ module Aws::Route53
|
|
5119
5149
|
# @!attribute [rw] query_logging_configs
|
5120
5150
|
# An array that contains one [QueryLoggingConfig][1] element for each
|
5121
5151
|
# configuration for DNS query logging that is associated with the
|
5122
|
-
# current
|
5152
|
+
# current Amazon Web Services account.
|
5123
5153
|
#
|
5124
5154
|
#
|
5125
5155
|
#
|
@@ -5128,8 +5158,8 @@ module Aws::Route53
|
|
5128
5158
|
#
|
5129
5159
|
# @!attribute [rw] next_token
|
5130
5160
|
# If a response includes the last of the query logging configurations
|
5131
|
-
# that are associated with the current
|
5132
|
-
# doesn't appear in the response.
|
5161
|
+
# that are associated with the current Amazon Web Services account,
|
5162
|
+
# `NextToken` doesn't appear in the response.
|
5133
5163
|
#
|
5134
5164
|
# If a response doesn't include the last of the configurations, you
|
5135
5165
|
# can get more configurations by submitting another
|
@@ -5298,7 +5328,7 @@ module Aws::Route53
|
|
5298
5328
|
end
|
5299
5329
|
|
5300
5330
|
# A request to get a list of the reusable delegation sets that are
|
5301
|
-
# associated with the current
|
5331
|
+
# associated with the current Amazon Web Services account.
|
5302
5332
|
#
|
5303
5333
|
# @note When making an API call, you may pass ListReusableDelegationSetsRequest
|
5304
5334
|
# data as a hash:
|
@@ -5339,11 +5369,12 @@ module Aws::Route53
|
|
5339
5369
|
end
|
5340
5370
|
|
5341
5371
|
# A complex type that contains information about the reusable delegation
|
5342
|
-
# sets that are associated with the current
|
5372
|
+
# sets that are associated with the current Amazon Web Services account.
|
5343
5373
|
#
|
5344
5374
|
# @!attribute [rw] delegation_sets
|
5345
5375
|
# A complex type that contains one `DelegationSet` element for each
|
5346
|
-
# reusable delegation set that was created by the current
|
5376
|
+
# reusable delegation set that was created by the current Amazon Web
|
5377
|
+
# Services account.
|
5347
5378
|
# @return [Array<Types::DelegationSet>]
|
5348
5379
|
#
|
5349
5380
|
# @!attribute [rw] marker
|
@@ -5479,7 +5510,8 @@ module Aws::Route53
|
|
5479
5510
|
end
|
5480
5511
|
|
5481
5512
|
# A complex type that contains the information about the request to list
|
5482
|
-
# the traffic policies that are associated with the current
|
5513
|
+
# the traffic policies that are associated with the current Amazon Web
|
5514
|
+
# Services account.
|
5483
5515
|
#
|
5484
5516
|
# @note When making an API call, you may pass ListTrafficPoliciesRequest
|
5485
5517
|
# data as a hash:
|
@@ -5523,7 +5555,8 @@ module Aws::Route53
|
|
5523
5555
|
#
|
5524
5556
|
# @!attribute [rw] traffic_policy_summaries
|
5525
5557
|
# A list that contains one `TrafficPolicySummary` element for each
|
5526
|
-
# traffic policy that was created by the current
|
5558
|
+
# traffic policy that was created by the current Amazon Web Services
|
5559
|
+
# account.
|
5527
5560
|
# @return [Array<Types::TrafficPolicySummary>]
|
5528
5561
|
#
|
5529
5562
|
# @!attribute [rw] is_truncated
|
@@ -5821,7 +5854,7 @@ module Aws::Route53
|
|
5821
5854
|
end
|
5822
5855
|
|
5823
5856
|
# A request to get information about the traffic policy instances that
|
5824
|
-
# you created by using the current
|
5857
|
+
# you created by using the current Amazon Web Services account.
|
5825
5858
|
#
|
5826
5859
|
# @note When making an API call, you may pass ListTrafficPolicyInstancesRequest
|
5827
5860
|
# data as a hash:
|
@@ -6585,9 +6618,9 @@ module Aws::Route53
|
|
6585
6618
|
# @!attribute [rw] region
|
6586
6619
|
# *Latency-based resource record sets only:* The Amazon EC2 Region
|
6587
6620
|
# where you created the resource that this resource record set refers
|
6588
|
-
# to. The resource typically is an
|
6589
|
-
# instance or an ELB load balancer, and is referred to by an
|
6590
|
-
# address or a DNS domain name, depending on the record type.
|
6621
|
+
# to. The resource typically is an Amazon Web Services resource, such
|
6622
|
+
# as an EC2 instance or an ELB load balancer, and is referred to by an
|
6623
|
+
# IP address or a DNS domain name, depending on the record type.
|
6591
6624
|
#
|
6592
6625
|
# <note markdown="1"> Although creating latency and latency alias resource record sets in
|
6593
6626
|
# a private hosted zone is allowed, it's not supported.
|
@@ -6785,9 +6818,9 @@ module Aws::Route53
|
|
6785
6818
|
# @return [Array<Types::ResourceRecord>]
|
6786
6819
|
#
|
6787
6820
|
# @!attribute [rw] alias_target
|
6788
|
-
# *Alias resource record sets only:* Information about the
|
6789
|
-
# resource, such as a CloudFront distribution or an Amazon S3
|
6790
|
-
# that you want to route traffic to.
|
6821
|
+
# *Alias resource record sets only:* Information about the Amazon Web
|
6822
|
+
# Services resource, such as a CloudFront distribution or an Amazon S3
|
6823
|
+
# bucket, that you want to route traffic to.
|
6791
6824
|
#
|
6792
6825
|
# If you're creating resource records sets for a private hosted zone,
|
6793
6826
|
# note the following:
|
@@ -7136,8 +7169,8 @@ module Aws::Route53
|
|
7136
7169
|
# @!attribute [rw] resolver_ip
|
7137
7170
|
# If you want to simulate a request from a specific DNS resolver,
|
7138
7171
|
# specify the IP address for that resolver. If you omit this value,
|
7139
|
-
# `TestDnsAnswer` uses the IP address of a DNS resolver in the
|
7140
|
-
# East (N. Virginia) Region (`us-east-1`).
|
7172
|
+
# `TestDnsAnswer` uses the IP address of a DNS resolver in the Amazon
|
7173
|
+
# Web Services US East (N. Virginia) Region (`us-east-1`).
|
7141
7174
|
# @return [String]
|
7142
7175
|
#
|
7143
7176
|
# @!attribute [rw] edns0_client_subnet_ip
|
@@ -7250,11 +7283,11 @@ module Aws::Route53
|
|
7250
7283
|
#
|
7251
7284
|
# For information about how to get the current limit for an account, see
|
7252
7285
|
# [GetAccountLimit][2]. To request a higher limit, [create a case][3]
|
7253
|
-
# with the
|
7286
|
+
# with the Amazon Web Services Support Center.
|
7254
7287
|
#
|
7255
|
-
# You have reached the maximum number of active health checks for an
|
7256
|
-
# account. To request a higher limit, [create a
|
7257
|
-
# Support Center.
|
7288
|
+
# You have reached the maximum number of active health checks for an
|
7289
|
+
# Amazon Web Services account. To request a higher limit, [create a
|
7290
|
+
# case][3] with the Amazon Web Services Support Center.
|
7258
7291
|
#
|
7259
7292
|
#
|
7260
7293
|
#
|
@@ -7287,8 +7320,8 @@ module Aws::Route53
|
|
7287
7320
|
# To get the current limit on hosted zones that can be associated with a
|
7288
7321
|
# reusable delegation set, see [GetReusableDelegationSetLimit][3].
|
7289
7322
|
#
|
7290
|
-
# To request a higher limit, [create a case][4] with the
|
7291
|
-
# Center.
|
7323
|
+
# To request a higher limit, [create a case][4] with the Amazon Web
|
7324
|
+
# Services Support Center.
|
7292
7325
|
#
|
7293
7326
|
#
|
7294
7327
|
#
|
@@ -7330,8 +7363,8 @@ module Aws::Route53
|
|
7330
7363
|
#
|
7331
7364
|
# To get the current limit for an account, see [GetAccountLimit][2].
|
7332
7365
|
#
|
7333
|
-
# To request a higher limit, [create a case][3] with the
|
7334
|
-
# Center.
|
7366
|
+
# To request a higher limit, [create a case][3] with the Amazon Web
|
7367
|
+
# Services Support Center.
|
7335
7368
|
#
|
7336
7369
|
#
|
7337
7370
|
#
|
@@ -7360,8 +7393,8 @@ module Aws::Route53
|
|
7360
7393
|
# For information about how to get the current limit for an account, see
|
7361
7394
|
# [GetAccountLimit][2].
|
7362
7395
|
#
|
7363
|
-
# To request a higher limit, [create a case][3] with the
|
7364
|
-
# Center.
|
7396
|
+
# To request a higher limit, [create a case][3] with the Amazon Web
|
7397
|
+
# Services Support Center.
|
7365
7398
|
#
|
7366
7399
|
#
|
7367
7400
|
#
|
@@ -7597,7 +7630,8 @@ module Aws::Route53
|
|
7597
7630
|
end
|
7598
7631
|
|
7599
7632
|
# A complex type that contains information about the latest version of
|
7600
|
-
# one traffic policy that is associated with the current
|
7633
|
+
# one traffic policy that is associated with the current Amazon Web
|
7634
|
+
# Services account.
|
7601
7635
|
#
|
7602
7636
|
# @!attribute [rw] id
|
7603
7637
|
# The ID that Amazon Route 53 assigned to the traffic policy when you
|
@@ -7621,7 +7655,7 @@ module Aws::Route53
|
|
7621
7655
|
#
|
7622
7656
|
# @!attribute [rw] traffic_policy_count
|
7623
7657
|
# The number of traffic policies that are associated with the current
|
7624
|
-
#
|
7658
|
+
# Amazon Web Services account.
|
7625
7659
|
# @return [Integer]
|
7626
7660
|
#
|
7627
7661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicySummary AWS API Documentation
|