aws-sdk-route53 1.21.0 → 1.22.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 +201 -86
- data/lib/aws-sdk-route53/types.rb +244 -129
- metadata +3 -3
@@ -34,8 +34,11 @@ module Aws::Route53
|
|
34
34
|
# @return [String]
|
35
35
|
#
|
36
36
|
# @!attribute [rw] value
|
37
|
-
# The current value for the limit that is specified by
|
38
|
-
#
|
37
|
+
# The current value for the limit that is specified by [Type][1].
|
38
|
+
#
|
39
|
+
#
|
40
|
+
#
|
41
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_AccountLimit.html#Route53-Type-AccountLimit-Type
|
39
42
|
# @return [Integer]
|
40
43
|
#
|
41
44
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/AccountLimit AWS API Documentation
|
@@ -54,7 +57,7 @@ module Aws::Route53
|
|
54
57
|
# data as a hash:
|
55
58
|
#
|
56
59
|
# {
|
57
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
|
60
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
58
61
|
# name: "AlarmName", # required
|
59
62
|
# }
|
60
63
|
#
|
@@ -101,18 +104,13 @@ module Aws::Route53
|
|
101
104
|
include Aws::Structure
|
102
105
|
end
|
103
106
|
|
104
|
-
# *Alias resource record sets only:* Information about the
|
105
|
-
# distribution
|
106
|
-
#
|
107
|
-
# redirecting queries to. An Elastic Beanstalk environment must have a
|
108
|
-
# regionalized subdomain.
|
107
|
+
# *Alias resource record sets only:* Information about the AWS resource,
|
108
|
+
# such as a CloudFront distribution or an Amazon S3 bucket, that you
|
109
|
+
# want to route traffic to.
|
109
110
|
#
|
110
111
|
# When creating resource record sets for a private hosted zone, note the
|
111
112
|
# following:
|
112
113
|
#
|
113
|
-
# * Resource record sets can't be created for CloudFront distributions
|
114
|
-
# in a private hosted zone.
|
115
|
-
#
|
116
114
|
# * Creating geolocation alias resource record sets or latency alias
|
117
115
|
# resource record sets in a private hosted zone is unsupported.
|
118
116
|
#
|
@@ -137,6 +135,22 @@ module Aws::Route53
|
|
137
135
|
# *Alias resource records sets only*\: The value used depends on where
|
138
136
|
# you want to route traffic:
|
139
137
|
#
|
138
|
+
# Amazon API Gateway custom regional APIs and edge-optimized APIs
|
139
|
+
#
|
140
|
+
# : Specify the hosted zone ID for your API. You can get the
|
141
|
+
# applicable value using the AWS CLI command [get-domain-names][1]\:
|
142
|
+
#
|
143
|
+
# * For regional APIs, specify the value of `regionalHostedZoneId`.
|
144
|
+
#
|
145
|
+
# * For edge-optimized APIs, specify the value of
|
146
|
+
# `distributionHostedZoneId`.
|
147
|
+
#
|
148
|
+
# Amazon Virtual Private Cloud interface VPC endpoint
|
149
|
+
#
|
150
|
+
# : Specify the hosted zone ID for your interface endpoint. You can
|
151
|
+
# get the value of `HostedZoneId` using the AWS CLI command
|
152
|
+
# [describe-vpc-endpoints][2].
|
153
|
+
#
|
140
154
|
# CloudFront distribution
|
141
155
|
#
|
142
156
|
# : Specify `Z2FDTNDATAQYW2`.
|
@@ -151,7 +165,7 @@ module Aws::Route53
|
|
151
165
|
# : Specify the hosted zone ID for the region that you created the
|
152
166
|
# environment in. The environment must have a regionalized
|
153
167
|
# subdomain. For a list of regions and the corresponding hosted zone
|
154
|
-
# IDs, see [AWS Elastic Beanstalk][
|
168
|
+
# IDs, see [AWS Elastic Beanstalk][3] in the "AWS Regions and
|
155
169
|
# Endpoints" chapter of the *Amazon Web Services General
|
156
170
|
# Reference*.
|
157
171
|
#
|
@@ -160,7 +174,7 @@ module Aws::Route53
|
|
160
174
|
# : Specify the value of the hosted zone ID for the load balancer. Use
|
161
175
|
# the following methods to get the hosted zone ID:
|
162
176
|
#
|
163
|
-
# * [Elastic Load Balancing][
|
177
|
+
# * [Elastic Load Balancing][4] table in the "AWS Regions and
|
164
178
|
# Endpoints" chapter of the *Amazon Web Services General
|
165
179
|
# Reference*\: Use the value that corresponds with the region that
|
166
180
|
# you created your load balancer in. Note that there are separate
|
@@ -176,29 +190,29 @@ module Aws::Route53
|
|
176
190
|
# get the applicable value. For more information, see the
|
177
191
|
# applicable guide:
|
178
192
|
#
|
179
|
-
# * Classic Load Balancers: Use [DescribeLoadBalancers][
|
193
|
+
# * Classic Load Balancers: Use [DescribeLoadBalancers][5] to get
|
180
194
|
# the value of `CanonicalHostedZoneNameId`.
|
181
195
|
#
|
182
196
|
# * Application and Network Load Balancers: Use
|
183
|
-
# [DescribeLoadBalancers][
|
197
|
+
# [DescribeLoadBalancers][6] to get the value of
|
184
198
|
# `CanonicalHostedZoneId`.
|
185
199
|
#
|
186
200
|
# * **AWS CLI**\: Use `describe-load-balancers` to get the
|
187
201
|
# applicable value. For more information, see the applicable
|
188
202
|
# guide:
|
189
203
|
#
|
190
|
-
# * Classic Load Balancers: Use [describe-load-balancers][
|
204
|
+
# * Classic Load Balancers: Use [describe-load-balancers][7] to
|
191
205
|
# get the value of `CanonicalHostedZoneNameId`.
|
192
206
|
#
|
193
207
|
# * Application and Network Load Balancers: Use
|
194
|
-
# [describe-load-balancers][
|
208
|
+
# [describe-load-balancers][8] to get the value of
|
195
209
|
# `CanonicalHostedZoneId`.
|
196
210
|
#
|
197
211
|
# An Amazon S3 bucket configured as a static website
|
198
212
|
#
|
199
213
|
# : Specify the hosted zone ID for the region that you created the
|
200
214
|
# bucket in. For more information about valid values, see the
|
201
|
-
# [Amazon Simple Storage Service Website Endpoints][
|
215
|
+
# [Amazon Simple Storage Service Website Endpoints][9] table in the
|
202
216
|
# "AWS Regions and Endpoints" chapter of the *Amazon Web Services
|
203
217
|
# General Reference*.
|
204
218
|
#
|
@@ -210,19 +224,45 @@ module Aws::Route53
|
|
210
224
|
#
|
211
225
|
#
|
212
226
|
#
|
213
|
-
# [1]:
|
214
|
-
# [2]:
|
215
|
-
# [3]: http://docs.aws.amazon.com/
|
216
|
-
# [4]:
|
217
|
-
# [5]: http://docs.aws.amazon.com/
|
218
|
-
# [6]: http://docs.aws.amazon.com/
|
219
|
-
# [7]: http://docs.aws.amazon.com/
|
227
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html
|
228
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html
|
229
|
+
# [3]: http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region
|
230
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
|
231
|
+
# [5]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
|
232
|
+
# [6]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
|
233
|
+
# [7]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
|
234
|
+
# [8]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
|
235
|
+
# [9]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
220
236
|
# @return [String]
|
221
237
|
#
|
222
238
|
# @!attribute [rw] dns_name
|
223
239
|
# *Alias resource record sets only:* The value that you specify
|
224
240
|
# depends on where you want to route queries:
|
225
241
|
#
|
242
|
+
# Amazon API Gateway custom regional APIs and edge-optimized APIs
|
243
|
+
#
|
244
|
+
# : Specify the applicable domain name for your API. You can get the
|
245
|
+
# applicable value using the AWS CLI command [get-domain-names][1]\:
|
246
|
+
#
|
247
|
+
# * For regional APIs, specify the value of `regionalDomainName`.
|
248
|
+
#
|
249
|
+
# * For edge-optimized APIs, specify the value of
|
250
|
+
# `distributionDomainName`. This is the name of the associated
|
251
|
+
# CloudFront distribution, such as `da1b2c3d4e5.cloudfront.net`.
|
252
|
+
#
|
253
|
+
# <note markdown="1"> The name of the record that you're creating must match a custom
|
254
|
+
# domain name for your API, such as `api.example.com`.
|
255
|
+
#
|
256
|
+
# </note>
|
257
|
+
#
|
258
|
+
# Amazon Virtual Private Cloud interface VPC endpoint
|
259
|
+
#
|
260
|
+
# : Enter the API endpoint for the interface endpoint, such as
|
261
|
+
# `vpce-123456789abcdef01-example-us-east-1a.elasticloadbalancing.us-east-1.vpce.amazonaws.com`.
|
262
|
+
# For edge-optimized APIs, this is the domain name for the
|
263
|
+
# corresponding CloudFront distribution. You can get the value of
|
264
|
+
# `DnsName` using the AWS CLI command [describe-vpc-endpoints][2].
|
265
|
+
#
|
226
266
|
# CloudFront distribution
|
227
267
|
#
|
228
268
|
# : Specify the domain name that CloudFront assigned when you created
|
@@ -233,9 +273,12 @@ module Aws::Route53
|
|
233
273
|
# the name of the resource record set is *acme.example.com*, your
|
234
274
|
# CloudFront distribution must include *acme.example.com* as one of
|
235
275
|
# the alternate domain names. For more information, see [Using
|
236
|
-
# Alternate Domain Names (CNAMEs)][
|
276
|
+
# Alternate Domain Names (CNAMEs)][3] in the *Amazon CloudFront
|
237
277
|
# Developer Guide*.
|
238
278
|
#
|
279
|
+
# You can't create a resource record set in a private hosted zone
|
280
|
+
# to route traffic to a CloudFront distribution.
|
281
|
+
#
|
239
282
|
# <note markdown="1"> For failover alias records, you can't specify a CloudFront
|
240
283
|
# distribution for both the primary and secondary records. A
|
241
284
|
# distribution must include an alternate domain name that matches
|
@@ -270,17 +313,17 @@ module Aws::Route53
|
|
270
313
|
#
|
271
314
|
# * *AWS Management Console*\: For information about how to get the
|
272
315
|
# value by using the console, see [Using Custom Domains with AWS
|
273
|
-
# Elastic Beanstalk][
|
316
|
+
# Elastic Beanstalk][4] in the *AWS Elastic Beanstalk Developer
|
274
317
|
# Guide*.
|
275
318
|
#
|
276
319
|
# * *Elastic Beanstalk API*\: Use the `DescribeEnvironments` action
|
277
320
|
# to get the value of the `CNAME` attribute. For more information,
|
278
|
-
# see [DescribeEnvironments][
|
321
|
+
# see [DescribeEnvironments][5] in the *AWS Elastic Beanstalk API
|
279
322
|
# Reference*.
|
280
323
|
#
|
281
324
|
# * *AWS CLI*\: Use the `describe-environments` command to get the
|
282
325
|
# value of the `CNAME` attribute. For more information, see
|
283
|
-
# [describe-environments][
|
326
|
+
# [describe-environments][6] in the *AWS Command Line Interface
|
284
327
|
# Reference*.
|
285
328
|
#
|
286
329
|
# ELB load balancer
|
@@ -303,18 +346,18 @@ module Aws::Route53
|
|
303
346
|
# get the value of `DNSName`. For more information, see the
|
304
347
|
# applicable guide:
|
305
348
|
#
|
306
|
-
# * Classic Load Balancers: [DescribeLoadBalancers][
|
349
|
+
# * Classic Load Balancers: [DescribeLoadBalancers][7]
|
307
350
|
#
|
308
351
|
# * Application and Network Load Balancers:
|
309
|
-
# [DescribeLoadBalancers][
|
352
|
+
# [DescribeLoadBalancers][8]
|
310
353
|
#
|
311
354
|
# * **AWS CLI**\: Use `describe-load-balancers` to get the value of
|
312
355
|
# `DNSName`. For more information, see the applicable guide:
|
313
356
|
#
|
314
|
-
# * Classic Load Balancers: [describe-load-balancers][
|
357
|
+
# * Classic Load Balancers: [describe-load-balancers][9]
|
315
358
|
#
|
316
359
|
# * Application and Network Load Balancers:
|
317
|
-
# [describe-load-balancers][
|
360
|
+
# [describe-load-balancers][10]
|
318
361
|
#
|
319
362
|
# Amazon S3 bucket that is configured as a static website
|
320
363
|
#
|
@@ -322,9 +365,9 @@ module Aws::Route53
|
|
322
365
|
# created the bucket in, for example,
|
323
366
|
# `s3-website.us-east-2.amazonaws.com`. For more information about
|
324
367
|
# valid values, see the table [Amazon Simple Storage Service (S3)
|
325
|
-
# Website Endpoints][
|
368
|
+
# Website Endpoints][11] in the *Amazon Web Services General
|
326
369
|
# Reference*. For more information about using S3 buckets for
|
327
|
-
# websites, see [Getting Started with Amazon Route 53][
|
370
|
+
# websites, see [Getting Started with Amazon Route 53][12] in the
|
328
371
|
# *Amazon Route 53 Developer Guide.*
|
329
372
|
#
|
330
373
|
# Another Route 53 resource record set
|
@@ -344,16 +387,18 @@ module Aws::Route53
|
|
344
387
|
#
|
345
388
|
#
|
346
389
|
#
|
347
|
-
# [1]:
|
348
|
-
# [2]:
|
349
|
-
# [3]: http://docs.aws.amazon.com/
|
350
|
-
# [4]: http://docs.aws.amazon.com/
|
351
|
-
# [5]: http://docs.aws.amazon.com/
|
352
|
-
# [6]: http://docs.aws.amazon.com/
|
353
|
-
# [7]: http://docs.aws.amazon.com/
|
354
|
-
# [8]: http://docs.aws.amazon.com/
|
355
|
-
# [9]: http://docs.aws.amazon.com/
|
356
|
-
# [10]: http://docs.aws.amazon.com/
|
390
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html
|
391
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html
|
392
|
+
# [3]: http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html
|
393
|
+
# [4]: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html
|
394
|
+
# [5]: http://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html
|
395
|
+
# [6]: http://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html
|
396
|
+
# [7]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
|
397
|
+
# [8]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
|
398
|
+
# [9]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
|
399
|
+
# [10]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
|
400
|
+
# [11]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
|
401
|
+
# [12]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html
|
357
402
|
# @return [String]
|
358
403
|
#
|
359
404
|
# @!attribute [rw] evaluate_target_health
|
@@ -410,7 +455,7 @@ module Aws::Route53
|
|
410
455
|
# and Route 53 routes queries to other resources.
|
411
456
|
#
|
412
457
|
# * A target group that has no registered targets is considered
|
413
|
-
#
|
458
|
+
# unhealthy.
|
414
459
|
#
|
415
460
|
# <note markdown="1"> When you create a load balancer, you configure settings for
|
416
461
|
# Elastic Load Balancing health checks; they're not Route 53 health
|
@@ -463,7 +508,7 @@ module Aws::Route53
|
|
463
508
|
# {
|
464
509
|
# hosted_zone_id: "ResourceId", # required
|
465
510
|
# vpc: { # required
|
466
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
511
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
467
512
|
# vpc_id: "VPCId",
|
468
513
|
# },
|
469
514
|
# comment: "AssociateVPCComment",
|
@@ -521,7 +566,7 @@ module Aws::Route53
|
|
521
566
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
522
567
|
# set_identifier: "ResourceRecordSetIdentifier",
|
523
568
|
# weight: 1,
|
524
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-south-1
|
569
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, ap-south-1
|
525
570
|
# geo_location: {
|
526
571
|
# continent_code: "GeoLocationContinentCode",
|
527
572
|
# country_code: "GeoLocationCountryCode",
|
@@ -554,7 +599,7 @@ module Aws::Route53
|
|
554
599
|
# * `DELETE`\: Deletes a existing resource record set.
|
555
600
|
#
|
556
601
|
# To delete the resource record set that is associated with a
|
557
|
-
# traffic policy instance, use
|
602
|
+
# traffic policy instance, use [DeleteTrafficPolicyInstance][1].
|
558
603
|
# Amazon Route 53 will delete the resource record set automatically.
|
559
604
|
# If you delete the resource record set by using
|
560
605
|
# `ChangeResourceRecordSets`, Route 53 doesn't automatically delete
|
@@ -564,6 +609,10 @@ module Aws::Route53
|
|
564
609
|
# * `UPSERT`\: If a resource record set doesn't already exist, Route
|
565
610
|
# 53 creates it. If a resource record set does exist, Route 53
|
566
611
|
# updates it with the values in the request.
|
612
|
+
#
|
613
|
+
#
|
614
|
+
#
|
615
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicyInstance.html
|
567
616
|
# @return [String]
|
568
617
|
#
|
569
618
|
# @!attribute [rw] resource_record_set
|
@@ -594,7 +643,7 @@ module Aws::Route53
|
|
594
643
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
595
644
|
# set_identifier: "ResourceRecordSetIdentifier",
|
596
645
|
# weight: 1,
|
597
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-south-1
|
646
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, ap-south-1
|
598
647
|
# geo_location: {
|
599
648
|
# continent_code: "GeoLocationContinentCode",
|
600
649
|
# country_code: "GeoLocationCountryCode",
|
@@ -664,8 +713,12 @@ module Aws::Route53
|
|
664
713
|
# A complex type that describes change information about changes made
|
665
714
|
# to your hosted zone.
|
666
715
|
#
|
667
|
-
# This element contains an ID that you use when performing a
|
668
|
-
# action to get detailed information about the change.
|
716
|
+
# This element contains an ID that you use when performing a
|
717
|
+
# [GetChange][1] action to get detailed information about the change.
|
718
|
+
#
|
719
|
+
#
|
720
|
+
#
|
721
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
|
669
722
|
# @return [String]
|
670
723
|
#
|
671
724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeInfo AWS API Documentation
|
@@ -696,7 +749,7 @@ module Aws::Route53
|
|
696
749
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
697
750
|
# set_identifier: "ResourceRecordSetIdentifier",
|
698
751
|
# weight: 1,
|
699
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-south-1
|
752
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, ap-south-1
|
700
753
|
# geo_location: {
|
701
754
|
# continent_code: "GeoLocationContinentCode",
|
702
755
|
# country_code: "GeoLocationCountryCode",
|
@@ -747,8 +800,12 @@ module Aws::Route53
|
|
747
800
|
# A complex type that contains information about changes made to your
|
748
801
|
# hosted zone.
|
749
802
|
#
|
750
|
-
# This element contains an ID that you use when performing a
|
751
|
-
# action to get detailed information about the change.
|
803
|
+
# This element contains an ID that you use when performing a
|
804
|
+
# [GetChange][1] action to get detailed information about the change.
|
805
|
+
#
|
806
|
+
#
|
807
|
+
#
|
808
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
|
752
809
|
# @return [Types::ChangeInfo]
|
753
810
|
#
|
754
811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ChangeResourceRecordSetsResponse AWS API Documentation
|
@@ -911,7 +968,7 @@ module Aws::Route53
|
|
911
968
|
# enable_sni: false,
|
912
969
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
913
970
|
# alarm_identifier: {
|
914
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
|
971
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
915
972
|
# name: "AlarmName", # required
|
916
973
|
# },
|
917
974
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -983,7 +1040,7 @@ module Aws::Route53
|
|
983
1040
|
# {
|
984
1041
|
# name: "DNSName", # required
|
985
1042
|
# vpc: {
|
986
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1043
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
987
1044
|
# vpc_id: "VPCId",
|
988
1045
|
# },
|
989
1046
|
# caller_reference: "Nonce", # required
|
@@ -1014,7 +1071,11 @@ module Aws::Route53
|
|
1014
1071
|
#
|
1015
1072
|
# You can specify only one Amazon VPC when you create a private hosted
|
1016
1073
|
# zone. To associate additional Amazon VPCs with the hosted zone, use
|
1017
|
-
# AssociateVPCWithHostedZone after you create a hosted zone.
|
1074
|
+
# [AssociateVPCWithHostedZone][1] after you create a hosted zone.
|
1075
|
+
#
|
1076
|
+
#
|
1077
|
+
#
|
1078
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_AssociateVPCWithHostedZone.html
|
1018
1079
|
# @return [Types::VPC]
|
1019
1080
|
#
|
1020
1081
|
# @!attribute [rw] caller_reference
|
@@ -1042,7 +1103,11 @@ module Aws::Route53
|
|
1042
1103
|
# If you want to associate a reusable delegation set with this hosted
|
1043
1104
|
# zone, the ID that Amazon Route 53 assigned to the reusable
|
1044
1105
|
# delegation set when you created it. For more information about
|
1045
|
-
# reusable delegation sets, see CreateReusableDelegationSet.
|
1106
|
+
# reusable delegation sets, see [CreateReusableDelegationSet][1].
|
1107
|
+
#
|
1108
|
+
#
|
1109
|
+
#
|
1110
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateReusableDelegationSet.html
|
1046
1111
|
# @return [String]
|
1047
1112
|
#
|
1048
1113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateHostedZoneRequest AWS API Documentation
|
@@ -1119,8 +1184,8 @@ module Aws::Route53
|
|
1119
1184
|
#
|
1120
1185
|
#
|
1121
1186
|
#
|
1122
|
-
# [1]:
|
1123
|
-
# [2]:
|
1187
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html
|
1188
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/reference/logs/describe-log-groups.html
|
1124
1189
|
# @return [String]
|
1125
1190
|
#
|
1126
1191
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateQueryLoggingConfigRequest AWS API Documentation
|
@@ -1292,7 +1357,7 @@ module Aws::Route53
|
|
1292
1357
|
#
|
1293
1358
|
#
|
1294
1359
|
#
|
1295
|
-
# [1]:
|
1360
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html
|
1296
1361
|
# @return [String]
|
1297
1362
|
#
|
1298
1363
|
# @!attribute [rw] comment
|
@@ -1349,7 +1414,11 @@ module Aws::Route53
|
|
1349
1414
|
# The definition of this version of the traffic policy, in JSON
|
1350
1415
|
# format. You specified the JSON in the `CreateTrafficPolicyVersion`
|
1351
1416
|
# request. For more information about the JSON format, see
|
1352
|
-
# CreateTrafficPolicy.
|
1417
|
+
# [CreateTrafficPolicy][1].
|
1418
|
+
#
|
1419
|
+
#
|
1420
|
+
#
|
1421
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateTrafficPolicy.html
|
1353
1422
|
# @return [String]
|
1354
1423
|
#
|
1355
1424
|
# @!attribute [rw] comment
|
@@ -1397,7 +1466,7 @@ module Aws::Route53
|
|
1397
1466
|
# {
|
1398
1467
|
# hosted_zone_id: "ResourceId", # required
|
1399
1468
|
# vpc: { # required
|
1400
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1469
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1401
1470
|
# vpc_id: "VPCId",
|
1402
1471
|
# },
|
1403
1472
|
# }
|
@@ -1647,7 +1716,7 @@ module Aws::Route53
|
|
1647
1716
|
# {
|
1648
1717
|
# hosted_zone_id: "ResourceId", # required
|
1649
1718
|
# vpc: { # required
|
1650
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1719
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1651
1720
|
# vpc_id: "VPCId",
|
1652
1721
|
# },
|
1653
1722
|
# }
|
@@ -1709,7 +1778,7 @@ module Aws::Route53
|
|
1709
1778
|
# {
|
1710
1779
|
# hosted_zone_id: "ResourceId", # required
|
1711
1780
|
# vpc: { # required
|
1712
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1781
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
1713
1782
|
# vpc_id: "VPCId",
|
1714
1783
|
# },
|
1715
1784
|
# comment: "DisassociateVPCComment",
|
@@ -1932,13 +2001,19 @@ module Aws::Route53
|
|
1932
2001
|
include Aws::Structure
|
1933
2002
|
end
|
1934
2003
|
|
2004
|
+
# Empty request.
|
2005
|
+
#
|
1935
2006
|
# @api private
|
1936
2007
|
#
|
1937
2008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetCheckerIpRangesRequest AWS API Documentation
|
1938
2009
|
#
|
1939
2010
|
class GetCheckerIpRangesRequest < Aws::EmptyStructure; end
|
1940
2011
|
|
2012
|
+
# A complex type that contains the `CheckerIpRanges` element.
|
2013
|
+
#
|
1941
2014
|
# @!attribute [rw] checker_ip_ranges
|
2015
|
+
# A complex type that contains sorted list of IP ranges in CIDR format
|
2016
|
+
# for Amazon Route 53 health checkers.
|
1942
2017
|
# @return [Array<String>]
|
1943
2018
|
#
|
1944
2019
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetCheckerIpRangesResponse AWS API Documentation
|
@@ -2323,7 +2398,12 @@ module Aws::Route53
|
|
2323
2398
|
|
2324
2399
|
# @!attribute [rw] query_logging_config
|
2325
2400
|
# A complex type that contains information about the query logging
|
2326
|
-
# configuration that you specified in a GetQueryLoggingConfig
|
2401
|
+
# configuration that you specified in a [GetQueryLoggingConfig][1]
|
2402
|
+
# request.
|
2403
|
+
#
|
2404
|
+
#
|
2405
|
+
#
|
2406
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetQueryLoggingConfig.html
|
2327
2407
|
# @return [Types::QueryLoggingConfig]
|
2328
2408
|
#
|
2329
2409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetQueryLoggingConfigResponse AWS API Documentation
|
@@ -2591,7 +2671,7 @@ module Aws::Route53
|
|
2591
2671
|
# enable_sni: false,
|
2592
2672
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
2593
2673
|
# alarm_identifier: {
|
2594
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
|
2674
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
2595
2675
|
# name: "AlarmName", # required
|
2596
2676
|
# },
|
2597
2677
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -2621,28 +2701,28 @@ module Aws::Route53
|
|
2621
2701
|
# the Elastic IP address for `IPAddress`. This ensures that the IP
|
2622
2702
|
# address of your instance will never change.
|
2623
2703
|
#
|
2624
|
-
# For more information, see
|
2625
|
-
# HealthCheckConfig$FullyQualifiedDomainName.
|
2704
|
+
# For more information, see [FullyQualifiedDomainName][1].
|
2626
2705
|
#
|
2627
2706
|
# Constraints: Route 53 can't check the health of endpoints for which
|
2628
2707
|
# the IP address is in local, private, non-routable, or multicast
|
2629
2708
|
# ranges. For more information about IP addresses for which you can't
|
2630
2709
|
# create health checks, see the following documents:
|
2631
2710
|
#
|
2632
|
-
# * [RFC 5735, Special Use IPv4 Addresses][
|
2711
|
+
# * [RFC 5735, Special Use IPv4 Addresses][2]
|
2633
2712
|
#
|
2634
|
-
# * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][
|
2713
|
+
# * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][3]
|
2635
2714
|
#
|
2636
|
-
# * [RFC 5156, Special-Use IPv6 Addresses][
|
2715
|
+
# * [RFC 5156, Special-Use IPv6 Addresses][4]
|
2637
2716
|
#
|
2638
2717
|
# When the value of `Type` is `CALCULATED` or `CLOUDWATCH_METRIC`,
|
2639
2718
|
# omit `IPAddress`.
|
2640
2719
|
#
|
2641
2720
|
#
|
2642
2721
|
#
|
2643
|
-
# [1]: https://
|
2644
|
-
# [2]: https://tools.ietf.org/html/
|
2645
|
-
# [3]: https://tools.ietf.org/html/
|
2722
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName
|
2723
|
+
# [2]: https://tools.ietf.org/html/rfc5735
|
2724
|
+
# [3]: https://tools.ietf.org/html/rfc6598
|
2725
|
+
# [4]: https://tools.ietf.org/html/rfc5156
|
2646
2726
|
# @return [String]
|
2647
2727
|
#
|
2648
2728
|
# @!attribute [rw] port
|
@@ -2702,7 +2782,7 @@ module Aws::Route53
|
|
2702
2782
|
#
|
2703
2783
|
#
|
2704
2784
|
#
|
2705
|
-
# [1]:
|
2785
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
|
2706
2786
|
# @return [String]
|
2707
2787
|
#
|
2708
2788
|
# @!attribute [rw] resource_path
|
@@ -2853,24 +2933,23 @@ module Aws::Route53
|
|
2853
2933
|
# the health check to always be healthy. If you configured DNS
|
2854
2934
|
# failover, Route 53 continues to route traffic to the corresponding
|
2855
2935
|
# resources. If you want to stop routing traffic to a resource, change
|
2856
|
-
# the value of
|
2936
|
+
# the value of [Inverted][1].
|
2857
2937
|
#
|
2858
2938
|
# Charges for a health check still apply when the health check is
|
2859
|
-
# disabled. For more information, see [Amazon Route 53 Pricing][
|
2939
|
+
# disabled. For more information, see [Amazon Route 53 Pricing][2].
|
2860
2940
|
#
|
2861
2941
|
#
|
2862
2942
|
#
|
2863
|
-
# [1]:
|
2943
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-Inverted
|
2944
|
+
# [2]: http://aws.amazon.com/route53/pricing/
|
2864
2945
|
# @return [Boolean]
|
2865
2946
|
#
|
2866
2947
|
# @!attribute [rw] health_threshold
|
2867
2948
|
# The number of child health checks that are associated with a
|
2868
|
-
# `CALCULATED` health that Amazon Route 53 must consider healthy
|
2869
|
-
# the `CALCULATED` health check to be considered healthy. To
|
2870
|
-
# the child health checks that you want to associate with a
|
2871
|
-
# `CALCULATED` health check, use the
|
2872
|
-
# HealthCheckConfig$ChildHealthChecks and
|
2873
|
-
# HealthCheckConfig$ChildHealthChecks elements.
|
2949
|
+
# `CALCULATED` health check that Amazon Route 53 must consider healthy
|
2950
|
+
# for the `CALCULATED` health check to be considered healthy. To
|
2951
|
+
# specify the child health checks that you want to associate with a
|
2952
|
+
# `CALCULATED` health check, use the [ChildHealthChecks][1] element.
|
2874
2953
|
#
|
2875
2954
|
# Note the following:
|
2876
2955
|
#
|
@@ -2880,6 +2959,10 @@ module Aws::Route53
|
|
2880
2959
|
#
|
2881
2960
|
# * If you specify `0`, Route 53 always considers this health check to
|
2882
2961
|
# be healthy.
|
2962
|
+
#
|
2963
|
+
#
|
2964
|
+
#
|
2965
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-ChildHealthChecks
|
2883
2966
|
# @return [Integer]
|
2884
2967
|
#
|
2885
2968
|
# @!attribute [rw] child_health_checks
|
@@ -3016,7 +3099,11 @@ module Aws::Route53
|
|
3016
3099
|
#
|
3017
3100
|
# For information about how to specify characters other than `a-z`,
|
3018
3101
|
# `0-9`, and `-` (hyphen) and how to specify internationalized domain
|
3019
|
-
# names, see CreateHostedZone.
|
3102
|
+
# names, see [CreateHostedZone][1].
|
3103
|
+
#
|
3104
|
+
#
|
3105
|
+
#
|
3106
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateHostedZone.html
|
3020
3107
|
# @return [String]
|
3021
3108
|
#
|
3022
3109
|
# @!attribute [rw] caller_reference
|
@@ -3583,12 +3670,15 @@ module Aws::Route53
|
|
3583
3670
|
# (Optional) The maximum number of query logging configurations that
|
3584
3671
|
# you want Amazon Route 53 to return in response to the current
|
3585
3672
|
# request. If the current AWS account has more than `MaxResults`
|
3586
|
-
# configurations, use the value of
|
3587
|
-
#
|
3588
|
-
# next page of results.
|
3673
|
+
# configurations, use the value of [NextToken][1] in the response to
|
3674
|
+
# get the next page of results.
|
3589
3675
|
#
|
3590
3676
|
# If you don't specify a value for `MaxResults`, Route 53 returns up
|
3591
3677
|
# to 100 configurations.
|
3678
|
+
#
|
3679
|
+
#
|
3680
|
+
#
|
3681
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListQueryLoggingConfigs.html#API_ListQueryLoggingConfigs_RequestSyntax
|
3592
3682
|
# @return [String]
|
3593
3683
|
#
|
3594
3684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListQueryLoggingConfigsRequest AWS API Documentation
|
@@ -3601,9 +3691,13 @@ module Aws::Route53
|
|
3601
3691
|
end
|
3602
3692
|
|
3603
3693
|
# @!attribute [rw] query_logging_configs
|
3604
|
-
# An array that contains one QueryLoggingConfig element for each
|
3694
|
+
# An array that contains one [QueryLoggingConfig][1] element for each
|
3605
3695
|
# configuration for DNS query logging that is associated with the
|
3606
3696
|
# current AWS account.
|
3697
|
+
#
|
3698
|
+
#
|
3699
|
+
#
|
3700
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_QueryLoggingConfig.html
|
3607
3701
|
# @return [Array<Types::QueryLoggingConfig>]
|
3608
3702
|
#
|
3609
3703
|
# @!attribute [rw] next_token
|
@@ -3613,9 +3707,13 @@ module Aws::Route53
|
|
3613
3707
|
#
|
3614
3708
|
# If a response doesn't include the last of the configurations, you
|
3615
3709
|
# can get more configurations by submitting another
|
3616
|
-
# ListQueryLoggingConfigs request. Get the value of `NextToken`
|
3617
|
-
# Amazon Route 53 returned in the previous response and include
|
3618
|
-
# `NextToken` in the next request.
|
3710
|
+
# [ListQueryLoggingConfigs][1] request. Get the value of `NextToken`
|
3711
|
+
# that Amazon Route 53 returned in the previous response and include
|
3712
|
+
# it in `NextToken` in the next request.
|
3713
|
+
#
|
3714
|
+
#
|
3715
|
+
#
|
3716
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListQueryLoggingConfigs.html
|
3619
3717
|
# @return [String]
|
3620
3718
|
#
|
3621
3719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListQueryLoggingConfigsResponse AWS API Documentation
|
@@ -3663,15 +3761,19 @@ module Aws::Route53
|
|
3663
3761
|
#
|
3664
3762
|
# Values for alias resource record sets:
|
3665
3763
|
#
|
3764
|
+
# * **API Gateway custom regional API or edge-optimized API**\: A
|
3765
|
+
#
|
3666
3766
|
# * **CloudFront distribution**\: A or AAAA
|
3667
3767
|
#
|
3668
3768
|
# * **Elastic Beanstalk environment that has a regionalized
|
3669
3769
|
# subdomain**\: A
|
3670
3770
|
#
|
3671
|
-
# * **
|
3771
|
+
# * **Elastic Load Balancing load balancer**\: A \| AAAA
|
3672
3772
|
#
|
3673
3773
|
# * **Amazon S3 bucket**\: A
|
3674
3774
|
#
|
3775
|
+
# * **Amazon VPC interface VPC endpoint**\: A
|
3776
|
+
#
|
3675
3777
|
# * **Another resource record set in this hosted zone:** The type of
|
3676
3778
|
# the resource record set that the alias references.
|
3677
3779
|
#
|
@@ -3745,7 +3847,7 @@ module Aws::Route53
|
|
3745
3847
|
#
|
3746
3848
|
#
|
3747
3849
|
#
|
3748
|
-
# [1]:
|
3850
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html
|
3749
3851
|
# @return [String]
|
3750
3852
|
#
|
3751
3853
|
# @!attribute [rw] max_items
|
@@ -4617,7 +4719,7 @@ module Aws::Route53
|
|
4617
4719
|
#
|
4618
4720
|
#
|
4619
4721
|
#
|
4620
|
-
# [1]:
|
4722
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html
|
4621
4723
|
# @return [String]
|
4622
4724
|
#
|
4623
4725
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecord AWS API Documentation
|
@@ -4637,7 +4739,7 @@ module Aws::Route53
|
|
4637
4739
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
4638
4740
|
# set_identifier: "ResourceRecordSetIdentifier",
|
4639
4741
|
# weight: 1,
|
4640
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-south-1
|
4742
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, ap-south-1
|
4641
4743
|
# geo_location: {
|
4642
4744
|
# continent_code: "GeoLocationContinentCode",
|
4643
4745
|
# country_code: "GeoLocationCountryCode",
|
@@ -4738,6 +4840,9 @@ module Aws::Route53
|
|
4738
4840
|
#
|
4739
4841
|
# Values for alias resource record sets:
|
4740
4842
|
#
|
4843
|
+
# * **Amazon API Gateway custom regional APIs and edge-optimized
|
4844
|
+
# APIs:** `A`
|
4845
|
+
#
|
4741
4846
|
# * **CloudFront distributions:** `A`
|
4742
4847
|
#
|
4743
4848
|
# If IPv6 is enabled for the distribution, create two resource
|
@@ -4751,6 +4856,8 @@ module Aws::Route53
|
|
4751
4856
|
#
|
4752
4857
|
# * **Amazon S3 buckets:** `A`
|
4753
4858
|
#
|
4859
|
+
# * **Amazon Virtual Private Cloud interface VPC endpoints** `A`
|
4860
|
+
#
|
4754
4861
|
# * **Another resource record set in this hosted zone:** Specify the
|
4755
4862
|
# type of the resource record set that you're creating the alias
|
4756
4863
|
# for. All values are supported except `NS` and `SOA`.
|
@@ -4784,7 +4891,7 @@ module Aws::Route53
|
|
4784
4891
|
#
|
4785
4892
|
#
|
4786
4893
|
#
|
4787
|
-
# [1]:
|
4894
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html
|
4788
4895
|
# @return [String]
|
4789
4896
|
#
|
4790
4897
|
# @!attribute [rw] weight
|
@@ -5030,17 +5137,15 @@ module Aws::Route53
|
|
5030
5137
|
# @return [Array<Types::ResourceRecord>]
|
5031
5138
|
#
|
5032
5139
|
# @!attribute [rw] alias_target
|
5033
|
-
# *Alias resource record sets only:* Information about the
|
5034
|
-
#
|
5035
|
-
#
|
5036
|
-
# you're redirecting queries. The AWS Elastic Beanstalk environment
|
5037
|
-
# must have a regionalized subdomain.
|
5140
|
+
# *Alias resource record sets only:* Information about the AWS
|
5141
|
+
# resource, such as a CloudFront distribution or an Amazon S3 bucket,
|
5142
|
+
# that you want to route traffic to.
|
5038
5143
|
#
|
5039
5144
|
# If you're creating resource records sets for a private hosted zone,
|
5040
5145
|
# note the following:
|
5041
5146
|
#
|
5042
|
-
# * You can't create alias resource record
|
5043
|
-
#
|
5147
|
+
# * You can't create an alias resource record set in a private hosted
|
5148
|
+
# zone to route traffic to a CloudFront distribution.
|
5044
5149
|
#
|
5045
5150
|
# * Creating geolocation alias resource record sets or latency alias
|
5046
5151
|
# resource record sets in a private hosted zone is unsupported.
|
@@ -5179,7 +5284,7 @@ module Aws::Route53
|
|
5179
5284
|
#
|
5180
5285
|
#
|
5181
5286
|
#
|
5182
|
-
# [1]:
|
5287
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
|
5183
5288
|
# [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html
|
5184
5289
|
# [3]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
|
5185
5290
|
# @return [String]
|
@@ -5499,7 +5604,7 @@ module Aws::Route53
|
|
5499
5604
|
#
|
5500
5605
|
#
|
5501
5606
|
#
|
5502
|
-
# [1]:
|
5607
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/api-policies-traffic-policy-document-format.html
|
5503
5608
|
# @return [String]
|
5504
5609
|
#
|
5505
5610
|
# @!attribute [rw] comment
|
@@ -5660,7 +5765,7 @@ module Aws::Route53
|
|
5660
5765
|
# enable_sni: false,
|
5661
5766
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
5662
5767
|
# alarm_identifier: {
|
5663
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1
|
5768
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
5664
5769
|
# name: "AlarmName", # required
|
5665
5770
|
# },
|
5666
5771
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -5731,27 +5836,27 @@ module Aws::Route53
|
|
5731
5836
|
#
|
5732
5837
|
# </note>
|
5733
5838
|
#
|
5734
|
-
# For more information, see
|
5735
|
-
# UpdateHealthCheckRequest$FullyQualifiedDomainName.
|
5839
|
+
# For more information, see [FullyQualifiedDomainName][3].
|
5736
5840
|
#
|
5737
5841
|
# Constraints: Route 53 can't check the health of endpoints for which
|
5738
5842
|
# the IP address is in local, private, non-routable, or multicast
|
5739
5843
|
# ranges. For more information about IP addresses for which you can't
|
5740
5844
|
# create health checks, see the following documents:
|
5741
5845
|
#
|
5742
|
-
# * [RFC 5735, Special Use IPv4 Addresses][
|
5846
|
+
# * [RFC 5735, Special Use IPv4 Addresses][4]
|
5743
5847
|
#
|
5744
|
-
# * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][
|
5848
|
+
# * [RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space][5]
|
5745
5849
|
#
|
5746
|
-
# * [RFC 5156, Special-Use IPv6 Addresses][
|
5850
|
+
# * [RFC 5156, Special-Use IPv6 Addresses][6]
|
5747
5851
|
#
|
5748
5852
|
#
|
5749
5853
|
#
|
5750
|
-
# [1]:
|
5751
|
-
# [2]:
|
5752
|
-
# [3]: https://
|
5753
|
-
# [4]: https://tools.ietf.org/html/
|
5754
|
-
# [5]: https://tools.ietf.org/html/
|
5854
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html
|
5855
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/elastic-ip-addresses-eip.html
|
5856
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName
|
5857
|
+
# [4]: https://tools.ietf.org/html/rfc5735
|
5858
|
+
# [5]: https://tools.ietf.org/html/rfc6598
|
5859
|
+
# [6]: https://tools.ietf.org/html/rfc5156
|
5755
5860
|
# @return [String]
|
5756
5861
|
#
|
5757
5862
|
# @!attribute [rw] port
|
@@ -5892,14 +5997,15 @@ module Aws::Route53
|
|
5892
5997
|
# the health check to always be healthy. If you configured DNS
|
5893
5998
|
# failover, Route 53 continues to route traffic to the corresponding
|
5894
5999
|
# resources. If you want to stop routing traffic to a resource, change
|
5895
|
-
# the value of
|
6000
|
+
# the value of [Inverted][1].
|
5896
6001
|
#
|
5897
6002
|
# Charges for a health check still apply when the health check is
|
5898
|
-
# disabled. For more information, see [Amazon Route 53 Pricing][
|
6003
|
+
# disabled. For more information, see [Amazon Route 53 Pricing][2].
|
5899
6004
|
#
|
5900
6005
|
#
|
5901
6006
|
#
|
5902
|
-
# [1]:
|
6007
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-Inverted
|
6008
|
+
# [2]: http://aws.amazon.com/route53/pricing/
|
5903
6009
|
# @return [Boolean]
|
5904
6010
|
#
|
5905
6011
|
# @!attribute [rw] health_threshold
|
@@ -5985,16 +6091,22 @@ module Aws::Route53
|
|
5985
6091
|
# values for `ResettableElementName` include the following:
|
5986
6092
|
#
|
5987
6093
|
# * `ChildHealthChecks`\: Amazon Route 53 resets
|
5988
|
-
#
|
6094
|
+
# [ChildHealthChecks][1] to null.
|
5989
6095
|
#
|
5990
6096
|
# * `FullyQualifiedDomainName`\: Route 53 resets
|
5991
|
-
#
|
6097
|
+
# [FullyQualifiedDomainName][2]. to null.
|
5992
6098
|
#
|
5993
|
-
# * `Regions`\: Route 53 resets the
|
5994
|
-
#
|
6099
|
+
# * `Regions`\: Route 53 resets the [Regions][3] list to the default
|
6100
|
+
# set of regions.
|
5995
6101
|
#
|
5996
|
-
# * `ResourcePath`\: Route 53 resets
|
5997
|
-
#
|
6102
|
+
# * `ResourcePath`\: Route 53 resets [ResourcePath][4] to null.
|
6103
|
+
#
|
6104
|
+
#
|
6105
|
+
#
|
6106
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ChildHealthChecks
|
6107
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHealthCheck.html#Route53-UpdateHealthCheck-request-FullyQualifiedDomainName
|
6108
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-Regions
|
6109
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html#Route53-Type-HealthCheckConfig-ResourcePath
|
5998
6110
|
# @return [Array<String>]
|
5999
6111
|
#
|
6000
6112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckRequest AWS API Documentation
|
@@ -6020,6 +6132,9 @@ module Aws::Route53
|
|
6020
6132
|
include Aws::Structure
|
6021
6133
|
end
|
6022
6134
|
|
6135
|
+
# A complex type that contains the response to the `UpdateHealthCheck`
|
6136
|
+
# request.
|
6137
|
+
#
|
6023
6138
|
# @!attribute [rw] health_check
|
6024
6139
|
# A complex type that contains the response to an `UpdateHealthCheck`
|
6025
6140
|
# request.
|
@@ -6192,7 +6307,7 @@ module Aws::Route53
|
|
6192
6307
|
# data as a hash:
|
6193
6308
|
#
|
6194
6309
|
# {
|
6195
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
6310
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1
|
6196
6311
|
# vpc_id: "VPCId",
|
6197
6312
|
# }
|
6198
6313
|
#
|