aws-sdk-route53 1.49.0 → 1.50.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +95 -89
- data/lib/aws-sdk-route53/client_api.rb +8 -0
- data/lib/aws-sdk-route53/types.rb +148 -133
- metadata +3 -4
@@ -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,7 +223,7 @@ 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
|
-
# * **
|
226
|
+
# * **Management Console**\: Go to the Amazon EC2 page, choose
|
227
227
|
# **Load Balancers** in the navigation pane, select the load
|
228
228
|
# balancer, and get the value of the **Hosted zone** field on the
|
229
229
|
# **Description** tab.
|
@@ -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,27 +355,27 @@ 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 Domains with
|
361
|
-
# Elastic Beanstalk][4] in the *
|
358
|
+
# * *Management Console*\: For information about how to get the
|
359
|
+
# value by using the console, see [Using Custom Domains with
|
360
|
+
# Elastic Beanstalk][4] in the *Elastic Beanstalk Developer
|
362
361
|
# 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
|
-
#
|
375
|
+
# Get the DNS name by using the Management Console, the ELB API, or
|
376
|
+
# the CLI.
|
378
377
|
#
|
379
|
-
# * **
|
378
|
+
# * **Management Console**\: Go to the EC2 page, choose **Load
|
380
379
|
# Balancers** in the navigation pane, choose the load balancer,
|
381
380
|
# choose the **Description** tab, and get the value of the **DNS
|
382
381
|
# name** field.
|
@@ -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,8 @@ 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
|
-
#
|
2185
|
+
# authorization to associate a VPC that was created by one account with
|
2186
|
+
# a hosted zone that was created with a different account.
|
2189
2187
|
#
|
2190
2188
|
# @note When making an API call, you may pass DeleteVPCAssociationAuthorizationRequest
|
2191
2189
|
# data as a hash:
|
@@ -2200,15 +2198,14 @@ module Aws::Route53
|
|
2200
2198
|
#
|
2201
2199
|
# @!attribute [rw] hosted_zone_id
|
2202
2200
|
# When removing authorization to associate a VPC that was created by
|
2203
|
-
# one
|
2204
|
-
#
|
2201
|
+
# one account with a hosted zone that was created with a different
|
2202
|
+
# account, the ID of the hosted zone.
|
2205
2203
|
# @return [String]
|
2206
2204
|
#
|
2207
2205
|
# @!attribute [rw] vpc
|
2208
2206
|
# When removing authorization to associate a VPC that was created by
|
2209
|
-
# one
|
2210
|
-
#
|
2211
|
-
# VPC.
|
2207
|
+
# one account with a hosted zone that was created with a different
|
2208
|
+
# account, a complex type that includes the ID and region of the VPC.
|
2212
2209
|
# @return [Types::VPC]
|
2213
2210
|
#
|
2214
2211
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DeleteVPCAssociationAuthorizationRequest AWS API Documentation
|
@@ -2733,7 +2730,7 @@ module Aws::Route53
|
|
2733
2730
|
end
|
2734
2731
|
|
2735
2732
|
# A request for the number of health checks that are associated with the
|
2736
|
-
# current
|
2733
|
+
# current account.
|
2737
2734
|
#
|
2738
2735
|
# @api private
|
2739
2736
|
#
|
@@ -2745,7 +2742,7 @@ module Aws::Route53
|
|
2745
2742
|
# request.
|
2746
2743
|
#
|
2747
2744
|
# @!attribute [rw] health_check_count
|
2748
|
-
# The number of health checks associated with the current
|
2745
|
+
# The number of health checks associated with the current account.
|
2749
2746
|
# @return [Integer]
|
2750
2747
|
#
|
2751
2748
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckCountResponse AWS API Documentation
|
@@ -2831,7 +2828,7 @@ module Aws::Route53
|
|
2831
2828
|
#
|
2832
2829
|
# @!attribute [rw] health_check
|
2833
2830
|
# A complex type that contains information about one health check that
|
2834
|
-
# is associated with the current
|
2831
|
+
# is associated with the current account.
|
2835
2832
|
# @return [Types::HealthCheck]
|
2836
2833
|
#
|
2837
2834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHealthCheckResponse AWS API Documentation
|
@@ -2890,7 +2887,7 @@ module Aws::Route53
|
|
2890
2887
|
end
|
2891
2888
|
|
2892
2889
|
# A request to retrieve a count of all the hosted zones that are
|
2893
|
-
# associated with the current
|
2890
|
+
# associated with the current account.
|
2894
2891
|
#
|
2895
2892
|
# @api private
|
2896
2893
|
#
|
@@ -2903,7 +2900,7 @@ module Aws::Route53
|
|
2903
2900
|
#
|
2904
2901
|
# @!attribute [rw] hosted_zone_count
|
2905
2902
|
# The total number of public and private hosted zones that are
|
2906
|
-
# associated with the current
|
2903
|
+
# associated with the current account.
|
2907
2904
|
# @return [Integer]
|
2908
2905
|
#
|
2909
2906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZoneCountResponse AWS API Documentation
|
@@ -3152,7 +3149,7 @@ module Aws::Route53
|
|
3152
3149
|
end
|
3153
3150
|
|
3154
3151
|
# Request to get the number of traffic policy instances that are
|
3155
|
-
# associated with the current
|
3152
|
+
# associated with the current account.
|
3156
3153
|
#
|
3157
3154
|
# @api private
|
3158
3155
|
#
|
@@ -3165,7 +3162,7 @@ module Aws::Route53
|
|
3165
3162
|
#
|
3166
3163
|
# @!attribute [rw] traffic_policy_instance_count
|
3167
3164
|
# The number of traffic policy instances that are associated with the
|
3168
|
-
# current
|
3165
|
+
# current account.
|
3169
3166
|
# @return [Integer]
|
3170
3167
|
#
|
3171
3168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetTrafficPolicyInstanceCountResponse AWS API Documentation
|
@@ -3258,7 +3255,7 @@ module Aws::Route53
|
|
3258
3255
|
end
|
3259
3256
|
|
3260
3257
|
# A complex type that contains information about one health check that
|
3261
|
-
# is associated with the current
|
3258
|
+
# is associated with the current Amazon Web Services account.
|
3262
3259
|
#
|
3263
3260
|
# @!attribute [rw] id
|
3264
3261
|
# The identifier that Amazon Route 53 assigned to the health check
|
@@ -3338,7 +3335,7 @@ module Aws::Route53
|
|
3338
3335
|
# {
|
3339
3336
|
# ip_address: "IPAddress",
|
3340
3337
|
# port: 1,
|
3341
|
-
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC
|
3338
|
+
# type: "HTTP", # required, accepts HTTP, HTTPS, HTTP_STR_MATCH, HTTPS_STR_MATCH, TCP, CALCULATED, CLOUDWATCH_METRIC, RECOVERY_CONTROL
|
3342
3339
|
# resource_path: "ResourcePath",
|
3343
3340
|
# fully_qualified_domain_name: "FullyQualifiedDomainName",
|
3344
3341
|
# search_string: "SearchString",
|
@@ -3356,6 +3353,7 @@ module Aws::Route53
|
|
3356
3353
|
# name: "AlarmName", # required
|
3357
3354
|
# },
|
3358
3355
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
3356
|
+
# routing_control_arn: "RoutingControlArn",
|
3359
3357
|
# }
|
3360
3358
|
#
|
3361
3359
|
# @!attribute [rw] ip_address
|
@@ -3462,6 +3460,12 @@ module Aws::Route53
|
|
3462
3460
|
# that Route 53 health checkers consider to be healthy and compares
|
3463
3461
|
# that number with the value of `HealthThreshold`.
|
3464
3462
|
#
|
3463
|
+
# * **RECOVERY\_CONTROL**\: The health check is assocated with a
|
3464
|
+
# Route53 Application Recovery Controller routing control. If the
|
3465
|
+
# routing control state is `ON`, the health check is considered
|
3466
|
+
# healthy. If the state is `OFF`, the health check is considered
|
3467
|
+
# unhealthy.
|
3468
|
+
#
|
3465
3469
|
# For more information, see [How Route 53 Determines Whether an
|
3466
3470
|
# Endpoint Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
|
3467
3471
|
#
|
@@ -3586,9 +3590,9 @@ module Aws::Route53
|
|
3586
3590
|
#
|
3587
3591
|
# @!attribute [rw] measure_latency
|
3588
3592
|
# 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.
|
3593
|
+
# between health checkers in multiple Amazon Web Services regions and
|
3594
|
+
# your endpoint, and to display CloudWatch latency graphs on the
|
3595
|
+
# **Health Checks** page in the Route 53 console.
|
3592
3596
|
#
|
3593
3597
|
# You can't change the value of `MeasureLatency` after you create a
|
3594
3598
|
# health check.
|
@@ -3719,6 +3723,11 @@ module Aws::Route53
|
|
3719
3723
|
# known status, the default status for the health check is healthy.
|
3720
3724
|
# @return [String]
|
3721
3725
|
#
|
3726
|
+
# @!attribute [rw] routing_control_arn
|
3727
|
+
# The Amazon Resource Name (ARN) for Route53 Application Recovery
|
3728
|
+
# Controller routing control.
|
3729
|
+
# @return [String]
|
3730
|
+
#
|
3722
3731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HealthCheckConfig AWS API Documentation
|
3723
3732
|
#
|
3724
3733
|
class HealthCheckConfig < Struct.new(
|
@@ -3738,7 +3747,8 @@ module Aws::Route53
|
|
3738
3747
|
:enable_sni,
|
3739
3748
|
:regions,
|
3740
3749
|
:alarm_identifier,
|
3741
|
-
:insufficient_data_health_status
|
3750
|
+
:insufficient_data_health_status,
|
3751
|
+
:routing_control_arn)
|
3742
3752
|
SENSITIVE = []
|
3743
3753
|
include Aws::Structure
|
3744
3754
|
end
|
@@ -3973,20 +3983,20 @@ module Aws::Route53
|
|
3973
3983
|
# vice versa.
|
3974
3984
|
#
|
3975
3985
|
# @!attribute [rw] owning_account
|
3976
|
-
# If the hosted zone was created by an
|
3977
|
-
#
|
3978
|
-
# `OwningAccount` contains the account ID of that
|
3979
|
-
# example, when you use
|
3980
|
-
# Map creates the hosted zone using the current
|
3986
|
+
# If the hosted zone was created by an account, or was created by an
|
3987
|
+
# Amazon Web Services service that creates hosted zones using the
|
3988
|
+
# current account, `OwningAccount` contains the account ID of that
|
3989
|
+
# account. For example, when you use Cloud Map to create a hosted
|
3990
|
+
# zone, Cloud Map creates the hosted zone using the current account.
|
3981
3991
|
# @return [String]
|
3982
3992
|
#
|
3983
3993
|
# @!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`.
|
3994
|
+
# If an Amazon Web Services service uses its own account to create a
|
3995
|
+
# hosted zone and associate the specified VPC with that hosted zone,
|
3996
|
+
# `OwningService` contains an abbreviation that identifies the
|
3997
|
+
# service. For example, if Amazon Elastic File System (Amazon EFS)
|
3998
|
+
# created a hosted zone and associated a VPC with the hosted zone, the
|
3999
|
+
# value of `OwningService` is `efs.amazonaws.com`.
|
3990
4000
|
# @return [String]
|
3991
4001
|
#
|
3992
4002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneOwner AWS API Documentation
|
@@ -4029,8 +4039,8 @@ module Aws::Route53
|
|
4029
4039
|
#
|
4030
4040
|
# @!attribute [rw] owner
|
4031
4041
|
# The owner of a private hosted zone that the specified VPC is
|
4032
|
-
# associated with. The owner can be either an
|
4033
|
-
# service.
|
4042
|
+
# associated with. The owner can be either an account or an Amazon Web
|
4043
|
+
# Services service.
|
4034
4044
|
# @return [Types::HostedZoneOwner]
|
4035
4045
|
#
|
4036
4046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneSummary AWS API Documentation
|
@@ -4069,6 +4079,11 @@ module Aws::Route53
|
|
4069
4079
|
#
|
4070
4080
|
# * The resource policy hasn't finished propagating yet.
|
4071
4081
|
#
|
4082
|
+
# * The Key management service (KMS) key you specified doesn’t exist or
|
4083
|
+
# it can’t be used with the log group associated with query log.
|
4084
|
+
# Update or provide a resource policy to grant permissions for the KMS
|
4085
|
+
# key.
|
4086
|
+
#
|
4072
4087
|
# @!attribute [rw] message
|
4073
4088
|
# @return [String]
|
4074
4089
|
#
|
@@ -4249,9 +4264,9 @@ module Aws::Route53
|
|
4249
4264
|
#
|
4250
4265
|
# @!attribute [rw] kms_arn
|
4251
4266
|
# The Amazon resource name (ARN) used to identify the customer managed
|
4252
|
-
# customer master key (CMK) in
|
4253
|
-
#
|
4254
|
-
#
|
4267
|
+
# customer master key (CMK) in Key Management Service (KMS). The
|
4268
|
+
# `KmsArn` must be unique for each key-signing key (KSK) in a single
|
4269
|
+
# hosted zone.
|
4255
4270
|
#
|
4256
4271
|
# You must configure the CMK as follows:
|
4257
4272
|
#
|
@@ -4280,12 +4295,12 @@ module Aws::Route53
|
|
4280
4295
|
# The key policy must also include the Amazon Route 53 service in
|
4281
4296
|
# the principal for your account. Specify the following:
|
4282
4297
|
#
|
4283
|
-
# * `"Service": "
|
4298
|
+
# * `"Service": "dnssec-route53.amazonaws.com"`
|
4284
4299
|
#
|
4285
4300
|
# ^
|
4286
4301
|
#
|
4287
4302
|
# For more information about working with the customer managed CMK in
|
4288
|
-
#
|
4303
|
+
# KMS, see [Key Management Service concepts][1].
|
4289
4304
|
#
|
4290
4305
|
#
|
4291
4306
|
#
|
@@ -4517,8 +4532,8 @@ module Aws::Route53
|
|
4517
4532
|
# on the number of reusable delegation sets, see [GetAccountLimit][1].
|
4518
4533
|
# To get the current limit on the number of Amazon VPCs that you can
|
4519
4534
|
# associate with a private hosted zone, see [GetHostedZoneLimit][2]. To
|
4520
|
-
# request a higher limit, [create a case][3] with the
|
4521
|
-
# Center.
|
4535
|
+
# request a higher limit, [create a case][3] with the Amazon Web
|
4536
|
+
# Services Support Center.
|
4522
4537
|
#
|
4523
4538
|
#
|
4524
4539
|
#
|
@@ -4683,7 +4698,7 @@ module Aws::Route53
|
|
4683
4698
|
end
|
4684
4699
|
|
4685
4700
|
# A request to retrieve a list of the health checks that are associated
|
4686
|
-
# with the current
|
4701
|
+
# with the current account.
|
4687
4702
|
#
|
4688
4703
|
# @note When making an API call, you may pass ListHealthChecksRequest
|
4689
4704
|
# data as a hash:
|
@@ -4727,7 +4742,7 @@ module Aws::Route53
|
|
4727
4742
|
#
|
4728
4743
|
# @!attribute [rw] health_checks
|
4729
4744
|
# A complex type that contains one `HealthCheck` element for each
|
4730
|
-
# health check that is associated with the current
|
4745
|
+
# health check that is associated with the current account.
|
4731
4746
|
# @return [Array<Types::HealthCheck>]
|
4732
4747
|
#
|
4733
4748
|
# @!attribute [rw] marker
|
@@ -4768,7 +4783,7 @@ module Aws::Route53
|
|
4768
4783
|
end
|
4769
4784
|
|
4770
4785
|
# Retrieves a list of the public and private hosted zones that are
|
4771
|
-
# associated with the current
|
4786
|
+
# associated with the current account in ASCII order by domain name.
|
4772
4787
|
#
|
4773
4788
|
# @note When making an API call, you may pass ListHostedZonesByNameRequest
|
4774
4789
|
# data as a hash:
|
@@ -4784,7 +4799,7 @@ module Aws::Route53
|
|
4784
4799
|
# include the `dnsname` parameter only if you want to specify the name
|
4785
4800
|
# of the first hosted zone in the response. If you don't include the
|
4786
4801
|
# `dnsname` parameter, Amazon Route 53 returns all of the hosted zones
|
4787
|
-
# that were created by the current
|
4802
|
+
# that were created by the current account, in ASCII order. For
|
4788
4803
|
# subsequent requests, include both `dnsname` and `hostedzoneid`
|
4789
4804
|
# parameters. For `dnsname`, specify the value of `NextDNSName` from
|
4790
4805
|
# the previous response.
|
@@ -4888,7 +4903,7 @@ module Aws::Route53
|
|
4888
4903
|
end
|
4889
4904
|
|
4890
4905
|
# Lists all the private hosted zones that a specified VPC is associated
|
4891
|
-
# with, regardless of which
|
4906
|
+
# with, regardless of which account created the hosted zones.
|
4892
4907
|
#
|
4893
4908
|
# @note When making an API call, you may pass ListHostedZonesByVPCRequest
|
4894
4909
|
# data as a hash:
|
@@ -4905,8 +4920,8 @@ module Aws::Route53
|
|
4905
4920
|
# @return [String]
|
4906
4921
|
#
|
4907
4922
|
# @!attribute [rw] vpc_region
|
4908
|
-
# For the Amazon VPC that you specified for `VPCId`, the
|
4909
|
-
# that you created the VPC in.
|
4923
|
+
# For the Amazon VPC that you specified for `VPCId`, the Amazon Web
|
4924
|
+
# Services Region that you created the VPC in.
|
4910
4925
|
# @return [String]
|
4911
4926
|
#
|
4912
4927
|
# @!attribute [rw] max_items
|
@@ -4954,7 +4969,7 @@ module Aws::Route53
|
|
4954
4969
|
# @return [Integer]
|
4955
4970
|
#
|
4956
4971
|
# @!attribute [rw] next_token
|
4957
|
-
# The value that you
|
4972
|
+
# The value that you will use for `NextToken` in the next
|
4958
4973
|
# `ListHostedZonesByVPC` request.
|
4959
4974
|
# @return [String]
|
4960
4975
|
#
|
@@ -4969,7 +4984,7 @@ module Aws::Route53
|
|
4969
4984
|
end
|
4970
4985
|
|
4971
4986
|
# A request to retrieve a list of the public and private hosted zones
|
4972
|
-
# that are associated with the current
|
4987
|
+
# that are associated with the current account.
|
4973
4988
|
#
|
4974
4989
|
# @note When making an API call, you may pass ListHostedZonesRequest
|
4975
4990
|
# data as a hash:
|
@@ -5076,12 +5091,12 @@ module Aws::Route53
|
|
5076
5091
|
#
|
5077
5092
|
# If you don't specify a hosted zone ID, `ListQueryLoggingConfigs`
|
5078
5093
|
# returns all of the configurations that are associated with the
|
5079
|
-
# current
|
5094
|
+
# current account.
|
5080
5095
|
# @return [String]
|
5081
5096
|
#
|
5082
5097
|
# @!attribute [rw] next_token
|
5083
|
-
# (Optional) If the current
|
5084
|
-
#
|
5098
|
+
# (Optional) If the current account has more than `MaxResults` query
|
5099
|
+
# logging configurations, use `NextToken` to get the second and
|
5085
5100
|
# subsequent pages of results.
|
5086
5101
|
#
|
5087
5102
|
# For the first `ListQueryLoggingConfigs` request, omit this value.
|
@@ -5094,7 +5109,7 @@ module Aws::Route53
|
|
5094
5109
|
# @!attribute [rw] max_results
|
5095
5110
|
# (Optional) The maximum number of query logging configurations that
|
5096
5111
|
# you want Amazon Route 53 to return in response to the current
|
5097
|
-
# request. If the current
|
5112
|
+
# request. If the current account has more than `MaxResults`
|
5098
5113
|
# configurations, use the value of [NextToken][1] in the response to
|
5099
5114
|
# get the next page of results.
|
5100
5115
|
#
|
@@ -5119,7 +5134,7 @@ module Aws::Route53
|
|
5119
5134
|
# @!attribute [rw] query_logging_configs
|
5120
5135
|
# An array that contains one [QueryLoggingConfig][1] element for each
|
5121
5136
|
# configuration for DNS query logging that is associated with the
|
5122
|
-
# current
|
5137
|
+
# current account.
|
5123
5138
|
#
|
5124
5139
|
#
|
5125
5140
|
#
|
@@ -5128,8 +5143,8 @@ module Aws::Route53
|
|
5128
5143
|
#
|
5129
5144
|
# @!attribute [rw] next_token
|
5130
5145
|
# If a response includes the last of the query logging configurations
|
5131
|
-
# that are associated with the current
|
5132
|
-
#
|
5146
|
+
# that are associated with the current account, `NextToken` doesn't
|
5147
|
+
# appear in the response.
|
5133
5148
|
#
|
5134
5149
|
# If a response doesn't include the last of the configurations, you
|
5135
5150
|
# can get more configurations by submitting another
|
@@ -5298,7 +5313,7 @@ module Aws::Route53
|
|
5298
5313
|
end
|
5299
5314
|
|
5300
5315
|
# A request to get a list of the reusable delegation sets that are
|
5301
|
-
# associated with the current
|
5316
|
+
# associated with the current account.
|
5302
5317
|
#
|
5303
5318
|
# @note When making an API call, you may pass ListReusableDelegationSetsRequest
|
5304
5319
|
# data as a hash:
|
@@ -5339,11 +5354,11 @@ module Aws::Route53
|
|
5339
5354
|
end
|
5340
5355
|
|
5341
5356
|
# A complex type that contains information about the reusable delegation
|
5342
|
-
# sets that are associated with the current
|
5357
|
+
# sets that are associated with the current account.
|
5343
5358
|
#
|
5344
5359
|
# @!attribute [rw] delegation_sets
|
5345
5360
|
# A complex type that contains one `DelegationSet` element for each
|
5346
|
-
# reusable delegation set that was created by the current
|
5361
|
+
# reusable delegation set that was created by the current account.
|
5347
5362
|
# @return [Array<Types::DelegationSet>]
|
5348
5363
|
#
|
5349
5364
|
# @!attribute [rw] marker
|
@@ -5479,7 +5494,7 @@ module Aws::Route53
|
|
5479
5494
|
end
|
5480
5495
|
|
5481
5496
|
# A complex type that contains the information about the request to list
|
5482
|
-
# the traffic policies that are associated with the current
|
5497
|
+
# the traffic policies that are associated with the current account.
|
5483
5498
|
#
|
5484
5499
|
# @note When making an API call, you may pass ListTrafficPoliciesRequest
|
5485
5500
|
# data as a hash:
|
@@ -5523,7 +5538,7 @@ module Aws::Route53
|
|
5523
5538
|
#
|
5524
5539
|
# @!attribute [rw] traffic_policy_summaries
|
5525
5540
|
# A list that contains one `TrafficPolicySummary` element for each
|
5526
|
-
# traffic policy that was created by the current
|
5541
|
+
# traffic policy that was created by the current account.
|
5527
5542
|
# @return [Array<Types::TrafficPolicySummary>]
|
5528
5543
|
#
|
5529
5544
|
# @!attribute [rw] is_truncated
|
@@ -5821,7 +5836,7 @@ module Aws::Route53
|
|
5821
5836
|
end
|
5822
5837
|
|
5823
5838
|
# A request to get information about the traffic policy instances that
|
5824
|
-
# you created by using the current
|
5839
|
+
# you created by using the current account.
|
5825
5840
|
#
|
5826
5841
|
# @note When making an API call, you may pass ListTrafficPolicyInstancesRequest
|
5827
5842
|
# data as a hash:
|
@@ -6585,9 +6600,9 @@ module Aws::Route53
|
|
6585
6600
|
# @!attribute [rw] region
|
6586
6601
|
# *Latency-based resource record sets only:* The Amazon EC2 Region
|
6587
6602
|
# 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.
|
6603
|
+
# to. The resource typically is an Amazon Web Services resource, such
|
6604
|
+
# as an EC2 instance or an ELB load balancer, and is referred to by an
|
6605
|
+
# IP address or a DNS domain name, depending on the record type.
|
6591
6606
|
#
|
6592
6607
|
# <note markdown="1"> Although creating latency and latency alias resource record sets in
|
6593
6608
|
# a private hosted zone is allowed, it's not supported.
|
@@ -6785,9 +6800,9 @@ module Aws::Route53
|
|
6785
6800
|
# @return [Array<Types::ResourceRecord>]
|
6786
6801
|
#
|
6787
6802
|
# @!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.
|
6803
|
+
# *Alias resource record sets only:* Information about the Amazon Web
|
6804
|
+
# Services resource, such as a CloudFront distribution or an Amazon S3
|
6805
|
+
# bucket, that you want to route traffic to.
|
6791
6806
|
#
|
6792
6807
|
# If you're creating resource records sets for a private hosted zone,
|
6793
6808
|
# note the following:
|
@@ -7136,8 +7151,8 @@ module Aws::Route53
|
|
7136
7151
|
# @!attribute [rw] resolver_ip
|
7137
7152
|
# If you want to simulate a request from a specific DNS resolver,
|
7138
7153
|
# 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`).
|
7154
|
+
# `TestDnsAnswer` uses the IP address of a DNS resolver in the Amazon
|
7155
|
+
# Web Services US East (N. Virginia) Region (`us-east-1`).
|
7141
7156
|
# @return [String]
|
7142
7157
|
#
|
7143
7158
|
# @!attribute [rw] edns0_client_subnet_ip
|
@@ -7250,11 +7265,11 @@ module Aws::Route53
|
|
7250
7265
|
#
|
7251
7266
|
# For information about how to get the current limit for an account, see
|
7252
7267
|
# [GetAccountLimit][2]. To request a higher limit, [create a case][3]
|
7253
|
-
# with the
|
7268
|
+
# with the Amazon Web Services Support Center.
|
7254
7269
|
#
|
7255
|
-
# You have reached the maximum number of active health checks for an
|
7256
|
-
# account. To request a higher limit, [create a case][3] with the
|
7257
|
-
# Support Center.
|
7270
|
+
# You have reached the maximum number of active health checks for an
|
7271
|
+
# account. To request a higher limit, [create a case][3] with the Amazon
|
7272
|
+
# Web Services Support Center.
|
7258
7273
|
#
|
7259
7274
|
#
|
7260
7275
|
#
|
@@ -7287,8 +7302,8 @@ module Aws::Route53
|
|
7287
7302
|
# To get the current limit on hosted zones that can be associated with a
|
7288
7303
|
# reusable delegation set, see [GetReusableDelegationSetLimit][3].
|
7289
7304
|
#
|
7290
|
-
# To request a higher limit, [create a case][4] with the
|
7291
|
-
# Center.
|
7305
|
+
# To request a higher limit, [create a case][4] with the Amazon Web
|
7306
|
+
# Services Support Center.
|
7292
7307
|
#
|
7293
7308
|
#
|
7294
7309
|
#
|
@@ -7330,8 +7345,8 @@ module Aws::Route53
|
|
7330
7345
|
#
|
7331
7346
|
# To get the current limit for an account, see [GetAccountLimit][2].
|
7332
7347
|
#
|
7333
|
-
# To request a higher limit, [create a case][3] with the
|
7334
|
-
# Center.
|
7348
|
+
# To request a higher limit, [create a case][3] with the Amazon Web
|
7349
|
+
# Services Support Center.
|
7335
7350
|
#
|
7336
7351
|
#
|
7337
7352
|
#
|
@@ -7360,8 +7375,8 @@ module Aws::Route53
|
|
7360
7375
|
# For information about how to get the current limit for an account, see
|
7361
7376
|
# [GetAccountLimit][2].
|
7362
7377
|
#
|
7363
|
-
# To request a higher limit, [create a case][3] with the
|
7364
|
-
# Center.
|
7378
|
+
# To request a higher limit, [create a case][3] with the Amazon Web
|
7379
|
+
# Services Support Center.
|
7365
7380
|
#
|
7366
7381
|
#
|
7367
7382
|
#
|
@@ -7597,7 +7612,7 @@ module Aws::Route53
|
|
7597
7612
|
end
|
7598
7613
|
|
7599
7614
|
# A complex type that contains information about the latest version of
|
7600
|
-
# one traffic policy that is associated with the current
|
7615
|
+
# one traffic policy that is associated with the current account.
|
7601
7616
|
#
|
7602
7617
|
# @!attribute [rw] id
|
7603
7618
|
# The ID that Amazon Route 53 assigned to the traffic policy when you
|
@@ -7621,7 +7636,7 @@ module Aws::Route53
|
|
7621
7636
|
#
|
7622
7637
|
# @!attribute [rw] traffic_policy_count
|
7623
7638
|
# The number of traffic policies that are associated with the current
|
7624
|
-
#
|
7639
|
+
# account.
|
7625
7640
|
# @return [Integer]
|
7626
7641
|
#
|
7627
7642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TrafficPolicySummary AWS API Documentation
|