aws-sdk-route53 1.12.0 → 1.13.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/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +303 -243
- data/lib/aws-sdk-route53/client_api.rb +3 -0
- data/lib/aws-sdk-route53/types.rb +618 -413
- metadata +2 -2
@@ -82,6 +82,7 @@ module Aws::Route53
|
|
82
82
|
Dimension = Shapes::StructureShape.new(name: 'Dimension')
|
83
83
|
DimensionField = Shapes::StringShape.new(name: 'DimensionField')
|
84
84
|
DimensionList = Shapes::ListShape.new(name: 'DimensionList')
|
85
|
+
Disabled = Shapes::BooleanShape.new(name: 'Disabled')
|
85
86
|
DisassociateVPCComment = Shapes::StringShape.new(name: 'DisassociateVPCComment')
|
86
87
|
DisassociateVPCFromHostedZoneRequest = Shapes::StructureShape.new(name: 'DisassociateVPCFromHostedZoneRequest')
|
87
88
|
DisassociateVPCFromHostedZoneResponse = Shapes::StructureShape.new(name: 'DisassociateVPCFromHostedZoneResponse')
|
@@ -668,6 +669,7 @@ module Aws::Route53
|
|
668
669
|
HealthCheckConfig.add_member(:failure_threshold, Shapes::ShapeRef.new(shape: FailureThreshold, location_name: "FailureThreshold"))
|
669
670
|
HealthCheckConfig.add_member(:measure_latency, Shapes::ShapeRef.new(shape: MeasureLatency, location_name: "MeasureLatency"))
|
670
671
|
HealthCheckConfig.add_member(:inverted, Shapes::ShapeRef.new(shape: Inverted, location_name: "Inverted"))
|
672
|
+
HealthCheckConfig.add_member(:disabled, Shapes::ShapeRef.new(shape: Disabled, location_name: "Disabled"))
|
671
673
|
HealthCheckConfig.add_member(:health_threshold, Shapes::ShapeRef.new(shape: HealthThreshold, location_name: "HealthThreshold"))
|
672
674
|
HealthCheckConfig.add_member(:child_health_checks, Shapes::ShapeRef.new(shape: ChildHealthCheckList, location_name: "ChildHealthChecks"))
|
673
675
|
HealthCheckConfig.add_member(:enable_sni, Shapes::ShapeRef.new(shape: EnableSNI, location_name: "EnableSNI"))
|
@@ -998,6 +1000,7 @@ module Aws::Route53
|
|
998
1000
|
UpdateHealthCheckRequest.add_member(:search_string, Shapes::ShapeRef.new(shape: SearchString, location_name: "SearchString"))
|
999
1001
|
UpdateHealthCheckRequest.add_member(:failure_threshold, Shapes::ShapeRef.new(shape: FailureThreshold, location_name: "FailureThreshold"))
|
1000
1002
|
UpdateHealthCheckRequest.add_member(:inverted, Shapes::ShapeRef.new(shape: Inverted, location_name: "Inverted"))
|
1003
|
+
UpdateHealthCheckRequest.add_member(:disabled, Shapes::ShapeRef.new(shape: Disabled, location_name: "Disabled"))
|
1001
1004
|
UpdateHealthCheckRequest.add_member(:health_threshold, Shapes::ShapeRef.new(shape: HealthThreshold, location_name: "HealthThreshold"))
|
1002
1005
|
UpdateHealthCheckRequest.add_member(:child_health_checks, Shapes::ShapeRef.new(shape: ChildHealthCheckList, location_name: "ChildHealthChecks"))
|
1003
1006
|
UpdateHealthCheckRequest.add_member(:enable_sni, Shapes::ShapeRef.new(shape: EnableSNI, location_name: "EnableSNI"))
|
@@ -47,8 +47,8 @@ module Aws::Route53
|
|
47
47
|
end
|
48
48
|
|
49
49
|
# A complex type that identifies the CloudWatch alarm that you want
|
50
|
-
# Amazon Route 53 health checkers to use to determine whether
|
51
|
-
# health check is healthy.
|
50
|
+
# Amazon Route 53 health checkers to use to determine whether the
|
51
|
+
# specified health check is healthy.
|
52
52
|
#
|
53
53
|
# @note When making an API call, you may pass AlarmIdentifier
|
54
54
|
# data as a hash:
|
@@ -59,9 +59,9 @@ module Aws::Route53
|
|
59
59
|
# }
|
60
60
|
#
|
61
61
|
# @!attribute [rw] region
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
62
|
+
# For the CloudWatch alarm that you want Route 53 health checkers to
|
63
|
+
# use to determine whether this health check is healthy, the region
|
64
|
+
# that the alarm was created in.
|
65
65
|
#
|
66
66
|
# For the current list of CloudWatch regions, see [Amazon
|
67
67
|
# CloudWatch][1] in the *AWS Regions and Endpoints* chapter of the
|
@@ -76,6 +76,21 @@ module Aws::Route53
|
|
76
76
|
# The name of the CloudWatch alarm that you want Amazon Route 53
|
77
77
|
# health checkers to use to determine whether this health check is
|
78
78
|
# healthy.
|
79
|
+
#
|
80
|
+
# <note markdown="1"> Route 53 supports CloudWatch alarms with the following features:
|
81
|
+
#
|
82
|
+
# * Standard-resolution metrics. High-resolution metrics aren't
|
83
|
+
# supported. For more information, see [High-Resolution Metrics][1]
|
84
|
+
# in the *Amazon CloudWatch User Guide*.
|
85
|
+
#
|
86
|
+
# * Statistics: Average, Minimum, Maximum, Sum, and SampleCount.
|
87
|
+
# Extended statistics aren't supported.
|
88
|
+
#
|
89
|
+
# </note>
|
90
|
+
#
|
91
|
+
#
|
92
|
+
#
|
93
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/publishingMetrics.html#high-resolution-metrics
|
79
94
|
# @return [String]
|
80
95
|
#
|
81
96
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AlarmIdentifier AWS API Documentation
|
@@ -133,11 +148,12 @@ module Aws::Route53
|
|
133
148
|
#
|
134
149
|
# Elastic Beanstalk environment
|
135
150
|
#
|
136
|
-
# : Specify the hosted zone ID for the region
|
137
|
-
# environment. The environment must have a regionalized
|
138
|
-
# For a list of regions and the corresponding hosted zone
|
139
|
-
# [AWS Elastic Beanstalk][1] in the "AWS Regions and
|
140
|
-
# chapter of the *Amazon Web Services General
|
151
|
+
# : Specify the hosted zone ID for the region that you created the
|
152
|
+
# environment in. The environment must have a regionalized
|
153
|
+
# subdomain. For a list of regions and the corresponding hosted zone
|
154
|
+
# IDs, see [AWS Elastic Beanstalk][1] in the "AWS Regions and
|
155
|
+
# Endpoints" chapter of the *Amazon Web Services General
|
156
|
+
# Reference*.
|
141
157
|
#
|
142
158
|
# ELB load balancer
|
143
159
|
#
|
@@ -186,7 +202,7 @@ module Aws::Route53
|
|
186
202
|
# "AWS Regions and Endpoints" chapter of the *Amazon Web Services
|
187
203
|
# General Reference*.
|
188
204
|
#
|
189
|
-
# Another
|
205
|
+
# Another Route 53 resource record set in your hosted zone
|
190
206
|
#
|
191
207
|
# : Specify the hosted zone ID of your hosted zone. (An alias resource
|
192
208
|
# record set can't reference a resource record set in a different
|
@@ -220,11 +236,37 @@ module Aws::Route53
|
|
220
236
|
# Alternate Domain Names (CNAMEs)][1] in the *Amazon CloudFront
|
221
237
|
# Developer Guide*.
|
222
238
|
#
|
239
|
+
# <note markdown="1"> For failover alias records, you can't specify a CloudFront
|
240
|
+
# distribution for both the primary and secondary records. A
|
241
|
+
# distribution must include an alternate domain name that matches
|
242
|
+
# the name of the record. However, the primary and secondary records
|
243
|
+
# have the same name, and you can't include the same alternate
|
244
|
+
# domain name in more than one distribution.
|
245
|
+
#
|
246
|
+
# </note>
|
247
|
+
#
|
223
248
|
# Elastic Beanstalk environment
|
224
249
|
#
|
225
|
-
# :
|
226
|
-
#
|
227
|
-
#
|
250
|
+
# : If the domain name for your Elastic Beanstalk environment includes
|
251
|
+
# the region that you deployed the environment in, you can create an
|
252
|
+
# alias record that routes traffic to the environment. For example,
|
253
|
+
# the domain name `my-environment.us-west-2.elasticbeanstalk.com` is
|
254
|
+
# a regionalized domain name.
|
255
|
+
#
|
256
|
+
# For environments that were created before early 2016, the domain
|
257
|
+
# name doesn't include the region. To route traffic to these
|
258
|
+
# environments, you must create a CNAME record instead of an alias
|
259
|
+
# record. Note that you can't create a CNAME record for the root
|
260
|
+
# domain name. For example, if your domain name is example.com, you
|
261
|
+
# can create a record that routes traffic for acme.example.com to
|
262
|
+
# your Elastic Beanstalk environment, but you can't create a record
|
263
|
+
# that routes traffic for example.com to your Elastic Beanstalk
|
264
|
+
# environment.
|
265
|
+
#
|
266
|
+
# For Elastic Beanstalk environments that have regionalized
|
267
|
+
# subdomains, specify the `CNAME` attribute for the environment. You
|
268
|
+
# can use the following methods to get the value of the CNAME
|
269
|
+
# attribute:
|
228
270
|
#
|
229
271
|
# * *AWS Management Console*\: For information about how to get the
|
230
272
|
# value by using the console, see [Using Custom Domains with AWS
|
@@ -272,8 +314,8 @@ module Aws::Route53
|
|
272
314
|
#
|
273
315
|
# Amazon S3 bucket that is configured as a static website
|
274
316
|
#
|
275
|
-
# : Specify the domain name of the Amazon S3 website endpoint
|
276
|
-
#
|
317
|
+
# : Specify the domain name of the Amazon S3 website endpoint that you
|
318
|
+
# created the bucket in, for example,
|
277
319
|
# `s3-website-us-east-2.amazonaws.com`. For more information about
|
278
320
|
# valid values, see the table [Amazon Simple Storage Service (S3)
|
279
321
|
# Website Endpoints][9] in the *Amazon Web Services General
|
@@ -281,11 +323,21 @@ module Aws::Route53
|
|
281
323
|
# websites, see [Getting Started with Amazon Route 53][10] in the
|
282
324
|
# *Amazon Route 53 Developer Guide.*
|
283
325
|
#
|
284
|
-
# Another
|
326
|
+
# Another Route 53 resource record set
|
285
327
|
#
|
286
328
|
# : Specify the value of the `Name` element for a resource record set
|
287
329
|
# in the current hosted zone.
|
288
330
|
#
|
331
|
+
# <note markdown="1"> If you're creating an alias record that has the same name as the
|
332
|
+
# hosted zone (known as the zone apex), you can't specify the
|
333
|
+
# domain name for a record for which the value of `Type` is `CNAME`.
|
334
|
+
# This is because the alias record must have the same type as the
|
335
|
+
# record that you're routing traffic to, and creating a CNAME
|
336
|
+
# record for the zone apex isn't supported even for an alias
|
337
|
+
# record.
|
338
|
+
#
|
339
|
+
# </note>
|
340
|
+
#
|
289
341
|
#
|
290
342
|
#
|
291
343
|
# [1]: http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html
|
@@ -305,63 +357,88 @@ module Aws::Route53
|
|
305
357
|
# alias, and weighted alias resource record sets:* When
|
306
358
|
# `EvaluateTargetHealth` is `true`, an alias resource record set
|
307
359
|
# inherits the health of the referenced AWS resource, such as an ELB
|
308
|
-
# load balancer
|
360
|
+
# load balancer or another resource record set in the hosted zone.
|
309
361
|
#
|
310
362
|
# Note the following:
|
311
363
|
#
|
312
|
-
#
|
364
|
+
# CloudFront distributions
|
365
|
+
#
|
366
|
+
# : You can't set `EvaluateTargetHealth` to `true` when the alias
|
313
367
|
# target is a CloudFront distribution.
|
314
368
|
#
|
315
|
-
#
|
316
|
-
#
|
317
|
-
#
|
318
|
-
#
|
319
|
-
#
|
320
|
-
#
|
321
|
-
#
|
322
|
-
#
|
323
|
-
#
|
324
|
-
#
|
325
|
-
#
|
326
|
-
#
|
327
|
-
#
|
328
|
-
#
|
329
|
-
#
|
330
|
-
#
|
331
|
-
#
|
332
|
-
#
|
333
|
-
#
|
334
|
-
#
|
335
|
-
#
|
336
|
-
#
|
337
|
-
#
|
338
|
-
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
369
|
+
# Elastic Beanstalk environments that have regionalized subdomains
|
370
|
+
#
|
371
|
+
# : If you specify an Elastic Beanstalk environment in `DNSName` and
|
372
|
+
# the environment contains an ELB load balancer, Elastic Load
|
373
|
+
# Balancing routes queries only to the healthy Amazon EC2 instances
|
374
|
+
# that are registered with the load balancer. (An environment
|
375
|
+
# automatically contains an ELB load balancer if it includes more
|
376
|
+
# than one Amazon EC2 instance.) If you set `EvaluateTargetHealth`
|
377
|
+
# to `true` and either no Amazon EC2 instances are healthy or the
|
378
|
+
# load balancer itself is unhealthy, Route 53 routes queries to
|
379
|
+
# other available resources that are healthy, if any.
|
380
|
+
#
|
381
|
+
# If the environment contains a single Amazon EC2 instance, there
|
382
|
+
# are no special requirements.
|
383
|
+
#
|
384
|
+
# ELB load balancers
|
385
|
+
#
|
386
|
+
# : Health checking behavior depends on the type of load balancer:
|
387
|
+
#
|
388
|
+
# * **Classic Load Balancers**\: If you specify an ELB Classic Load
|
389
|
+
# Balancer in `DNSName`, Elastic Load Balancing routes queries
|
390
|
+
# only to the healthy Amazon EC2 instances that are registered
|
391
|
+
# with the load balancer. If you set `EvaluateTargetHealth` to
|
392
|
+
# `true` and either no EC2 instances are healthy or the load
|
393
|
+
# balancer itself is unhealthy, Route 53 routes queries to other
|
394
|
+
# resources.
|
395
|
+
#
|
396
|
+
# * **Application and Network Load Balancers**\: If you specify an
|
397
|
+
# ELB Application or Network Load Balancer and you set
|
398
|
+
# `EvaluateTargetHealth` to `true`, Route 53 routes queries to the
|
399
|
+
# load balancer based on the health of the target groups that are
|
400
|
+
# associated with the load balancer:
|
401
|
+
#
|
402
|
+
# * For an Application or Network Load Balancer to be considered
|
403
|
+
# healthy, every target group that contains targets must contain
|
404
|
+
# at least one healthy target. If any target group contains only
|
405
|
+
# unhealthy targets, the load balancer is considered unhealthy,
|
406
|
+
# and Route 53 routes queries to other resources.
|
407
|
+
#
|
408
|
+
# * A target group that has no registered targets is considered
|
409
|
+
# healthy.
|
410
|
+
#
|
411
|
+
# <note markdown="1"> When you create a load balancer, you configure settings for
|
412
|
+
# Elastic Load Balancing health checks; they're not Route 53 health
|
413
|
+
# checks, but they perform a similar function. Do not create Route
|
414
|
+
# 53 health checks for the EC2 instances that you register with an
|
415
|
+
# ELB load balancer.
|
416
|
+
#
|
417
|
+
# </note>
|
418
|
+
#
|
419
|
+
# S3 buckets
|
351
420
|
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
421
|
+
# : There are no special requirements for setting
|
422
|
+
# `EvaluateTargetHealth` to `true` when the alias target is an S3
|
423
|
+
# bucket.
|
424
|
+
#
|
425
|
+
# Other records in the same hosted zone
|
426
|
+
#
|
427
|
+
# : If the AWS resource that you specify in `DNSName` is a record or a
|
428
|
+
# group of records (for example, a group of weighted records) but is
|
429
|
+
# not another alias record, we recommend that you associate a health
|
430
|
+
# check with all of the records in the alias target. For more
|
431
|
+
# information, see [What Happens When You Omit Health Checks?][1] in
|
432
|
+
# the *Amazon Route 53 Developer Guide*.
|
355
433
|
#
|
356
434
|
# For more information and examples, see [Amazon Route 53 Health
|
357
|
-
# Checks and DNS Failover][
|
435
|
+
# Checks and DNS Failover][2] in the *Amazon Route 53 Developer
|
358
436
|
# Guide*.
|
359
437
|
#
|
360
438
|
#
|
361
439
|
#
|
362
440
|
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting
|
363
|
-
# [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover
|
364
|
-
# [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
|
441
|
+
# [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
|
365
442
|
# @return [Boolean]
|
366
443
|
#
|
367
444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AliasTarget AWS API Documentation
|
@@ -476,13 +553,13 @@ module Aws::Route53
|
|
476
553
|
# traffic policy instance, use ` DeleteTrafficPolicyInstance `.
|
477
554
|
# Amazon Route 53 will delete the resource record set automatically.
|
478
555
|
# If you delete the resource record set by using
|
479
|
-
# `ChangeResourceRecordSets`,
|
480
|
-
#
|
481
|
-
#
|
556
|
+
# `ChangeResourceRecordSets`, Route 53 doesn't automatically delete
|
557
|
+
# the traffic policy instance, and you'll continue to be charged
|
558
|
+
# for it even though it's no longer in use.
|
482
559
|
#
|
483
|
-
# * `UPSERT`\: If a resource record set doesn't already exist,
|
484
|
-
#
|
485
|
-
#
|
560
|
+
# * `UPSERT`\: If a resource record set doesn't already exist, Route
|
561
|
+
# 53 creates it. If a resource record set does exist, Route 53
|
562
|
+
# updates it with the values in the request.
|
486
563
|
# @return [String]
|
487
564
|
#
|
488
565
|
# @!attribute [rw] resource_record_set
|
@@ -824,6 +901,7 @@ module Aws::Route53
|
|
824
901
|
# failure_threshold: 1,
|
825
902
|
# measure_latency: false,
|
826
903
|
# inverted: false,
|
904
|
+
# disabled: false,
|
827
905
|
# health_threshold: 1,
|
828
906
|
# child_health_checks: ["HealthCheckId"],
|
829
907
|
# enable_sni: false,
|
@@ -844,27 +922,24 @@ module Aws::Route53
|
|
844
922
|
# * If you send a `CreateHealthCheck` request with the same
|
845
923
|
# `CallerReference` and settings as a previous request, and if the
|
846
924
|
# health check doesn't exist, Amazon Route 53 creates the health
|
847
|
-
# check. If the health check does exist,
|
925
|
+
# check. If the health check does exist, Route 53 returns the
|
848
926
|
# settings for the existing health check.
|
849
927
|
#
|
850
928
|
# * If you send a `CreateHealthCheck` request with the same
|
851
929
|
# `CallerReference` as a deleted health check, regardless of the
|
852
|
-
# settings,
|
853
|
-
# error.
|
930
|
+
# settings, Route 53 returns a `HealthCheckAlreadyExists` error.
|
854
931
|
#
|
855
932
|
# * If you send a `CreateHealthCheck` request with the same
|
856
933
|
# `CallerReference` as an existing health check but with different
|
857
|
-
# settings,
|
858
|
-
# error.
|
934
|
+
# settings, Route 53 returns a `HealthCheckAlreadyExists` error.
|
859
935
|
#
|
860
936
|
# * If you send a `CreateHealthCheck` request with a unique
|
861
937
|
# `CallerReference` but settings identical to an existing health
|
862
|
-
# check,
|
938
|
+
# check, Route 53 creates the health check.
|
863
939
|
# @return [String]
|
864
940
|
#
|
865
941
|
# @!attribute [rw] health_check_config
|
866
|
-
# A complex type that contains
|
867
|
-
# request.
|
942
|
+
# A complex type that contains settings for a new health check.
|
868
943
|
# @return [Types::HealthCheckConfig]
|
869
944
|
#
|
870
945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHealthCheckRequest AWS API Documentation
|
@@ -896,7 +971,7 @@ module Aws::Route53
|
|
896
971
|
end
|
897
972
|
|
898
973
|
# A complex type that contains information about the request to create a
|
899
|
-
# hosted zone.
|
974
|
+
# public or private hosted zone.
|
900
975
|
#
|
901
976
|
# @note When making an API call, you may pass CreateHostedZoneRequest
|
902
977
|
# data as a hash:
|
@@ -916,17 +991,16 @@ module Aws::Route53
|
|
916
991
|
# }
|
917
992
|
#
|
918
993
|
# @!attribute [rw] name
|
919
|
-
# The name of the domain.
|
920
|
-
#
|
921
|
-
#
|
922
|
-
#
|
923
|
-
#
|
924
|
-
# and *www.example.com.* (with a trailing dot) as identical.
|
994
|
+
# The name of the domain. Specify a fully qualified domain name, for
|
995
|
+
# example, *www.example.com*. The trailing dot is optional; Amazon
|
996
|
+
# Route 53 assumes that the domain name is fully qualified. This means
|
997
|
+
# that Route 53 treats *www.example.com* (without a trailing dot) and
|
998
|
+
# *www.example.com.* (with a trailing dot) as identical.
|
925
999
|
#
|
926
1000
|
# If you're creating a public hosted zone, this is the name you have
|
927
1001
|
# registered with your DNS registrar. If your domain name is
|
928
|
-
# registered with a registrar other than
|
929
|
-
#
|
1002
|
+
# registered with a registrar other than Route 53, change the name
|
1003
|
+
# servers for your domain to the set of `NameServers` that
|
930
1004
|
# `CreateHostedZone` returns in `DelegationSet`.
|
931
1005
|
# @return [String]
|
932
1006
|
#
|
@@ -1133,16 +1207,16 @@ module Aws::Route53
|
|
1133
1207
|
# }
|
1134
1208
|
#
|
1135
1209
|
# @!attribute [rw] hosted_zone_id
|
1136
|
-
# The ID of the hosted zone
|
1137
|
-
#
|
1210
|
+
# The ID of the hosted zone that you want Amazon Route 53 to create
|
1211
|
+
# resource record sets in by using the configuration in a traffic
|
1138
1212
|
# policy.
|
1139
1213
|
# @return [String]
|
1140
1214
|
#
|
1141
1215
|
# @!attribute [rw] name
|
1142
1216
|
# The domain name (such as example.com) or subdomain name (such as
|
1143
1217
|
# www.example.com) for which Amazon Route 53 responds to DNS queries
|
1144
|
-
# by using the resource record sets that
|
1145
|
-
#
|
1218
|
+
# by using the resource record sets that Route 53 creates for this
|
1219
|
+
# traffic policy instance.
|
1146
1220
|
# @return [String]
|
1147
1221
|
#
|
1148
1222
|
# @!attribute [rw] ttl
|
@@ -1675,7 +1749,7 @@ module Aws::Route53
|
|
1675
1749
|
include Aws::Structure
|
1676
1750
|
end
|
1677
1751
|
|
1678
|
-
# A complex type that contains information about a
|
1752
|
+
# A complex type that contains information about a geographic location.
|
1679
1753
|
#
|
1680
1754
|
# @note When making an API call, you may pass GeoLocation
|
1681
1755
|
# data as a hash:
|
@@ -1700,8 +1774,8 @@ module Aws::Route53
|
|
1700
1774
|
# @return [String]
|
1701
1775
|
#
|
1702
1776
|
# @!attribute [rw] subdivision_code
|
1703
|
-
# The code for the subdivision
|
1704
|
-
#
|
1777
|
+
# The code for the subdivision. Route 53 currently supports only
|
1778
|
+
# states in the United States.
|
1705
1779
|
# @return [String]
|
1706
1780
|
#
|
1707
1781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoLocation AWS API Documentation
|
@@ -1733,13 +1807,13 @@ module Aws::Route53
|
|
1733
1807
|
# @return [String]
|
1734
1808
|
#
|
1735
1809
|
# @!attribute [rw] subdivision_code
|
1736
|
-
# The code for the subdivision
|
1737
|
-
#
|
1810
|
+
# The code for the subdivision. Route 53 currently supports only
|
1811
|
+
# states in the United States.
|
1738
1812
|
# @return [String]
|
1739
1813
|
#
|
1740
1814
|
# @!attribute [rw] subdivision_name
|
1741
|
-
# The full name of the subdivision
|
1742
|
-
#
|
1815
|
+
# The full name of the subdivision. Route 53 currently supports only
|
1816
|
+
# states in the United States.
|
1743
1817
|
# @return [String]
|
1744
1818
|
#
|
1745
1819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoLocationDetails AWS API Documentation
|
@@ -1912,9 +1986,9 @@ module Aws::Route53
|
|
1912
1986
|
#
|
1913
1987
|
# @!attribute [rw] subdivision_code
|
1914
1988
|
# Amazon Route 53 uses the one- to three-letter subdivision codes that
|
1915
|
-
# are specified in [ISO standard 3166-1 alpha-2][1].
|
1916
|
-
#
|
1917
|
-
# `
|
1989
|
+
# are specified in [ISO standard 3166-1 alpha-2][1]. Route 53 doesn't
|
1990
|
+
# support subdivision codes for all countries. If you specify
|
1991
|
+
# `subdivisioncode`, you must also specify `countrycode`.
|
1918
1992
|
#
|
1919
1993
|
#
|
1920
1994
|
#
|
@@ -2507,6 +2581,7 @@ module Aws::Route53
|
|
2507
2581
|
# failure_threshold: 1,
|
2508
2582
|
# measure_latency: false,
|
2509
2583
|
# inverted: false,
|
2584
|
+
# disabled: false,
|
2510
2585
|
# health_threshold: 1,
|
2511
2586
|
# child_health_checks: ["HealthCheckId"],
|
2512
2587
|
# enable_sni: false,
|
@@ -2521,11 +2596,10 @@ module Aws::Route53
|
|
2521
2596
|
# @!attribute [rw] ip_address
|
2522
2597
|
# The IPv4 or IPv6 IP address of the endpoint that you want Amazon
|
2523
2598
|
# Route 53 to perform health checks on. If you don't specify a value
|
2524
|
-
# for `IPAddress`,
|
2525
|
-
#
|
2526
|
-
#
|
2527
|
-
#
|
2528
|
-
# endpoint.
|
2599
|
+
# for `IPAddress`, Route 53 sends a DNS request to resolve the domain
|
2600
|
+
# name that you specify in `FullyQualifiedDomainName` at the interval
|
2601
|
+
# that you specify in `RequestInterval`. Using an IP address returned
|
2602
|
+
# by DNS, Route 53 then checks the health of the endpoint.
|
2529
2603
|
#
|
2530
2604
|
# Use one of the following formats for the value of `IPAddress`\:
|
2531
2605
|
#
|
@@ -2546,10 +2620,10 @@ module Aws::Route53
|
|
2546
2620
|
# For more information, see
|
2547
2621
|
# HealthCheckConfig$FullyQualifiedDomainName.
|
2548
2622
|
#
|
2549
|
-
# Constraints:
|
2550
|
-
#
|
2551
|
-
#
|
2552
|
-
#
|
2623
|
+
# Constraints: Route 53 can't check the health of endpoints for which
|
2624
|
+
# the IP address is in local, private, non-routable, or multicast
|
2625
|
+
# ranges. For more information about IP addresses for which you can't
|
2626
|
+
# create health checks, see the following documents:
|
2553
2627
|
#
|
2554
2628
|
# * [RFC 5735, Special Use IPv4 Addresses][1]
|
2555
2629
|
#
|
@@ -2582,28 +2656,28 @@ module Aws::Route53
|
|
2582
2656
|
#
|
2583
2657
|
# You can create the following types of health checks:
|
2584
2658
|
#
|
2585
|
-
# * **HTTP**\:
|
2586
|
-
# successful,
|
2587
|
-
#
|
2659
|
+
# * **HTTP**\: Route 53 tries to establish a TCP connection. If
|
2660
|
+
# successful, Route 53 submits an HTTP request and waits for an HTTP
|
2661
|
+
# status code of 200 or greater and less than 400.
|
2588
2662
|
#
|
2589
|
-
# * **HTTPS**\:
|
2590
|
-
#
|
2591
|
-
#
|
2663
|
+
# * **HTTPS**\: Route 53 tries to establish a TCP connection. If
|
2664
|
+
# successful, Route 53 submits an HTTPS request and waits for an
|
2665
|
+
# HTTP status code of 200 or greater and less than 400.
|
2592
2666
|
#
|
2593
2667
|
# If you specify `HTTPS` for the value of `Type`, the endpoint must
|
2594
2668
|
# support TLS v1.0 or later.
|
2595
2669
|
#
|
2596
|
-
# * **HTTP\_STR\_MATCH**\:
|
2597
|
-
# connection. If successful,
|
2598
|
-
#
|
2599
|
-
#
|
2670
|
+
# * **HTTP\_STR\_MATCH**\: Route 53 tries to establish a TCP
|
2671
|
+
# connection. If successful, Route 53 submits an HTTP request and
|
2672
|
+
# searches the first 5,120 bytes of the response body for the string
|
2673
|
+
# that you specify in `SearchString`.
|
2600
2674
|
#
|
2601
|
-
# * **HTTPS\_STR\_MATCH**\:
|
2602
|
-
# connection. If successful,
|
2603
|
-
#
|
2604
|
-
#
|
2675
|
+
# * **HTTPS\_STR\_MATCH**\: Route 53 tries to establish a TCP
|
2676
|
+
# connection. If successful, Route 53 submits an `HTTPS` request and
|
2677
|
+
# searches the first 5,120 bytes of the response body for the string
|
2678
|
+
# that you specify in `SearchString`.
|
2605
2679
|
#
|
2606
|
-
# * **TCP**\:
|
2680
|
+
# * **TCP**\: Route 53 tries to establish a TCP connection.
|
2607
2681
|
#
|
2608
2682
|
# * **CLOUDWATCH\_METRIC**\: The health check is associated with a
|
2609
2683
|
# CloudWatch alarm. If the state of the alarm is `OK`, the health
|
@@ -2615,11 +2689,11 @@ module Aws::Route53
|
|
2615
2689
|
# `LastKnownStatus`.
|
2616
2690
|
#
|
2617
2691
|
# * **CALCULATED**\: For health checks that monitor the status of
|
2618
|
-
# other health checks,
|
2619
|
-
#
|
2620
|
-
#
|
2692
|
+
# other health checks, Route 53 adds up the number of health checks
|
2693
|
+
# that Route 53 health checkers consider to be healthy and compares
|
2694
|
+
# that number with the value of `HealthThreshold`.
|
2621
2695
|
#
|
2622
|
-
# For more information, see [How
|
2696
|
+
# For more information, see [How Route 53 Determines Whether an
|
2623
2697
|
# Endpoint Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
|
2624
2698
|
#
|
2625
2699
|
#
|
@@ -2632,7 +2706,8 @@ module Aws::Route53
|
|
2632
2706
|
# performing health checks. The path can be any value for which your
|
2633
2707
|
# endpoint will return an HTTP status code of 2xx or 3xx when the
|
2634
2708
|
# endpoint is healthy, for example, the file
|
2635
|
-
# /docs/route53-health-check.html.
|
2709
|
+
# /docs/route53-health-check.html. You can also include query string
|
2710
|
+
# parameters, for example, `/welcome.html?language=jp&login=y`.
|
2636
2711
|
# @return [String]
|
2637
2712
|
#
|
2638
2713
|
# @!attribute [rw] fully_qualified_domain_name
|
@@ -2645,38 +2720,38 @@ module Aws::Route53
|
|
2645
2720
|
# IPv6 address and passes the value of `FullyQualifiedDomainName` in
|
2646
2721
|
# the `Host` header for all health checks except TCP health checks.
|
2647
2722
|
# This is typically the fully qualified DNS name of the endpoint on
|
2648
|
-
# which you want
|
2723
|
+
# which you want Route 53 to perform health checks.
|
2649
2724
|
#
|
2650
|
-
# When
|
2651
|
-
#
|
2725
|
+
# When Route 53 checks the health of an endpoint, here is how it
|
2726
|
+
# constructs the `Host` header:
|
2652
2727
|
#
|
2653
2728
|
# * If you specify a value of `80` for `Port` and `HTTP` or
|
2654
|
-
# `HTTP_STR_MATCH` for `Type`,
|
2729
|
+
# `HTTP_STR_MATCH` for `Type`, Route 53 passes the value of
|
2655
2730
|
# `FullyQualifiedDomainName` to the endpoint in the Host header.
|
2656
2731
|
#
|
2657
2732
|
# * If you specify a value of `443` for `Port` and `HTTPS` or
|
2658
|
-
# `HTTPS_STR_MATCH` for `Type`,
|
2733
|
+
# `HTTPS_STR_MATCH` for `Type`, Route 53 passes the value of
|
2659
2734
|
# `FullyQualifiedDomainName` to the endpoint in the `Host` header.
|
2660
2735
|
#
|
2661
2736
|
# * If you specify another value for `Port` and any value except `TCP`
|
2662
|
-
# for `Type`,
|
2663
|
-
#
|
2737
|
+
# for `Type`, Route 53 passes `FullyQualifiedDomainName:Port` to the
|
2738
|
+
# endpoint in the `Host` header.
|
2664
2739
|
#
|
2665
|
-
# If you don't specify a value for `FullyQualifiedDomainName`,
|
2666
|
-
#
|
2667
|
-
#
|
2740
|
+
# If you don't specify a value for `FullyQualifiedDomainName`, Route
|
2741
|
+
# 53 substitutes the value of `IPAddress` in the `Host` header in each
|
2742
|
+
# of the preceding cases.
|
2668
2743
|
#
|
2669
2744
|
# <b>If you don't specify a value for <code>IPAddress</code> </b>\:
|
2670
2745
|
#
|
2671
|
-
#
|
2672
|
-
#
|
2673
|
-
# `RequestInterval`. Using an IPv4 address that DNS returns,
|
2674
|
-
#
|
2746
|
+
# Route 53 sends a DNS request to the domain that you specify for
|
2747
|
+
# `FullyQualifiedDomainName` at the interval that you specify for
|
2748
|
+
# `RequestInterval`. Using an IPv4 address that DNS returns, Route 53
|
2749
|
+
# then checks the health of the endpoint.
|
2675
2750
|
#
|
2676
|
-
# <note markdown="1"> If you don't specify a value for `IPAddress`,
|
2677
|
-
#
|
2678
|
-
#
|
2679
|
-
#
|
2751
|
+
# <note markdown="1"> If you don't specify a value for `IPAddress`, Route 53 uses only
|
2752
|
+
# IPv4 to send health checks to the endpoint. If there's no resource
|
2753
|
+
# record set with a type of A for the name that you specify for
|
2754
|
+
# `FullyQualifiedDomainName`, the health check fails with a "DNS
|
2680
2755
|
# resolution failed" error.
|
2681
2756
|
#
|
2682
2757
|
# </note>
|
@@ -2696,27 +2771,27 @@ module Aws::Route53
|
|
2696
2771
|
# resource record sets, health check results will be unpredictable.
|
2697
2772
|
#
|
2698
2773
|
# In addition, if the value that you specify for `Type` is `HTTP`,
|
2699
|
-
# `HTTPS`, `HTTP_STR_MATCH`, or `HTTPS_STR_MATCH`,
|
2700
|
-
#
|
2701
|
-
#
|
2702
|
-
# `
|
2774
|
+
# `HTTPS`, `HTTP_STR_MATCH`, or `HTTPS_STR_MATCH`, Route 53 passes the
|
2775
|
+
# value of `FullyQualifiedDomainName` in the `Host` header, as it does
|
2776
|
+
# when you specify a value for `IPAddress`. If the value of `Type` is
|
2777
|
+
# `TCP`, Route 53 doesn't pass a `Host` header.
|
2703
2778
|
# @return [String]
|
2704
2779
|
#
|
2705
2780
|
# @!attribute [rw] search_string
|
2706
2781
|
# If the value of Type is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
|
2707
2782
|
# string that you want Amazon Route 53 to search for in the response
|
2708
2783
|
# body from the specified resource. If the string appears in the
|
2709
|
-
# response body,
|
2784
|
+
# response body, Route 53 considers the resource healthy.
|
2710
2785
|
#
|
2711
|
-
#
|
2712
|
-
#
|
2786
|
+
# Route 53 considers case when searching for `SearchString` in the
|
2787
|
+
# response body.
|
2713
2788
|
# @return [String]
|
2714
2789
|
#
|
2715
2790
|
# @!attribute [rw] request_interval
|
2716
2791
|
# The number of seconds between the time that Amazon Route 53 gets a
|
2717
2792
|
# response from your endpoint and the time that it sends the next
|
2718
|
-
# health check request. Each
|
2719
|
-
#
|
2793
|
+
# health check request. Each Route 53 health checker makes requests at
|
2794
|
+
# this interval.
|
2720
2795
|
#
|
2721
2796
|
# You can't change the value of `RequestInterval` after you create a
|
2722
2797
|
# health check.
|
@@ -2744,7 +2819,7 @@ module Aws::Route53
|
|
2744
2819
|
# Specify whether you want Amazon Route 53 to measure the latency
|
2745
2820
|
# between health checkers in multiple AWS regions and your endpoint,
|
2746
2821
|
# and to display CloudWatch latency graphs on the **Health Checks**
|
2747
|
-
# page in the
|
2822
|
+
# page in the Route 53 console.
|
2748
2823
|
#
|
2749
2824
|
# You can't change the value of `MeasureLatency` after you create a
|
2750
2825
|
# health check.
|
@@ -2756,6 +2831,34 @@ module Aws::Route53
|
|
2756
2831
|
# it otherwise would be considered healthy.
|
2757
2832
|
# @return [Boolean]
|
2758
2833
|
#
|
2834
|
+
# @!attribute [rw] disabled
|
2835
|
+
# Stops Route 53 from performing health checks. When you disable a
|
2836
|
+
# health check, here's what happens:
|
2837
|
+
#
|
2838
|
+
# * **Health checks that check the health of endpoints:** Route 53
|
2839
|
+
# stops submitting requests to your application, server, or other
|
2840
|
+
# resource.
|
2841
|
+
#
|
2842
|
+
# * **Calculated health checks:** Route 53 stops aggregating the
|
2843
|
+
# status of the referenced health checks.
|
2844
|
+
#
|
2845
|
+
# * **Health checks that monitor CloudWatch alarms:** Route 53 stops
|
2846
|
+
# monitoring the corresponding CloudWatch metrics.
|
2847
|
+
#
|
2848
|
+
# After you disable a health check, Route 53 considers the status of
|
2849
|
+
# the health check to always be healthy. If you configured DNS
|
2850
|
+
# failover, Route 53 continues to route traffic to the corresponding
|
2851
|
+
# resources. If you want to stop routing traffic to a resource, change
|
2852
|
+
# the value of UpdateHealthCheckRequest$Inverted.
|
2853
|
+
#
|
2854
|
+
# Charges for a health check still apply when the health check is
|
2855
|
+
# disabled. For more information, see [Amazon Route 53 Pricing][1].
|
2856
|
+
#
|
2857
|
+
#
|
2858
|
+
#
|
2859
|
+
# [1]: http://aws.amazon.com/route53/pricing/
|
2860
|
+
# @return [Boolean]
|
2861
|
+
#
|
2759
2862
|
# @!attribute [rw] health_threshold
|
2760
2863
|
# The number of child health checks that are associated with a
|
2761
2864
|
# `CALCULATED` health that Amazon Route 53 must consider healthy for
|
@@ -2768,11 +2871,11 @@ module Aws::Route53
|
|
2768
2871
|
# Note the following:
|
2769
2872
|
#
|
2770
2873
|
# * If you specify a number greater than the number of child health
|
2771
|
-
# checks,
|
2874
|
+
# checks, Route 53 always considers this health check to be
|
2772
2875
|
# unhealthy.
|
2773
2876
|
#
|
2774
|
-
# * If you specify `0`,
|
2775
|
-
#
|
2877
|
+
# * If you specify `0`, Route 53 always considers this health check to
|
2878
|
+
# be healthy.
|
2776
2879
|
# @return [Integer]
|
2777
2880
|
#
|
2778
2881
|
# @!attribute [rw] child_health_checks
|
@@ -2812,21 +2915,21 @@ module Aws::Route53
|
|
2812
2915
|
# from which you want Amazon Route 53 health checkers to check the
|
2813
2916
|
# specified endpoint.
|
2814
2917
|
#
|
2815
|
-
# If you don't specify any regions,
|
2918
|
+
# If you don't specify any regions, Route 53 health checkers
|
2816
2919
|
# automatically performs checks from all of the regions that are
|
2817
2920
|
# listed under **Valid Values**.
|
2818
2921
|
#
|
2819
2922
|
# If you update a health check to remove a region that has been
|
2820
|
-
# performing health checks,
|
2821
|
-
#
|
2822
|
-
#
|
2923
|
+
# performing health checks, Route 53 will briefly continue to perform
|
2924
|
+
# checks from that region to ensure that some health checkers are
|
2925
|
+
# always checking the endpoint (for example, if you replace three
|
2823
2926
|
# regions with four different regions).
|
2824
2927
|
# @return [Array<String>]
|
2825
2928
|
#
|
2826
2929
|
# @!attribute [rw] alarm_identifier
|
2827
2930
|
# A complex type that identifies the CloudWatch alarm that you want
|
2828
|
-
# Amazon Route 53 health checkers to use to determine whether
|
2829
|
-
# health check is healthy.
|
2931
|
+
# Amazon Route 53 health checkers to use to determine whether the
|
2932
|
+
# specified health check is healthy.
|
2830
2933
|
# @return [Types::AlarmIdentifier]
|
2831
2934
|
#
|
2832
2935
|
# @!attribute [rw] insufficient_data_health_status
|
@@ -2834,14 +2937,12 @@ module Aws::Route53
|
|
2834
2937
|
# the alarm state, the status that you want Amazon Route 53 to assign
|
2835
2938
|
# to the health check:
|
2836
2939
|
#
|
2837
|
-
# * `Healthy`\:
|
2838
|
-
# healthy.
|
2940
|
+
# * `Healthy`\: Route 53 considers the health check to be healthy.
|
2839
2941
|
#
|
2840
|
-
# * `Unhealthy`\:
|
2841
|
-
# unhealthy.
|
2942
|
+
# * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
|
2842
2943
|
#
|
2843
|
-
# * `LastKnownStatus`\:
|
2844
|
-
#
|
2944
|
+
# * `LastKnownStatus`\: Route 53 uses the status of the health check
|
2945
|
+
# from the last time that CloudWatch had sufficient data to
|
2845
2946
|
# determine the alarm state. For new health checks that have no last
|
2846
2947
|
# known status, the default status for the health check is healthy.
|
2847
2948
|
# @return [String]
|
@@ -2859,6 +2960,7 @@ module Aws::Route53
|
|
2859
2960
|
:failure_threshold,
|
2860
2961
|
:measure_latency,
|
2861
2962
|
:inverted,
|
2963
|
+
:disabled,
|
2862
2964
|
:health_threshold,
|
2863
2965
|
:child_health_checks,
|
2864
2966
|
:enable_sni,
|
@@ -2932,7 +3034,7 @@ module Aws::Route53
|
|
2932
3034
|
# @!attribute [rw] linked_service
|
2933
3035
|
# If the hosted zone was created by another service, the service that
|
2934
3036
|
# created the hosted zone. When a hosted zone is created by another
|
2935
|
-
# service, you can't edit or delete it using
|
3037
|
+
# service, you can't edit or delete it using Route 53.
|
2936
3038
|
# @return [Types::LinkedService]
|
2937
3039
|
#
|
2938
3040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZone AWS API Documentation
|
@@ -3042,27 +3144,27 @@ module Aws::Route53
|
|
3042
3144
|
#
|
3043
3145
|
# @!attribute [rw] start_continent_code
|
3044
3146
|
# The code for the continent with which you want to start listing
|
3045
|
-
# locations that Amazon Route 53 supports for geolocation. If
|
3046
|
-
#
|
3047
|
-
#
|
3048
|
-
#
|
3049
|
-
#
|
3050
|
-
#
|
3051
|
-
# Include `
|
3052
|
-
# Don't include `
|
3147
|
+
# locations that Amazon Route 53 supports for geolocation. If Route 53
|
3148
|
+
# has already returned a page or more of results, if `IsTruncated` is
|
3149
|
+
# true, and if `NextContinentCode` from the previous response has a
|
3150
|
+
# value, enter that value in `startcontinentcode` to return the next
|
3151
|
+
# page of results.
|
3152
|
+
#
|
3153
|
+
# Include `startcontinentcode` only if you want to list continents.
|
3154
|
+
# Don't include `startcontinentcode` when you're listing countries
|
3053
3155
|
# or countries with their subdivisions.
|
3054
3156
|
# @return [String]
|
3055
3157
|
#
|
3056
3158
|
# @!attribute [rw] start_country_code
|
3057
3159
|
# The code for the country with which you want to start listing
|
3058
|
-
# locations that Amazon Route 53 supports for geolocation. If
|
3059
|
-
#
|
3060
|
-
# `
|
3061
|
-
#
|
3062
|
-
#
|
3160
|
+
# locations that Amazon Route 53 supports for geolocation. If Route 53
|
3161
|
+
# has already returned a page or more of results, if `IsTruncated` is
|
3162
|
+
# `true`, and if `NextCountryCode` from the previous response has a
|
3163
|
+
# value, enter that value in `startcountrycode` to return the next
|
3164
|
+
# page of results.
|
3063
3165
|
#
|
3064
|
-
#
|
3065
|
-
#
|
3166
|
+
# Route 53 uses the two-letter country codes that are specified in
|
3167
|
+
# [ISO standard 3166-1 alpha-2][1].
|
3066
3168
|
#
|
3067
3169
|
#
|
3068
3170
|
#
|
@@ -3072,19 +3174,19 @@ module Aws::Route53
|
|
3072
3174
|
# @!attribute [rw] start_subdivision_code
|
3073
3175
|
# The code for the subdivision (for example, state or province) with
|
3074
3176
|
# which you want to start listing locations that Amazon Route 53
|
3075
|
-
# supports for geolocation. If
|
3076
|
-
#
|
3177
|
+
# supports for geolocation. If Route 53 has already returned a page or
|
3178
|
+
# more of results, if `IsTruncated` is `true`, and if
|
3077
3179
|
# `NextSubdivisionCode` from the previous response has a value, enter
|
3078
|
-
# that value in `
|
3180
|
+
# that value in `startsubdivisioncode` to return the next page of
|
3079
3181
|
# results.
|
3080
3182
|
#
|
3081
3183
|
# To list subdivisions of a country, you must include both
|
3082
|
-
# `
|
3184
|
+
# `startcountrycode` and `startsubdivisioncode`.
|
3083
3185
|
# @return [String]
|
3084
3186
|
#
|
3085
3187
|
# @!attribute [rw] max_items
|
3086
3188
|
# (Optional) The maximum number of geolocations to be included in the
|
3087
|
-
# response body for this request. If more than `
|
3189
|
+
# response body for this request. If more than `maxitems` geolocations
|
3088
3190
|
# remain to be listed, then the value of the `IsTruncated` element in
|
3089
3191
|
# the response is `true`.
|
3090
3192
|
# @return [Integer]
|
@@ -3111,27 +3213,27 @@ module Aws::Route53
|
|
3111
3213
|
# after the last location in this response. If so, the value of
|
3112
3214
|
# `IsTruncated` is `true`. To get more values, submit another request
|
3113
3215
|
# and include the values of `NextContinentCode`, `NextCountryCode`,
|
3114
|
-
# and `NextSubdivisionCode` in the `
|
3115
|
-
# `
|
3216
|
+
# and `NextSubdivisionCode` in the `startcontinentcode`,
|
3217
|
+
# `startcountrycode`, and `startsubdivisioncode`, as applicable.
|
3116
3218
|
# @return [Boolean]
|
3117
3219
|
#
|
3118
3220
|
# @!attribute [rw] next_continent_code
|
3119
3221
|
# If `IsTruncated` is `true`, you can make a follow-up request to
|
3120
3222
|
# display more locations. Enter the value of `NextContinentCode` in
|
3121
|
-
# the `
|
3223
|
+
# the `startcontinentcode` parameter in another `ListGeoLocations`
|
3122
3224
|
# request.
|
3123
3225
|
# @return [String]
|
3124
3226
|
#
|
3125
3227
|
# @!attribute [rw] next_country_code
|
3126
3228
|
# If `IsTruncated` is `true`, you can make a follow-up request to
|
3127
3229
|
# display more locations. Enter the value of `NextCountryCode` in the
|
3128
|
-
# `
|
3230
|
+
# `startcountrycode` parameter in another `ListGeoLocations` request.
|
3129
3231
|
# @return [String]
|
3130
3232
|
#
|
3131
3233
|
# @!attribute [rw] next_subdivision_code
|
3132
3234
|
# If `IsTruncated` is `true`, you can make a follow-up request to
|
3133
3235
|
# display more locations. Enter the value of `NextSubdivisionCode` in
|
3134
|
-
# the `
|
3236
|
+
# the `startsubdivisioncode` parameter in another `ListGeoLocations`
|
3135
3237
|
# request.
|
3136
3238
|
# @return [String]
|
3137
3239
|
#
|
@@ -3179,8 +3281,7 @@ module Aws::Route53
|
|
3179
3281
|
# The maximum number of health checks that you want `ListHealthChecks`
|
3180
3282
|
# to return in response to the current request. Amazon Route 53
|
3181
3283
|
# returns a maximum of 100 items. If you set `MaxItems` to a value
|
3182
|
-
# greater than 100,
|
3183
|
-
# checks.
|
3284
|
+
# greater than 100, Route 53 returns only the first 100 health checks.
|
3184
3285
|
# @return [Integer]
|
3185
3286
|
#
|
3186
3287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHealthChecksRequest AWS API Documentation
|
@@ -3383,7 +3484,7 @@ module Aws::Route53
|
|
3383
3484
|
# Route 53 to return. If you have more than `maxitems` hosted zones,
|
3384
3485
|
# the value of `IsTruncated` in the response is `true`, and the value
|
3385
3486
|
# of `NextMarker` is the hosted zone ID of the first hosted zone that
|
3386
|
-
#
|
3487
|
+
# Route 53 will return if you submit another request.
|
3387
3488
|
# @return [Integer]
|
3388
3489
|
#
|
3389
3490
|
# @!attribute [rw] delegation_set_id
|
@@ -3482,8 +3583,8 @@ module Aws::Route53
|
|
3482
3583
|
# ListQueryLoggingConfigsResponse$NextToken in the response to get the
|
3483
3584
|
# next page of results.
|
3484
3585
|
#
|
3485
|
-
# If you don't specify a value for `MaxResults`,
|
3486
|
-
#
|
3586
|
+
# If you don't specify a value for `MaxResults`, Route 53 returns up
|
3587
|
+
# to 100 configurations.
|
3487
3588
|
# @return [String]
|
3488
3589
|
#
|
3489
3590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListQueryLoggingConfigsRequest AWS API Documentation
|
@@ -3552,9 +3653,9 @@ module Aws::Route53
|
|
3552
3653
|
# \| `CNAME` \| `MX` \| `NAPTR` \| `NS` \| `PTR` \| `SOA` \| `SPF` \|
|
3553
3654
|
# `SRV` \| `TXT`
|
3554
3655
|
#
|
3555
|
-
# Values for weighted, latency,
|
3556
|
-
# sets: `A` \| `AAAA` \| `CAA` \| `CNAME` \| `MX` \| `NAPTR` \|
|
3557
|
-
# \| `SPF` \| `SRV` \| `TXT`
|
3656
|
+
# Values for weighted, latency, geolocation, and failover resource
|
3657
|
+
# record sets: `A` \| `AAAA` \| `CAA` \| `CNAME` \| `MX` \| `NAPTR` \|
|
3658
|
+
# `PTR` \| `SPF` \| `SRV` \| `TXT`
|
3558
3659
|
#
|
3559
3660
|
# Values for alias resource record sets:
|
3560
3661
|
#
|
@@ -3630,10 +3731,17 @@ module Aws::Route53
|
|
3630
3731
|
# @return [String]
|
3631
3732
|
#
|
3632
3733
|
# @!attribute [rw] next_record_identifier
|
3633
|
-
# *
|
3634
|
-
#
|
3635
|
-
#
|
3636
|
-
#
|
3734
|
+
# *Resource record sets that have a routing policy other than simple:*
|
3735
|
+
# If results were truncated for a given DNS name and type, the value
|
3736
|
+
# of `SetIdentifier` for the next resource record set that has the
|
3737
|
+
# current DNS name and type.
|
3738
|
+
#
|
3739
|
+
# For information about routing policies, see [Choosing a Routing
|
3740
|
+
# Policy][1] in the *Amazon Route 53 Developer Guide*.
|
3741
|
+
#
|
3742
|
+
#
|
3743
|
+
#
|
3744
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html
|
3637
3745
|
# @return [String]
|
3638
3746
|
#
|
3639
3747
|
# @!attribute [rw] max_items
|
@@ -3680,8 +3788,8 @@ module Aws::Route53
|
|
3680
3788
|
# @!attribute [rw] max_items
|
3681
3789
|
# The number of reusable delegation sets that you want Amazon Route 53
|
3682
3790
|
# to return in the response to this request. If you specify a value
|
3683
|
-
# greater than 100,
|
3684
|
-
#
|
3791
|
+
# greater than 100, Route 53 returns only the first 100 reusable
|
3792
|
+
# delegation sets.
|
3685
3793
|
# @return [Integer]
|
3686
3794
|
#
|
3687
3795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListReusableDelegationSetsRequest AWS API Documentation
|
@@ -3855,8 +3963,8 @@ module Aws::Route53
|
|
3855
3963
|
# Amazon Route 53 to return in response to this request. If you have
|
3856
3964
|
# more than `MaxItems` traffic policies, the value of `IsTruncated` in
|
3857
3965
|
# the response is `true`, and the value of `TrafficPolicyIdMarker` is
|
3858
|
-
# the ID of the first traffic policy that
|
3859
|
-
#
|
3966
|
+
# the ID of the first traffic policy that Route 53 will return if you
|
3967
|
+
# submit another request.
|
3860
3968
|
# @return [Integer]
|
3861
3969
|
#
|
3862
3970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPoliciesRequest AWS API Documentation
|
@@ -4245,15 +4353,14 @@ module Aws::Route53
|
|
4245
4353
|
#
|
4246
4354
|
# @!attribute [rw] hosted_zone_id_marker
|
4247
4355
|
# If `IsTruncated` is `true`, `HostedZoneIdMarker` is the ID of the
|
4248
|
-
# hosted zone of the first traffic policy instance that
|
4249
|
-
#
|
4250
|
-
# request.
|
4356
|
+
# hosted zone of the first traffic policy instance that Route 53 will
|
4357
|
+
# return if you submit another `ListTrafficPolicyInstances` request.
|
4251
4358
|
# @return [String]
|
4252
4359
|
#
|
4253
4360
|
# @!attribute [rw] traffic_policy_instance_name_marker
|
4254
4361
|
# If `IsTruncated` is `true`, `TrafficPolicyInstanceNameMarker` is the
|
4255
|
-
# name of the first traffic policy instance that
|
4256
|
-
#
|
4362
|
+
# name of the first traffic policy instance that Route 53 will return
|
4363
|
+
# if you submit another `ListTrafficPolicyInstances` request.
|
4257
4364
|
# @return [String]
|
4258
4365
|
#
|
4259
4366
|
# @!attribute [rw] traffic_policy_instance_type_marker
|
@@ -4326,8 +4433,7 @@ module Aws::Route53
|
|
4326
4433
|
# specified traffic policy has more than `MaxItems` versions, the
|
4327
4434
|
# value of `IsTruncated` in the response is `true`, and the value of
|
4328
4435
|
# the `TrafficPolicyVersionMarker` element is the ID of the first
|
4329
|
-
# version that
|
4330
|
-
# request.
|
4436
|
+
# version that Route 53 will return if you submit another request.
|
4331
4437
|
# @return [Integer]
|
4332
4438
|
#
|
4333
4439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListTrafficPolicyVersionsRequest AWS API Documentation
|
@@ -4409,8 +4515,7 @@ module Aws::Route53
|
|
4409
4515
|
# @!attribute [rw] max_results
|
4410
4516
|
# *Optional*\: An integer that specifies the maximum number of VPCs
|
4411
4517
|
# that you want Amazon Route 53 to return. If you don't specify a
|
4412
|
-
# value for `MaxResults`,
|
4413
|
-
# page.
|
4518
|
+
# value for `MaxResults`, Route 53 returns up to 50 VPCs per page.
|
4414
4519
|
# @return [String]
|
4415
4520
|
#
|
4416
4521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizationsRequest AWS API Documentation
|
@@ -4552,12 +4657,16 @@ module Aws::Route53
|
|
4552
4657
|
# }
|
4553
4658
|
#
|
4554
4659
|
# @!attribute [rw] name
|
4555
|
-
#
|
4660
|
+
# For `ChangeResourceRecordSets` requests, the name of the record that
|
4661
|
+
# you want to create, update, or delete. For `ListResourceRecordSets`
|
4662
|
+
# responses, the name of a record in the specified hosted zone.
|
4663
|
+
#
|
4664
|
+
# **ChangeResourceRecordSets Only**
|
4556
4665
|
#
|
4557
4666
|
# Enter a fully qualified domain name, for example, `www.example.com`.
|
4558
4667
|
# You can optionally include a trailing dot. If you omit the trailing
|
4559
|
-
# dot, Amazon Route 53
|
4560
|
-
#
|
4668
|
+
# dot, Amazon Route 53 assumes that the domain name that you specify
|
4669
|
+
# is fully qualified. This means that Route 53 treats
|
4561
4670
|
# `www.example.com` (without a trailing dot) and `www.example.com.`
|
4562
4671
|
# (with a trailing dot) as identical.
|
4563
4672
|
#
|
@@ -4642,6 +4751,15 @@ module Aws::Route53
|
|
4642
4751
|
# type of the resource record set that you're creating the alias
|
4643
4752
|
# for. All values are supported except `NS` and `SOA`.
|
4644
4753
|
#
|
4754
|
+
# <note markdown="1"> If you're creating an alias record that has the same name as the
|
4755
|
+
# hosted zone (known as the zone apex), you can't route traffic to
|
4756
|
+
# a record for which the value of `Type` is `CNAME`. This is because
|
4757
|
+
# the alias record must have the same type as the record you're
|
4758
|
+
# routing traffic to, and creating a CNAME record for the zone apex
|
4759
|
+
# isn't supported even for an alias record.
|
4760
|
+
#
|
4761
|
+
# </note>
|
4762
|
+
#
|
4645
4763
|
#
|
4646
4764
|
#
|
4647
4765
|
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html
|
@@ -4649,21 +4767,29 @@ module Aws::Route53
|
|
4649
4767
|
# @return [String]
|
4650
4768
|
#
|
4651
4769
|
# @!attribute [rw] set_identifier
|
4652
|
-
# *
|
4653
|
-
# identifier that differentiates among multiple resource record
|
4654
|
-
# that have the same combination of
|
4655
|
-
#
|
4656
|
-
#
|
4657
|
-
#
|
4770
|
+
# *Resource record sets that have a routing policy other than simple:*
|
4771
|
+
# An identifier that differentiates among multiple resource record
|
4772
|
+
# sets that have the same combination of name and type, such as
|
4773
|
+
# multiple weighted resource record sets named acme.example.com that
|
4774
|
+
# have a type of A. In a group of resource record sets that have the
|
4775
|
+
# same name and type, the value of `SetIdentifier` must be unique for
|
4776
|
+
# each resource record set.
|
4777
|
+
#
|
4778
|
+
# For information about routing policies, see [Choosing a Routing
|
4779
|
+
# Policy][1] in the *Amazon Route 53 Developer Guide*.
|
4780
|
+
#
|
4781
|
+
#
|
4782
|
+
#
|
4783
|
+
# [1]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html
|
4658
4784
|
# @return [String]
|
4659
4785
|
#
|
4660
4786
|
# @!attribute [rw] weight
|
4661
4787
|
# *Weighted resource record sets only:* Among resource record sets
|
4662
4788
|
# that have the same combination of DNS name and type, a value that
|
4663
4789
|
# determines the proportion of DNS queries that Amazon Route 53
|
4664
|
-
# responds to using the current resource record set.
|
4790
|
+
# responds to using the current resource record set. Route 53
|
4665
4791
|
# calculates the sum of the weights for the resource record sets that
|
4666
|
-
# have the same combination of DNS name and type.
|
4792
|
+
# have the same combination of DNS name and type. Route 53 then
|
4667
4793
|
# responds to queries based on the ratio of a resource's weight to
|
4668
4794
|
# the total. Note the following:
|
4669
4795
|
#
|
@@ -4681,16 +4807,15 @@ module Aws::Route53
|
|
4681
4807
|
# have the same values for the `Name` and `Type` elements.
|
4682
4808
|
#
|
4683
4809
|
# * For weighted (but not weighted alias) resource record sets, if you
|
4684
|
-
# set `Weight` to `0` for a resource record set,
|
4685
|
-
#
|
4686
|
-
#
|
4687
|
-
#
|
4688
|
-
#
|
4689
|
-
# probability.
|
4810
|
+
# set `Weight` to `0` for a resource record set, Route 53 never
|
4811
|
+
# responds to queries with the applicable value for that resource
|
4812
|
+
# record set. However, if you set `Weight` to `0` for all resource
|
4813
|
+
# record sets that have the same combination of DNS name and type,
|
4814
|
+
# traffic is routed to all resources with equal probability.
|
4690
4815
|
#
|
4691
4816
|
# The effect of setting `Weight` to `0` is different when you
|
4692
4817
|
# associate health checks with weighted resource record sets. For
|
4693
|
-
# more information, see [Options for Configuring
|
4818
|
+
# more information, see [Options for Configuring Route 53
|
4694
4819
|
# Active-Active and Active-Passive Failover][1] in the *Amazon Route
|
4695
4820
|
# 53 Developer Guide*.
|
4696
4821
|
#
|
@@ -4712,11 +4837,11 @@ module Aws::Route53
|
|
4712
4837
|
# </note>
|
4713
4838
|
#
|
4714
4839
|
# When Amazon Route 53 receives a DNS query for a domain name and type
|
4715
|
-
# for which you have created latency resource record sets,
|
4716
|
-
#
|
4717
|
-
#
|
4718
|
-
#
|
4719
|
-
#
|
4840
|
+
# for which you have created latency resource record sets, Route 53
|
4841
|
+
# selects the latency resource record set that has the lowest latency
|
4842
|
+
# between the end user and the associated Amazon EC2 Region. Route 53
|
4843
|
+
# then returns the value that is associated with the selected resource
|
4844
|
+
# record set.
|
4720
4845
|
#
|
4721
4846
|
# Note the following:
|
4722
4847
|
#
|
@@ -4727,9 +4852,9 @@ module Aws::Route53
|
|
4727
4852
|
# Amazon EC2 Region.
|
4728
4853
|
#
|
4729
4854
|
# * You aren't required to create latency resource record sets for
|
4730
|
-
# all Amazon EC2 Regions.
|
4731
|
-
#
|
4732
|
-
#
|
4855
|
+
# all Amazon EC2 Regions. Route 53 will choose the region with the
|
4856
|
+
# best latency from among the regions that you create latency
|
4857
|
+
# resource record sets for.
|
4733
4858
|
#
|
4734
4859
|
# * You can't create non-latency resource record sets that have the
|
4735
4860
|
# same values for the `Name` and `Type` elements as latency resource
|
@@ -4737,7 +4862,7 @@ module Aws::Route53
|
|
4737
4862
|
# @return [String]
|
4738
4863
|
#
|
4739
4864
|
# @!attribute [rw] geo_location
|
4740
|
-
# *
|
4865
|
+
# *Geolocation resource record sets only:* A complex type that lets
|
4741
4866
|
# you control how Amazon Route 53 responds to DNS queries based on the
|
4742
4867
|
# geographic origin of the query. For example, if you want all queries
|
4743
4868
|
# from Africa to be routed to a web server with an IP address of
|
@@ -4767,14 +4892,14 @@ module Aws::Route53
|
|
4767
4892
|
# Geolocation works by mapping IP addresses to locations. However,
|
4768
4893
|
# some IP addresses aren't mapped to geographic locations, so even if
|
4769
4894
|
# you create geolocation resource record sets that cover all seven
|
4770
|
-
# continents,
|
4771
|
-
#
|
4772
|
-
#
|
4773
|
-
#
|
4774
|
-
#
|
4775
|
-
#
|
4776
|
-
#
|
4777
|
-
#
|
4895
|
+
# continents, Route 53 will receive some DNS queries from locations
|
4896
|
+
# that it can't identify. We recommend that you create a resource
|
4897
|
+
# record set for which the value of `CountryCode` is `*`, which
|
4898
|
+
# handles both queries that come from locations for which you haven't
|
4899
|
+
# created geolocation resource record sets and queries from IP
|
4900
|
+
# addresses that aren't mapped to a location. If you don't create a
|
4901
|
+
# `*` resource record set, Route 53 returns a "no answer" response
|
4902
|
+
# for queries from those locations.
|
4778
4903
|
#
|
4779
4904
|
# You can't create non-geolocation resource record sets that have the
|
4780
4905
|
# same values for the `Name` and `Type` elements as geolocation
|
@@ -4794,26 +4919,26 @@ module Aws::Route53
|
|
4794
4919
|
# have included the `HealthCheckId` element in both resource record
|
4795
4920
|
# sets:
|
4796
4921
|
#
|
4797
|
-
# * When the primary resource record set is healthy,
|
4798
|
-
#
|
4799
|
-
#
|
4800
|
-
#
|
4922
|
+
# * When the primary resource record set is healthy, Route 53 responds
|
4923
|
+
# to DNS queries with the applicable value from the primary resource
|
4924
|
+
# record set regardless of the health of the secondary resource
|
4925
|
+
# record set.
|
4801
4926
|
#
|
4802
4927
|
# * When the primary resource record set is unhealthy and the
|
4803
|
-
# secondary resource record set is healthy,
|
4804
|
-
#
|
4805
|
-
#
|
4928
|
+
# secondary resource record set is healthy, Route 53 responds to DNS
|
4929
|
+
# queries with the applicable value from the secondary resource
|
4930
|
+
# record set.
|
4806
4931
|
#
|
4807
|
-
# * When the secondary resource record set is unhealthy,
|
4808
|
-
#
|
4809
|
-
#
|
4810
|
-
#
|
4932
|
+
# * When the secondary resource record set is unhealthy, Route 53
|
4933
|
+
# responds to DNS queries with the applicable value from the primary
|
4934
|
+
# resource record set regardless of the health of the primary
|
4935
|
+
# resource record set.
|
4811
4936
|
#
|
4812
4937
|
# * If you omit the `HealthCheckId` element for the secondary resource
|
4813
4938
|
# record set, and if the primary resource record set is unhealthy,
|
4814
|
-
#
|
4815
|
-
#
|
4816
|
-
#
|
4939
|
+
# Route 53 always responds to DNS queries with the applicable value
|
4940
|
+
# from the secondary resource record set. This is true regardless of
|
4941
|
+
# the health of the associated endpoint.
|
4817
4942
|
#
|
4818
4943
|
# You can't create non-failover resource record sets that have the
|
4819
4944
|
# same values for the `Name` and `Type` elements as failover resource
|
@@ -4822,10 +4947,10 @@ module Aws::Route53
|
|
4822
4947
|
# For failover alias resource record sets, you must also include the
|
4823
4948
|
# `EvaluateTargetHealth` element and set the value to true.
|
4824
4949
|
#
|
4825
|
-
# For more information about configuring failover for
|
4826
|
-
#
|
4950
|
+
# For more information about configuring failover for Route 53, see
|
4951
|
+
# the following topics in the *Amazon Route 53 Developer Guide*\:
|
4827
4952
|
#
|
4828
|
-
# * [
|
4953
|
+
# * [Route 53 Health Checks and DNS Failover][1]
|
4829
4954
|
#
|
4830
4955
|
# * [Configuring Failover in a Private Hosted Zone][2]
|
4831
4956
|
#
|
@@ -4846,18 +4971,18 @@ module Aws::Route53
|
|
4846
4971
|
# corresponding IP address only when the health check is healthy.
|
4847
4972
|
#
|
4848
4973
|
# * If you don't associate a health check with a multivalue answer
|
4849
|
-
# record,
|
4974
|
+
# record, Route 53 always considers the record to be healthy.
|
4850
4975
|
#
|
4851
|
-
# *
|
4852
|
-
#
|
4853
|
-
#
|
4976
|
+
# * Route 53 responds to DNS queries with up to eight healthy records;
|
4977
|
+
# if you have eight or fewer healthy records, Route 53 responds to
|
4978
|
+
# all DNS queries with all the healthy records.
|
4854
4979
|
#
|
4855
|
-
# * If you have more than eight healthy records,
|
4856
|
-
#
|
4857
|
-
#
|
4980
|
+
# * If you have more than eight healthy records, Route 53 responds to
|
4981
|
+
# different DNS resolvers with different combinations of healthy
|
4982
|
+
# records.
|
4858
4983
|
#
|
4859
|
-
# * When all records are unhealthy,
|
4860
|
-
#
|
4984
|
+
# * When all records are unhealthy, Route 53 responds to DNS queries
|
4985
|
+
# with up to eight unhealthy records.
|
4861
4986
|
#
|
4862
4987
|
# * If a resource becomes unavailable after a resolver caches a
|
4863
4988
|
# response, client software typically tries another of the IP
|
@@ -4927,12 +5052,12 @@ module Aws::Route53
|
|
4927
5052
|
#
|
4928
5053
|
# @!attribute [rw] health_check_id
|
4929
5054
|
# If you want Amazon Route 53 to return this resource record set in
|
4930
|
-
# response to a DNS query only when a health check is
|
4931
|
-
# the `HealthCheckId` element and specify the ID of
|
4932
|
-
# health check.
|
5055
|
+
# response to a DNS query only when the status of a health check is
|
5056
|
+
# healthy, include the `HealthCheckId` element and specify the ID of
|
5057
|
+
# the applicable health check.
|
4933
5058
|
#
|
4934
|
-
#
|
4935
|
-
#
|
5059
|
+
# Route 53 determines whether a resource record set is healthy based
|
5060
|
+
# on one of the following:
|
4936
5061
|
#
|
4937
5062
|
# * By periodically sending a request to the endpoint that is
|
4938
5063
|
# specified in the health check
|
@@ -4943,46 +5068,95 @@ module Aws::Route53
|
|
4943
5068
|
# * By determining the current state of a CloudWatch alarm (CloudWatch
|
4944
5069
|
# metric health checks)
|
4945
5070
|
#
|
4946
|
-
#
|
4947
|
-
# Endpoint Is Healthy][1].
|
4948
|
-
#
|
4949
|
-
# The `HealthCheckId` element is only useful when Amazon Route 53 is
|
4950
|
-
# choosing between two or more resource record sets to respond to a
|
4951
|
-
# DNS query, and you want Amazon Route 53 to base the choice in part
|
4952
|
-
# on the status of a health check. Configuring health checks only
|
4953
|
-
# makes sense in the following configurations:
|
4954
|
-
#
|
4955
|
-
# * You're checking the health of the resource record sets in a group
|
4956
|
-
# of weighted, latency, geolocation, or failover resource record
|
4957
|
-
# sets, and you specify health check IDs for all of the resource
|
4958
|
-
# record sets. If the health check for one resource record set
|
4959
|
-
# specifies an endpoint that is not healthy, Amazon Route 53 stops
|
4960
|
-
# responding to queries using the value for that resource record
|
4961
|
-
# set.
|
4962
|
-
#
|
4963
|
-
# * You set `EvaluateTargetHealth` to true for the resource record
|
4964
|
-
# sets in a group of alias, weighted alias, latency alias,
|
4965
|
-
# geolocation alias, or failover alias resource record sets, and you
|
4966
|
-
# specify health check IDs for all of the resource record sets that
|
4967
|
-
# are referenced by the alias resource record sets.
|
4968
|
-
#
|
4969
|
-
# Amazon Route 53 doesn't check the health of the endpoint specified
|
5071
|
+
# Route 53 doesn't check the health of the endpoint that is specified
|
4970
5072
|
# in the resource record set, for example, the endpoint specified by
|
4971
5073
|
# the IP address in the `Value` element. When you add a
|
4972
|
-
# `HealthCheckId` element to a resource record set,
|
4973
|
-
#
|
4974
|
-
#
|
5074
|
+
# `HealthCheckId` element to a resource record set, Route 53 checks
|
5075
|
+
# the health of the endpoint that you specified in the health check.
|
5076
|
+
#
|
5077
|
+
# For more information, see the following topics in the *Amazon Route
|
5078
|
+
# 53 Developer Guide*\:
|
5079
|
+
#
|
5080
|
+
# * [How Amazon Route 53 Determines Whether an Endpoint Is Healthy][1]
|
5081
|
+
#
|
5082
|
+
# * [Route 53 Health Checks and DNS Failover][2]
|
5083
|
+
#
|
5084
|
+
# * [Configuring Failover in a Private Hosted Zone][3]
|
5085
|
+
#
|
5086
|
+
# **When to Specify HealthCheckId**
|
5087
|
+
#
|
5088
|
+
# Specifying a value for `HealthCheckId` is useful only when Route 53
|
5089
|
+
# is choosing between two or more resource record sets to respond to a
|
5090
|
+
# DNS query, and you want Route 53 to base the choice in part on the
|
5091
|
+
# status of a health check. Configuring health checks makes sense only
|
5092
|
+
# in the following configurations:
|
5093
|
+
#
|
5094
|
+
# * **Non-alias resource record sets**\: You're checking the health
|
5095
|
+
# of a group of non-alias resource record sets that have the same
|
5096
|
+
# routing policy, name, and type (such as multiple weighted records
|
5097
|
+
# named www.example.com with a type of A) and you specify health
|
5098
|
+
# check IDs for all the resource record sets.
|
5099
|
+
#
|
5100
|
+
# If the health check status for a resource record set is healthy,
|
5101
|
+
# Route 53 includes the record among the records that it responds to
|
5102
|
+
# DNS queries with.
|
5103
|
+
#
|
5104
|
+
# If the health check status for a resource record set is unhealthy,
|
5105
|
+
# Route 53 stops responding to DNS queries using the value for that
|
5106
|
+
# resource record set.
|
5107
|
+
#
|
5108
|
+
# If the health check status for all resource record sets in the
|
5109
|
+
# group is unhealthy, Route 53 considers all resource record sets in
|
5110
|
+
# the group healthy and responds to DNS queries accordingly.
|
5111
|
+
#
|
5112
|
+
# * **Alias resource record sets**\: You specify the following
|
5113
|
+
# settings:
|
5114
|
+
#
|
5115
|
+
# * You set `EvaluateTargetHealth` to true for an alias resource
|
5116
|
+
# record set in a group of resource record sets that have the same
|
5117
|
+
# routing policy, name, and type (such as multiple weighted
|
5118
|
+
# records named www.example.com with a type of A).
|
5119
|
+
#
|
5120
|
+
# * You configure the alias resource record set to route traffic to
|
5121
|
+
# a non-alias resource record set in the same hosted zone.
|
5122
|
+
#
|
5123
|
+
# * You specify a health check ID for the non-alias resource record
|
5124
|
+
# set.
|
5125
|
+
#
|
5126
|
+
# If the health check status is healthy, Route 53 considers the
|
5127
|
+
# alias resource record set to be healthy and includes the alias
|
5128
|
+
# record among the records that it responds to DNS queries with.
|
5129
|
+
#
|
5130
|
+
# If the health check status is unhealthy, Route 53 stops responding
|
5131
|
+
# to DNS queries using the alias resource record set.
|
5132
|
+
#
|
5133
|
+
# <note markdown="1"> The alias resource record set can also route traffic to a *group*
|
5134
|
+
# of non-alias resource record sets that have the same routing
|
5135
|
+
# policy, name, and type. In that configuration, associate health
|
5136
|
+
# checks with all of the resource record sets in the group of
|
5137
|
+
# non-alias resource record sets.
|
5138
|
+
#
|
5139
|
+
# </note>
|
5140
|
+
#
|
5141
|
+
# **Geolocation Routing**
|
4975
5142
|
#
|
4976
5143
|
# For geolocation resource record sets, if an endpoint is unhealthy,
|
4977
|
-
#
|
4978
|
-
#
|
4979
|
-
#
|
4980
|
-
# for North America, and
|
4981
|
-
#
|
4982
|
-
#
|
4983
|
-
# for
|
4984
|
-
#
|
4985
|
-
#
|
5144
|
+
# Route 53 looks for a resource record set for the larger, associated
|
5145
|
+
# geographic region. For example, suppose you have resource record
|
5146
|
+
# sets for a state in the United States, for the entire United States,
|
5147
|
+
# for North America, and a resource record set that has `*` for
|
5148
|
+
# `CountryCode` is `*`, which applies to all locations. If the
|
5149
|
+
# endpoint for the state resource record set is unhealthy, Route 53
|
5150
|
+
# checks for healthy resource record sets in the following order until
|
5151
|
+
# it finds a resource record set for which the endpoint is healthy:
|
5152
|
+
#
|
5153
|
+
# * The United States
|
5154
|
+
#
|
5155
|
+
# * North America
|
5156
|
+
#
|
5157
|
+
# * The default resource record set
|
5158
|
+
#
|
5159
|
+
# **Specifying the Health Check Endpoint by Domain Name**
|
4986
5160
|
#
|
4987
5161
|
# If your health checks specify the endpoint only by domain name, we
|
4988
5162
|
# recommend that you create a separate health check for each endpoint.
|
@@ -4990,19 +5164,14 @@ module Aws::Route53
|
|
4990
5164
|
# serving content for `www.example.com`. For the value of
|
4991
5165
|
# `FullyQualifiedDomainName`, specify the domain name of the server
|
4992
5166
|
# (such as `us-east-2-www.example.com`), not the name of the resource
|
4993
|
-
# record sets (example.com).
|
4994
|
-
#
|
4995
|
-
# n this configuration, if you create a health check for which the
|
4996
|
-
# value of `FullyQualifiedDomainName` matches the name of the resource
|
4997
|
-
# record sets and then associate the health check with those resource
|
4998
|
-
# record sets, health check results will be unpredictable.
|
5167
|
+
# record sets (`www.example.com`).
|
4999
5168
|
#
|
5000
|
-
#
|
5001
|
-
# 53 Developer Guide*\:
|
5169
|
+
# Health check results will be unpredictable if you do the following:
|
5002
5170
|
#
|
5003
|
-
#
|
5171
|
+
# * Create a health check that has the same value for
|
5172
|
+
# `FullyQualifiedDomainName` as the name of a resource record set.
|
5004
5173
|
#
|
5005
|
-
# *
|
5174
|
+
# * Associate that health check with the resource record set.
|
5006
5175
|
#
|
5007
5176
|
#
|
5008
5177
|
#
|
@@ -5015,15 +5184,15 @@ module Aws::Route53
|
|
5015
5184
|
# When you create a traffic policy instance, Amazon Route 53
|
5016
5185
|
# automatically creates a resource record set.
|
5017
5186
|
# `TrafficPolicyInstanceId` is the ID of the traffic policy instance
|
5018
|
-
# that
|
5187
|
+
# that Route 53 created this resource record set for.
|
5019
5188
|
#
|
5020
5189
|
# To delete the resource record set that is associated with a traffic
|
5021
|
-
# policy instance, use `DeleteTrafficPolicyInstance`.
|
5022
|
-
#
|
5023
|
-
# resource record set by using `ChangeResourceRecordSets`,
|
5024
|
-
#
|
5025
|
-
#
|
5026
|
-
#
|
5190
|
+
# policy instance, use `DeleteTrafficPolicyInstance`. Route 53 will
|
5191
|
+
# delete the resource record set automatically. If you delete the
|
5192
|
+
# resource record set by using `ChangeResourceRecordSets`, Route 53
|
5193
|
+
# doesn't automatically delete the traffic policy instance, and
|
5194
|
+
# you'll continue to be charged for it even though it's no longer in
|
5195
|
+
# use.
|
5027
5196
|
# @return [String]
|
5028
5197
|
#
|
5029
5198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecordSet AWS API Documentation
|
@@ -5224,6 +5393,13 @@ module Aws::Route53
|
|
5224
5393
|
# `edns0clientsubnetmask`, the checking tool will simulate a request
|
5225
5394
|
# from 192.0.2.0/24. The default value is 24 bits for IPv4 addresses
|
5226
5395
|
# and 64 bits for IPv6 addresses.
|
5396
|
+
#
|
5397
|
+
# The range of valid values depends on whether `edns0clientsubnetip`
|
5398
|
+
# is an IPv4 or an IPv6 address:
|
5399
|
+
#
|
5400
|
+
# * **IPv4**\: Specify a value between 0 and 32
|
5401
|
+
#
|
5402
|
+
# * **IPv6**\: Specify a value between 0 and 128
|
5227
5403
|
# @return [String]
|
5228
5404
|
#
|
5229
5405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/TestDNSAnswerRequest AWS API Documentation
|
@@ -5369,19 +5545,19 @@ module Aws::Route53
|
|
5369
5545
|
# Applied
|
5370
5546
|
#
|
5371
5547
|
# : Amazon Route 53 has finished creating resource record sets, and
|
5372
|
-
# changes have propagated to all
|
5548
|
+
# changes have propagated to all Route 53 edge locations.
|
5373
5549
|
#
|
5374
5550
|
# Creating
|
5375
5551
|
#
|
5376
|
-
# :
|
5552
|
+
# : Route 53 is creating the resource record sets. Use
|
5377
5553
|
# `GetTrafficPolicyInstance` to confirm that the
|
5378
5554
|
# `CreateTrafficPolicyInstance` request completed successfully.
|
5379
5555
|
#
|
5380
5556
|
# Failed
|
5381
5557
|
#
|
5382
|
-
# :
|
5383
|
-
#
|
5384
|
-
#
|
5558
|
+
# : Route 53 wasn't able to create or update the resource record
|
5559
|
+
# sets. When the value of `State` is `Failed`, see `Message` for an
|
5560
|
+
# explanation of what caused the request to fail.
|
5385
5561
|
# @return [String]
|
5386
5562
|
#
|
5387
5563
|
# @!attribute [rw] message
|
@@ -5474,6 +5650,7 @@ module Aws::Route53
|
|
5474
5650
|
# search_string: "SearchString",
|
5475
5651
|
# failure_threshold: 1,
|
5476
5652
|
# inverted: false,
|
5653
|
+
# disabled: false,
|
5477
5654
|
# health_threshold: 1,
|
5478
5655
|
# child_health_checks: ["HealthCheckId"],
|
5479
5656
|
# enable_sni: false,
|
@@ -5500,27 +5677,26 @@ module Aws::Route53
|
|
5500
5677
|
# We recommend that you use `GetHealthCheck` or `ListHealthChecks` to
|
5501
5678
|
# get the current value of `HealthCheckVersion` for the health check
|
5502
5679
|
# that you want to update, and that you include that value in your
|
5503
|
-
# `UpdateHealthCheck` request. This prevents
|
5504
|
-
#
|
5680
|
+
# `UpdateHealthCheck` request. This prevents Route 53 from overwriting
|
5681
|
+
# an intervening update:
|
5505
5682
|
#
|
5506
5683
|
# * If the value in the `UpdateHealthCheck` request matches the value
|
5507
|
-
# of `HealthCheckVersion` in the health check,
|
5508
|
-
#
|
5684
|
+
# of `HealthCheckVersion` in the health check, Route 53 updates the
|
5685
|
+
# health check with the new settings.
|
5509
5686
|
#
|
5510
5687
|
# * If the value of `HealthCheckVersion` in the health check is
|
5511
5688
|
# greater, the health check was changed after you got the version
|
5512
|
-
# number.
|
5513
|
-
#
|
5689
|
+
# number. Route 53 does not update the health check, and it returns
|
5690
|
+
# a `HealthCheckVersionMismatch` error.
|
5514
5691
|
# @return [Integer]
|
5515
5692
|
#
|
5516
5693
|
# @!attribute [rw] ip_address
|
5517
5694
|
# The IPv4 or IPv6 IP address for the endpoint that you want Amazon
|
5518
5695
|
# Route 53 to perform health checks on. If you don't specify a value
|
5519
|
-
# for `IPAddress`,
|
5520
|
-
#
|
5521
|
-
#
|
5522
|
-
#
|
5523
|
-
# the endpoint.
|
5696
|
+
# for `IPAddress`, Route 53 sends a DNS request to resolve the domain
|
5697
|
+
# name that you specify in `FullyQualifiedDomainName` at the interval
|
5698
|
+
# that you specify in `RequestInterval`. Using an IP address that is
|
5699
|
+
# returned by DNS, Route 53 then checks the health of the endpoint.
|
5524
5700
|
#
|
5525
5701
|
# Use one of the following formats for the value of `IPAddress`\:
|
5526
5702
|
#
|
@@ -5554,10 +5730,10 @@ module Aws::Route53
|
|
5554
5730
|
# For more information, see
|
5555
5731
|
# UpdateHealthCheckRequest$FullyQualifiedDomainName.
|
5556
5732
|
#
|
5557
|
-
# Constraints:
|
5558
|
-
#
|
5559
|
-
#
|
5560
|
-
#
|
5733
|
+
# Constraints: Route 53 can't check the health of endpoints for which
|
5734
|
+
# the IP address is in local, private, non-routable, or multicast
|
5735
|
+
# ranges. For more information about IP addresses for which you can't
|
5736
|
+
# create health checks, see the following documents:
|
5561
5737
|
#
|
5562
5738
|
# * [RFC 5735, Special Use IPv4 Addresses][3]
|
5563
5739
|
#
|
@@ -5583,7 +5759,9 @@ module Aws::Route53
|
|
5583
5759
|
# The path that you want Amazon Route 53 to request when performing
|
5584
5760
|
# health checks. The path can be any value for which your endpoint
|
5585
5761
|
# will return an HTTP status code of 2xx or 3xx when the endpoint is
|
5586
|
-
# healthy, for example the file /docs/route53-health-check.html.
|
5762
|
+
# healthy, for example the file /docs/route53-health-check.html. You
|
5763
|
+
# can also include query string parameters, for example,
|
5764
|
+
# `/welcome.html?language=jp&login=y`.
|
5587
5765
|
#
|
5588
5766
|
# Specify this value only if you want to change it.
|
5589
5767
|
# @return [String]
|
@@ -5600,44 +5778,44 @@ module Aws::Route53
|
|
5600
5778
|
#
|
5601
5779
|
# **If you specify a value for** `IPAddress`\:
|
5602
5780
|
#
|
5603
|
-
#
|
5604
|
-
#
|
5605
|
-
#
|
5606
|
-
#
|
5607
|
-
#
|
5781
|
+
# Route 53 sends health check requests to the specified IPv4 or IPv6
|
5782
|
+
# address and passes the value of `FullyQualifiedDomainName` in the
|
5783
|
+
# `Host` header for all health checks except TCP health checks. This
|
5784
|
+
# is typically the fully qualified DNS name of the endpoint on which
|
5785
|
+
# you want Route 53 to perform health checks.
|
5608
5786
|
#
|
5609
|
-
# When
|
5610
|
-
#
|
5787
|
+
# When Route 53 checks the health of an endpoint, here is how it
|
5788
|
+
# constructs the `Host` header:
|
5611
5789
|
#
|
5612
5790
|
# * If you specify a value of `80` for `Port` and `HTTP` or
|
5613
|
-
# `HTTP_STR_MATCH` for `Type`,
|
5791
|
+
# `HTTP_STR_MATCH` for `Type`, Route 53 passes the value of
|
5614
5792
|
# `FullyQualifiedDomainName` to the endpoint in the `Host` header.
|
5615
5793
|
#
|
5616
5794
|
# * If you specify a value of `443` for `Port` and `HTTPS` or
|
5617
|
-
# `HTTPS_STR_MATCH` for `Type`,
|
5795
|
+
# `HTTPS_STR_MATCH` for `Type`, Route 53 passes the value of
|
5618
5796
|
# `FullyQualifiedDomainName` to the endpoint in the `Host` header.
|
5619
5797
|
#
|
5620
5798
|
# * If you specify another value for `Port` and any value except `TCP`
|
5621
|
-
# for `Type`,
|
5799
|
+
# for `Type`, Route 53 passes <i>
|
5622
5800
|
# <code>FullyQualifiedDomainName</code>\:<code>Port</code> </i> to
|
5623
5801
|
# the endpoint in the `Host` header.
|
5624
5802
|
#
|
5625
|
-
# If you don't specify a value for `FullyQualifiedDomainName`,
|
5626
|
-
#
|
5627
|
-
#
|
5803
|
+
# If you don't specify a value for `FullyQualifiedDomainName`, Route
|
5804
|
+
# 53 substitutes the value of `IPAddress` in the `Host` header in each
|
5805
|
+
# of the above cases.
|
5628
5806
|
#
|
5629
5807
|
# **If you don't specify a value for** `IPAddress`\:
|
5630
5808
|
#
|
5631
|
-
# If you don't specify a value for `IPAddress`,
|
5632
|
-
#
|
5633
|
-
#
|
5634
|
-
#
|
5635
|
-
#
|
5809
|
+
# If you don't specify a value for `IPAddress`, Route 53 sends a DNS
|
5810
|
+
# request to the domain that you specify in `FullyQualifiedDomainName`
|
5811
|
+
# at the interval you specify in `RequestInterval`. Using an IPv4
|
5812
|
+
# address that is returned by DNS, Route 53 then checks the health of
|
5813
|
+
# the endpoint.
|
5636
5814
|
#
|
5637
|
-
# <note markdown="1"> If you don't specify a value for `IPAddress`,
|
5638
|
-
#
|
5639
|
-
#
|
5640
|
-
#
|
5815
|
+
# <note markdown="1"> If you don't specify a value for `IPAddress`, Route 53 uses only
|
5816
|
+
# IPv4 to send health checks to the endpoint. If there's no resource
|
5817
|
+
# record set with a type of A for the name that you specify for
|
5818
|
+
# `FullyQualifiedDomainName`, the health check fails with a "DNS
|
5641
5819
|
# resolution failed" error.
|
5642
5820
|
#
|
5643
5821
|
# </note>
|
@@ -5657,18 +5835,18 @@ module Aws::Route53
|
|
5657
5835
|
# results will be unpredictable.
|
5658
5836
|
#
|
5659
5837
|
# In addition, if the value of `Type` is `HTTP`, `HTTPS`,
|
5660
|
-
# `HTTP_STR_MATCH`, or `HTTPS_STR_MATCH`,
|
5661
|
-
#
|
5662
|
-
#
|
5663
|
-
#
|
5838
|
+
# `HTTP_STR_MATCH`, or `HTTPS_STR_MATCH`, Route 53 passes the value of
|
5839
|
+
# `FullyQualifiedDomainName` in the `Host` header, as it does when you
|
5840
|
+
# specify a value for `IPAddress`. If the value of `Type` is `TCP`,
|
5841
|
+
# Route 53 doesn't pass a `Host` header.
|
5664
5842
|
# @return [String]
|
5665
5843
|
#
|
5666
5844
|
# @!attribute [rw] search_string
|
5667
5845
|
# If the value of `Type` is `HTTP_STR_MATCH` or `HTTP_STR_MATCH`, the
|
5668
5846
|
# string that you want Amazon Route 53 to search for in the response
|
5669
5847
|
# body from the specified resource. If the string appears in the
|
5670
|
-
# response body,
|
5671
|
-
#
|
5848
|
+
# response body, Route 53 considers the resource healthy. (You can't
|
5849
|
+
# change the value of `Type` when you update a health check.)
|
5672
5850
|
# @return [String]
|
5673
5851
|
#
|
5674
5852
|
# @!attribute [rw] failure_threshold
|
@@ -5692,6 +5870,34 @@ module Aws::Route53
|
|
5692
5870
|
# it otherwise would be considered healthy.
|
5693
5871
|
# @return [Boolean]
|
5694
5872
|
#
|
5873
|
+
# @!attribute [rw] disabled
|
5874
|
+
# Stops Route 53 from performing health checks. When you disable a
|
5875
|
+
# health check, here's what happens:
|
5876
|
+
#
|
5877
|
+
# * **Health checks that check the health of endpoints:** Route 53
|
5878
|
+
# stops submitting requests to your application, server, or other
|
5879
|
+
# resource.
|
5880
|
+
#
|
5881
|
+
# * **Calculated health checks:** Route 53 stops aggregating the
|
5882
|
+
# status of the referenced health checks.
|
5883
|
+
#
|
5884
|
+
# * **Health checks that monitor CloudWatch alarms:** Route 53 stops
|
5885
|
+
# monitoring the corresponding CloudWatch metrics.
|
5886
|
+
#
|
5887
|
+
# After you disable a health check, Route 53 considers the status of
|
5888
|
+
# the health check to always be healthy. If you configured DNS
|
5889
|
+
# failover, Route 53 continues to route traffic to the corresponding
|
5890
|
+
# resources. If you want to stop routing traffic to a resource, change
|
5891
|
+
# the value of UpdateHealthCheckRequest$Inverted.
|
5892
|
+
#
|
5893
|
+
# Charges for a health check still apply when the health check is
|
5894
|
+
# disabled. For more information, see [Amazon Route 53 Pricing][1].
|
5895
|
+
#
|
5896
|
+
#
|
5897
|
+
#
|
5898
|
+
# [1]: http://aws.amazon.com/route53/pricing/
|
5899
|
+
# @return [Boolean]
|
5900
|
+
#
|
5695
5901
|
# @!attribute [rw] health_threshold
|
5696
5902
|
# The number of child health checks that are associated with a
|
5697
5903
|
# `CALCULATED` health that Amazon Route 53 must consider healthy for
|
@@ -5703,11 +5909,11 @@ module Aws::Route53
|
|
5703
5909
|
# Note the following:
|
5704
5910
|
#
|
5705
5911
|
# * If you specify a number greater than the number of child health
|
5706
|
-
# checks,
|
5912
|
+
# checks, Route 53 always considers this health check to be
|
5707
5913
|
# unhealthy.
|
5708
5914
|
#
|
5709
|
-
# * If you specify `0`,
|
5710
|
-
#
|
5915
|
+
# * If you specify `0`, Route 53 always considers this health check to
|
5916
|
+
# be healthy.
|
5711
5917
|
# @return [Integer]
|
5712
5918
|
#
|
5713
5919
|
# @!attribute [rw] child_health_checks
|
@@ -5750,8 +5956,8 @@ module Aws::Route53
|
|
5750
5956
|
#
|
5751
5957
|
# @!attribute [rw] alarm_identifier
|
5752
5958
|
# A complex type that identifies the CloudWatch alarm that you want
|
5753
|
-
# Amazon Route 53 health checkers to use to determine whether
|
5754
|
-
# health check is healthy.
|
5959
|
+
# Amazon Route 53 health checkers to use to determine whether the
|
5960
|
+
# specified health check is healthy.
|
5755
5961
|
# @return [Types::AlarmIdentifier]
|
5756
5962
|
#
|
5757
5963
|
# @!attribute [rw] insufficient_data_health_status
|
@@ -5759,16 +5965,14 @@ module Aws::Route53
|
|
5759
5965
|
# the alarm state, the status that you want Amazon Route 53 to assign
|
5760
5966
|
# to the health check:
|
5761
5967
|
#
|
5762
|
-
# * `Healthy`\:
|
5763
|
-
# healthy.
|
5968
|
+
# * `Healthy`\: Route 53 considers the health check to be healthy.
|
5764
5969
|
#
|
5765
|
-
# * `Unhealthy`\:
|
5766
|
-
# unhealthy.
|
5970
|
+
# * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
|
5767
5971
|
#
|
5768
|
-
# * `LastKnownStatus`\:
|
5769
|
-
#
|
5770
|
-
#
|
5771
|
-
#
|
5972
|
+
# * `LastKnownStatus`\: Route 53 uses the status of the health check
|
5973
|
+
# from the last time CloudWatch had sufficient data to determine the
|
5974
|
+
# alarm state. For new health checks that have no last known status,
|
5975
|
+
# the default status for the health check is healthy.
|
5772
5976
|
# @return [String]
|
5773
5977
|
#
|
5774
5978
|
# @!attribute [rw] reset_elements
|
@@ -5779,14 +5983,14 @@ module Aws::Route53
|
|
5779
5983
|
# * `ChildHealthChecks`\: Amazon Route 53 resets
|
5780
5984
|
# HealthCheckConfig$ChildHealthChecks to null.
|
5781
5985
|
#
|
5782
|
-
# * `FullyQualifiedDomainName`\:
|
5986
|
+
# * `FullyQualifiedDomainName`\: Route 53 resets
|
5783
5987
|
# HealthCheckConfig$FullyQualifiedDomainName to null.
|
5784
5988
|
#
|
5785
|
-
# * `Regions`\:
|
5786
|
-
#
|
5989
|
+
# * `Regions`\: Route 53 resets the HealthCheckConfig$Regions list to
|
5990
|
+
# the default set of regions.
|
5787
5991
|
#
|
5788
|
-
# * `ResourcePath`\:
|
5789
|
-
#
|
5992
|
+
# * `ResourcePath`\: Route 53 resets HealthCheckConfig$ResourcePath to
|
5993
|
+
# null.
|
5790
5994
|
# @return [Array<String>]
|
5791
5995
|
#
|
5792
5996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckRequest AWS API Documentation
|
@@ -5801,6 +6005,7 @@ module Aws::Route53
|
|
5801
6005
|
:search_string,
|
5802
6006
|
:failure_threshold,
|
5803
6007
|
:inverted,
|
6008
|
+
:disabled,
|
5804
6009
|
:health_threshold,
|
5805
6010
|
:child_health_checks,
|
5806
6011
|
:enable_sni,
|
@@ -5812,8 +6017,8 @@ module Aws::Route53
|
|
5812
6017
|
end
|
5813
6018
|
|
5814
6019
|
# @!attribute [rw] health_check
|
5815
|
-
# A complex type that contains
|
5816
|
-
#
|
6020
|
+
# A complex type that contains the response to an `UpdateHealthCheck`
|
6021
|
+
# request.
|
5817
6022
|
# @return [Types::HealthCheck]
|
5818
6023
|
#
|
5819
6024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckResponse AWS API Documentation
|
@@ -5855,8 +6060,8 @@ module Aws::Route53
|
|
5855
6060
|
# `UpdateHostedZoneComment` request.
|
5856
6061
|
#
|
5857
6062
|
# @!attribute [rw] hosted_zone
|
5858
|
-
# A complex type that contains
|
5859
|
-
#
|
6063
|
+
# A complex type that contains the response to the
|
6064
|
+
# `UpdateHostedZoneComment` request.
|
5860
6065
|
# @return [Types::HostedZone]
|
5861
6066
|
#
|
5862
6067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneCommentResponse AWS API Documentation
|
@@ -5988,8 +6193,8 @@ module Aws::Route53
|
|
5988
6193
|
# }
|
5989
6194
|
#
|
5990
6195
|
# @!attribute [rw] vpc_region
|
5991
|
-
# (Private hosted zones only) The region
|
5992
|
-
#
|
6196
|
+
# (Private hosted zones only) The region that an Amazon VPC was
|
6197
|
+
# created in.
|
5993
6198
|
# @return [String]
|
5994
6199
|
#
|
5995
6200
|
# @!attribute [rw] vpc_id
|