aws-sdk-route53 1.30.0 → 1.35.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 +5 -5
- data/lib/aws-sdk-route53.rb +7 -4
- data/lib/aws-sdk-route53/client.rb +214 -108
- data/lib/aws-sdk-route53/client_api.rb +6 -0
- data/lib/aws-sdk-route53/errors.rb +73 -51
- data/lib/aws-sdk-route53/resource.rb +1 -0
- data/lib/aws-sdk-route53/types.rb +173 -112
- data/lib/aws-sdk-route53/waiters.rb +61 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fde95ff42504acf4c5abd3220e18cc4fa639c055be45f1d3358e0304a68632c7
|
4
|
+
data.tar.gz: ce97971fd62fcaa26624365279a5fe9bc638faf67c15361bd412603ec7aa84ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b32d7c647d7ab8728d1b4d66edad6c2593a772c267529d3e121d7784329fe6a409e72ea62cd61dc4e21a4845f1f050c62d4e0e04c1708cfa2c99abbdc7f6498
|
7
|
+
data.tar.gz: 68fa63aaaa3d548f07bebe2ce8264c2cecb331ff142fa7e42acc639dfbb88cde6c723d54a8d2bae928923e531abaee6d449f3c028a590109208cc9a687cf0037
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-route53/customizations'
|
|
25
25
|
# methods each accept a hash of request parameters and return a response
|
26
26
|
# structure.
|
27
27
|
#
|
28
|
+
# route_53 = Aws::Route53::Client.new
|
29
|
+
# resp = route_53.associate_vpc_with_hosted_zone(params)
|
30
|
+
#
|
28
31
|
# See {Client} for more information.
|
29
32
|
#
|
30
33
|
# # Errors
|
31
34
|
#
|
32
|
-
# Errors returned from Amazon Route 53
|
33
|
-
# extend {Errors::ServiceError}.
|
35
|
+
# Errors returned from Amazon Route 53 are defined in the
|
36
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
37
|
#
|
35
38
|
# begin
|
36
39
|
# # do stuff
|
37
40
|
# rescue Aws::Route53::Errors::ServiceError
|
38
|
-
# # rescues all
|
41
|
+
# # rescues all Amazon Route 53 API errors
|
39
42
|
# end
|
40
43
|
#
|
41
44
|
# See {Errors} for more information.
|
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-route53/customizations'
|
|
43
46
|
# @service
|
44
47
|
module Aws::Route53
|
45
48
|
|
46
|
-
GEM_VERSION = '1.
|
49
|
+
GEM_VERSION = '1.35.0'
|
47
50
|
|
48
51
|
end
|
@@ -31,6 +31,18 @@ require 'aws-sdk-route53/plugins/id_fix.rb'
|
|
31
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:route53)
|
32
32
|
|
33
33
|
module Aws::Route53
|
34
|
+
# An API client for Route53. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::Route53::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
34
46
|
class Client < Seahorse::Client::Base
|
35
47
|
|
36
48
|
include Aws::ClientStubs
|
@@ -95,7 +107,7 @@ module Aws::Route53
|
|
95
107
|
# @option options [required, String] :region
|
96
108
|
# The AWS region to connect to. The configured `:region` is
|
97
109
|
# used to determine the service `:endpoint`. When not passed,
|
98
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
99
111
|
#
|
100
112
|
# * `Aws.config[:region]`
|
101
113
|
# * `ENV['AWS_REGION']`
|
@@ -110,6 +122,12 @@ module Aws::Route53
|
|
110
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
111
123
|
# the background every 60 secs (default). Defaults to `false`.
|
112
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
113
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
114
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
115
133
|
# this client.
|
@@ -134,6 +152,10 @@ module Aws::Route53
|
|
134
152
|
# When `true`, an attempt is made to coerce request parameters into
|
135
153
|
# the required types.
|
136
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
137
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
138
160
|
# Set to true to disable SDK automatically adding host prefix
|
139
161
|
# to default service endpoint when available.
|
@@ -141,7 +163,7 @@ module Aws::Route53
|
|
141
163
|
# @option options [String] :endpoint
|
142
164
|
# The client endpoint is normally constructed from the `:region`
|
143
165
|
# option. You should only configure an `:endpoint` when connecting
|
144
|
-
# to test endpoints. This should be
|
166
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
145
167
|
#
|
146
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
147
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -156,7 +178,7 @@ module Aws::Route53
|
|
156
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
157
179
|
#
|
158
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
159
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
160
182
|
#
|
161
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
162
184
|
# The log formatter.
|
@@ -168,15 +190,29 @@ module Aws::Route53
|
|
168
190
|
# The Logger instance to send log messages to. If this option
|
169
191
|
# is not set, logging will be disabled.
|
170
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
171
199
|
# @option options [String] :profile ("default")
|
172
200
|
# Used when loading credentials from the shared credentials file
|
173
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
174
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
175
207
|
# @option options [Float] :retry_base_delay (0.3)
|
176
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
177
210
|
#
|
178
211
|
# @option options [Symbol] :retry_jitter (:none)
|
179
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
180
216
|
#
|
181
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
182
218
|
#
|
@@ -184,11 +220,30 @@ module Aws::Route53
|
|
184
220
|
# The maximum number of times to retry failed requests. Only
|
185
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
186
222
|
# are retried. Generally, these are throttling errors, data
|
187
|
-
# checksum errors, networking errors, timeout errors
|
188
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
189
226
|
#
|
190
227
|
# @option options [Integer] :retry_max_delay (0)
|
191
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
192
247
|
#
|
193
248
|
# @option options [String] :secret_access_key
|
194
249
|
#
|
@@ -211,16 +266,15 @@ module Aws::Route53
|
|
211
266
|
# requests through. Formatted like 'http://proxy.com:123'.
|
212
267
|
#
|
213
268
|
# @option options [Float] :http_open_timeout (15) The number of
|
214
|
-
# seconds to wait when opening a HTTP session before
|
269
|
+
# seconds to wait when opening a HTTP session before raising a
|
215
270
|
# `Timeout::Error`.
|
216
271
|
#
|
217
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
218
273
|
# number of seconds to wait for response data. This value can
|
219
|
-
# safely be set
|
220
|
-
# per-request on the session yeidled by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
221
275
|
#
|
222
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
223
|
-
# seconds a connection is allowed to sit
|
277
|
+
# seconds a connection is allowed to sit idle before it is
|
224
278
|
# considered stale. Stale connections are closed and removed
|
225
279
|
# from the pool before making a request.
|
226
280
|
#
|
@@ -229,7 +283,7 @@ module Aws::Route53
|
|
229
283
|
# request body. This option has no effect unless the request has
|
230
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
231
285
|
# disables this behaviour. This value can safely be set per
|
232
|
-
# request on the session
|
286
|
+
# request on the session.
|
233
287
|
#
|
234
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
235
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -258,19 +312,31 @@ module Aws::Route53
|
|
258
312
|
|
259
313
|
# Associates an Amazon VPC with a private hosted zone.
|
260
314
|
#
|
261
|
-
# To perform the association, the VPC and the private hosted zone must
|
262
|
-
# already exist.
|
263
|
-
# hosted zone.
|
264
|
-
#
|
265
|
-
# <note markdown="1"> If you want to associate a VPC that was created by using one AWS
|
266
|
-
# account with a private hosted zone that was created by using a
|
267
|
-
# different account, the AWS account that created the private hosted
|
268
|
-
# zone must first submit a `CreateVPCAssociationAuthorization` request.
|
269
|
-
# Then the account that created the VPC must submit an
|
270
|
-
# `AssociateVPCWithHostedZone` request.
|
315
|
+
# <note markdown="1"> To perform the association, the VPC and the private hosted zone must
|
316
|
+
# already exist. Also, you can't convert a public hosted zone into a
|
317
|
+
# private hosted zone.
|
271
318
|
#
|
272
319
|
# </note>
|
273
320
|
#
|
321
|
+
# If you want to associate a VPC that was created by one AWS account
|
322
|
+
# with a private hosted zone that was created by a different account, do
|
323
|
+
# one of the following:
|
324
|
+
#
|
325
|
+
# * Use the AWS account that created the private hosted zone to submit a
|
326
|
+
# [CreateVPCAssociationAuthorization][1] request. Then use the account
|
327
|
+
# that created the VPC to submit an `AssociateVPCWithHostedZone`
|
328
|
+
# request.
|
329
|
+
#
|
330
|
+
# * If a subnet in the VPC was shared with another account, you can use
|
331
|
+
# the account that the subnet was shared with to submit an
|
332
|
+
# `AssociateVPCWithHostedZone` request. For more information about
|
333
|
+
# sharing subnets, see [Working with Shared VPCs][2].
|
334
|
+
#
|
335
|
+
#
|
336
|
+
#
|
337
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
|
338
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
|
339
|
+
#
|
274
340
|
# @option params [required, String] :hosted_zone_id
|
275
341
|
# The ID of the private hosted zone that you want to associate an Amazon
|
276
342
|
# VPC with.
|
@@ -318,7 +384,7 @@ module Aws::Route53
|
|
318
384
|
# resp = client.associate_vpc_with_hosted_zone({
|
319
385
|
# hosted_zone_id: "ResourceId", # required
|
320
386
|
# vpc: { # required
|
321
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, 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
|
387
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
322
388
|
# vpc_id: "VPCId",
|
323
389
|
# },
|
324
390
|
# comment: "AssociateVPCComment",
|
@@ -346,29 +412,35 @@ module Aws::Route53
|
|
346
412
|
# resource record set that routes traffic for test.example.com to a web
|
347
413
|
# server that has an IP address of 192.0.2.44.
|
348
414
|
#
|
415
|
+
# **Deleting Resource Record Sets**
|
416
|
+
#
|
417
|
+
# To delete a resource record set, you must specify all the same values
|
418
|
+
# that you specified when you created it.
|
419
|
+
#
|
349
420
|
# **Change Batches and Transactional Changes**
|
350
421
|
#
|
351
422
|
# The request body must include a document with a
|
352
423
|
# `ChangeResourceRecordSetsRequest` element. The request body contains a
|
353
424
|
# list of change items, known as a change batch. Change batches are
|
354
|
-
# considered transactional changes.
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
# For example, a change batch request
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
# resource record set more than once in a
|
370
|
-
#
|
371
|
-
#
|
425
|
+
# considered transactional changes. Route 53 validates the changes in
|
426
|
+
# the request and then either makes all or none of the changes in the
|
427
|
+
# change batch request. This ensures that DNS routing isn't adversely
|
428
|
+
# affected by partial changes to the resource record sets in a hosted
|
429
|
+
# zone.
|
430
|
+
#
|
431
|
+
# For example, suppose a change batch request contains two changes: it
|
432
|
+
# deletes the `CNAME` resource record set for www.example.com and
|
433
|
+
# creates an alias resource record set for www.example.com. If
|
434
|
+
# validation for both records succeeds, Route 53 deletes the first
|
435
|
+
# resource record set and creates the second resource record set in a
|
436
|
+
# single operation. If validation for either the `DELETE` or the
|
437
|
+
# `CREATE` action fails, then the request is canceled, and the original
|
438
|
+
# `CNAME` record continues to exist.
|
439
|
+
#
|
440
|
+
# <note markdown="1"> If you try to delete the same resource record set more than once in a
|
441
|
+
# single change batch, Route 53 returns an `InvalidChangeBatch` error.
|
442
|
+
#
|
443
|
+
# </note>
|
372
444
|
#
|
373
445
|
# **Traffic Flow**
|
374
446
|
#
|
@@ -428,7 +500,7 @@ module Aws::Route53
|
|
428
500
|
#
|
429
501
|
#
|
430
502
|
#
|
431
|
-
# [1]:
|
503
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html
|
432
504
|
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
|
433
505
|
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html
|
434
506
|
#
|
@@ -1042,7 +1114,7 @@ module Aws::Route53
|
|
1042
1114
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA
|
1043
1115
|
# set_identifier: "ResourceRecordSetIdentifier",
|
1044
1116
|
# weight: 1,
|
1045
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1
|
1117
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
1046
1118
|
# geo_location: {
|
1047
1119
|
# continent_code: "GeoLocationContinentCode",
|
1048
1120
|
# country_code: "GeoLocationCountryCode",
|
@@ -1209,7 +1281,7 @@ module Aws::Route53
|
|
1209
1281
|
#
|
1210
1282
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId
|
1211
1283
|
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html
|
1212
|
-
# [3]:
|
1284
|
+
# [3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html
|
1213
1285
|
#
|
1214
1286
|
# @option params [required, String] :caller_reference
|
1215
1287
|
# A unique string that identifies the request and that allows you to
|
@@ -1263,7 +1335,7 @@ module Aws::Route53
|
|
1263
1335
|
# enable_sni: false,
|
1264
1336
|
# 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
|
1265
1337
|
# alarm_identifier: {
|
1266
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
1338
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1267
1339
|
# name: "AlarmName", # required
|
1268
1340
|
# },
|
1269
1341
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1293,7 +1365,7 @@ module Aws::Route53
|
|
1293
1365
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
1294
1366
|
# resp.health_check.health_check_config.regions #=> Array
|
1295
1367
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
1296
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
1368
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
1297
1369
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
1298
1370
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
1299
1371
|
# resp.health_check.health_check_version #=> Integer
|
@@ -1338,11 +1410,11 @@ module Aws::Route53
|
|
1338
1410
|
# * You can't create a hosted zone for a top-level domain (TLD) such as
|
1339
1411
|
# .com.
|
1340
1412
|
#
|
1341
|
-
# * For public hosted zones,
|
1342
|
-
#
|
1343
|
-
#
|
1344
|
-
#
|
1345
|
-
#
|
1413
|
+
# * For public hosted zones, Route 53 automatically creates a default
|
1414
|
+
# SOA record and four NS records for the zone. For more information
|
1415
|
+
# about SOA and NS records, see [NS and SOA Records that Route 53
|
1416
|
+
# Creates for a Hosted Zone][2] in the *Amazon Route 53 Developer
|
1417
|
+
# Guide*.
|
1346
1418
|
#
|
1347
1419
|
# If you want to use the same name servers for multiple public hosted
|
1348
1420
|
# zones, you can optionally associate a reusable delegation set with
|
@@ -1363,8 +1435,8 @@ module Aws::Route53
|
|
1363
1435
|
#
|
1364
1436
|
#
|
1365
1437
|
# [1]: http://aws.amazon.com/route53/pricing/
|
1366
|
-
# [2]:
|
1367
|
-
# [3]:
|
1438
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html
|
1439
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html
|
1368
1440
|
#
|
1369
1441
|
# @option params [required, String] :name
|
1370
1442
|
# The name of the domain. Specify a fully qualified domain name, for
|
@@ -1432,7 +1504,7 @@ module Aws::Route53
|
|
1432
1504
|
# resp = client.create_hosted_zone({
|
1433
1505
|
# name: "DNSName", # required
|
1434
1506
|
# vpc: {
|
1435
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, 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
|
1507
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1436
1508
|
# vpc_id: "VPCId",
|
1437
1509
|
# },
|
1438
1510
|
# caller_reference: "Nonce", # required
|
@@ -1461,7 +1533,7 @@ module Aws::Route53
|
|
1461
1533
|
# resp.delegation_set.caller_reference #=> String
|
1462
1534
|
# resp.delegation_set.name_servers #=> Array
|
1463
1535
|
# resp.delegation_set.name_servers[0] #=> String
|
1464
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "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"
|
1536
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
1465
1537
|
# resp.vpc.vpc_id #=> String
|
1466
1538
|
# resp.location #=> String
|
1467
1539
|
#
|
@@ -1649,9 +1721,12 @@ module Aws::Route53
|
|
1649
1721
|
end
|
1650
1722
|
|
1651
1723
|
# Creates a delegation set (a group of four name servers) that can be
|
1652
|
-
# reused by multiple hosted zones
|
1653
|
-
#
|
1654
|
-
#
|
1724
|
+
# reused by multiple hosted zones that were created by the same AWS
|
1725
|
+
# account.
|
1726
|
+
#
|
1727
|
+
# You can also create a reusable delegation set that uses the four name
|
1728
|
+
# servers that are associated with an existing hosted zone. Specify the
|
1729
|
+
# hosted zone ID in the `CreateReusableDelegationSet` request.
|
1655
1730
|
#
|
1656
1731
|
# <note markdown="1"> You can't associate a reusable delegation set with a private hosted
|
1657
1732
|
# zone.
|
@@ -1700,7 +1775,7 @@ module Aws::Route53
|
|
1700
1775
|
#
|
1701
1776
|
#
|
1702
1777
|
#
|
1703
|
-
# [1]:
|
1778
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html
|
1704
1779
|
#
|
1705
1780
|
# @option params [required, String] :caller_reference
|
1706
1781
|
# A unique string that identifies the request, and that allows you to
|
@@ -1953,7 +2028,7 @@ module Aws::Route53
|
|
1953
2028
|
# resp = client.create_vpc_association_authorization({
|
1954
2029
|
# hosted_zone_id: "ResourceId", # required
|
1955
2030
|
# vpc: { # required
|
1956
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, 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
|
2031
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1957
2032
|
# vpc_id: "VPCId",
|
1958
2033
|
# },
|
1959
2034
|
# })
|
@@ -1961,7 +2036,7 @@ module Aws::Route53
|
|
1961
2036
|
# @example Response structure
|
1962
2037
|
#
|
1963
2038
|
# resp.hosted_zone_id #=> String
|
1964
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "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"
|
2039
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
1965
2040
|
# resp.vpc.vpc_id #=> String
|
1966
2041
|
#
|
1967
2042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
|
@@ -1984,9 +2059,16 @@ module Aws::Route53
|
|
1984
2059
|
# see [Replacing and Deleting Health Checks][1] in the *Amazon Route 53
|
1985
2060
|
# Developer Guide*.
|
1986
2061
|
#
|
2062
|
+
# If you're using AWS Cloud Map and you configured Cloud Map to create
|
2063
|
+
# a Route 53 health check when you register an instance, you can't use
|
2064
|
+
# the Route 53 `DeleteHealthCheck` command to delete the health check.
|
2065
|
+
# The health check is deleted automatically when you deregister the
|
2066
|
+
# instance; there can be a delay of several hours before the health
|
2067
|
+
# check is deleted from Route 53.
|
2068
|
+
#
|
1987
2069
|
#
|
1988
2070
|
#
|
1989
|
-
# [1]:
|
2071
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html
|
1990
2072
|
#
|
1991
2073
|
# @option params [required, String] :health_check_id
|
1992
2074
|
# The ID of the health check that you want to delete.
|
@@ -2246,7 +2328,7 @@ module Aws::Route53
|
|
2246
2328
|
# resp = client.delete_vpc_association_authorization({
|
2247
2329
|
# hosted_zone_id: "ResourceId", # required
|
2248
2330
|
# vpc: { # required
|
2249
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, 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
|
2331
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2250
2332
|
# vpc_id: "VPCId",
|
2251
2333
|
# },
|
2252
2334
|
# })
|
@@ -2291,7 +2373,7 @@ module Aws::Route53
|
|
2291
2373
|
# resp = client.disassociate_vpc_from_hosted_zone({
|
2292
2374
|
# hosted_zone_id: "ResourceId", # required
|
2293
2375
|
# vpc: { # required
|
2294
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, 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
|
2376
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2295
2377
|
# vpc_id: "VPCId",
|
2296
2378
|
# },
|
2297
2379
|
# comment: "DisassociateVPCComment",
|
@@ -2411,6 +2493,11 @@ module Aws::Route53
|
|
2411
2493
|
# resp.change_info.submitted_at #=> Time
|
2412
2494
|
# resp.change_info.comment #=> String
|
2413
2495
|
#
|
2496
|
+
#
|
2497
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
2498
|
+
#
|
2499
|
+
# * resource_record_sets_changed
|
2500
|
+
#
|
2414
2501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetChange AWS API Documentation
|
2415
2502
|
#
|
2416
2503
|
# @overload get_change(params = {})
|
@@ -2427,7 +2514,7 @@ module Aws::Route53
|
|
2427
2514
|
#
|
2428
2515
|
#
|
2429
2516
|
#
|
2430
|
-
# [1]:
|
2517
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/route-53-ip-addresses.html
|
2431
2518
|
#
|
2432
2519
|
# @return [Types::GetCheckerIpRangesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2433
2520
|
#
|
@@ -2468,7 +2555,9 @@ module Aws::Route53
|
|
2468
2555
|
# code&subdivisioncode=subdivision code `
|
2469
2556
|
#
|
2470
2557
|
# @option params [String] :continent_code
|
2471
|
-
#
|
2558
|
+
# For geolocation resource record sets, a two-letter abbreviation that
|
2559
|
+
# identifies a continent. Amazon Route 53 supports the following
|
2560
|
+
# continent codes:
|
2472
2561
|
#
|
2473
2562
|
# * **AF**\: Africa
|
2474
2563
|
#
|
@@ -2493,14 +2582,17 @@ module Aws::Route53
|
|
2493
2582
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
2494
2583
|
#
|
2495
2584
|
# @option params [String] :subdivision_code
|
2496
|
-
# Amazon Route 53
|
2497
|
-
#
|
2498
|
-
#
|
2499
|
-
#
|
2585
|
+
# For `SubdivisionCode`, Amazon Route 53 supports only states of the
|
2586
|
+
# United States. For a list of state abbreviations, see [Appendix B:
|
2587
|
+
# Two–Letter State and Possession Abbreviations][1] on the United States
|
2588
|
+
# Postal Service website.
|
2500
2589
|
#
|
2590
|
+
# If you specify `subdivisioncode`, you must also specify `US` for
|
2591
|
+
# `CountryCode`.
|
2501
2592
|
#
|
2502
2593
|
#
|
2503
|
-
#
|
2594
|
+
#
|
2595
|
+
# [1]: https://pe.usps.com/text/pub28/28apb.htm
|
2504
2596
|
#
|
2505
2597
|
# @return [Types::GetGeoLocationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2506
2598
|
#
|
@@ -2573,7 +2665,7 @@ module Aws::Route53
|
|
2573
2665
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
2574
2666
|
# resp.health_check.health_check_config.regions #=> Array
|
2575
2667
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
2576
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
2668
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
2577
2669
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
2578
2670
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
2579
2671
|
# resp.health_check.health_check_version #=> Integer
|
@@ -2762,7 +2854,7 @@ module Aws::Route53
|
|
2762
2854
|
# resp.delegation_set.name_servers #=> Array
|
2763
2855
|
# resp.delegation_set.name_servers[0] #=> String
|
2764
2856
|
# resp.vp_cs #=> Array
|
2765
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "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"
|
2857
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
2766
2858
|
# resp.vp_cs[0].vpc_id #=> String
|
2767
2859
|
#
|
2768
2860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
|
@@ -3079,6 +3171,13 @@ module Aws::Route53
|
|
3079
3171
|
# provinces), the subdivisions for that country are listed in
|
3080
3172
|
# alphabetical order immediately after the corresponding country.
|
3081
3173
|
#
|
3174
|
+
# For a list of supported geolocation codes, see the [GeoLocation][1]
|
3175
|
+
# data type.
|
3176
|
+
#
|
3177
|
+
#
|
3178
|
+
#
|
3179
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GeoLocation.html
|
3180
|
+
#
|
3082
3181
|
# @option params [String] :start_continent_code
|
3083
3182
|
# The code for the continent with which you want to start listing
|
3084
3183
|
# locations that Amazon Route 53 supports for geolocation. If Route 53
|
@@ -3099,23 +3198,15 @@ module Aws::Route53
|
|
3099
3198
|
# value, enter that value in `startcountrycode` to return the next page
|
3100
3199
|
# of results.
|
3101
3200
|
#
|
3102
|
-
# Route 53 uses the two-letter country codes that are specified in [ISO
|
3103
|
-
# standard 3166-1 alpha-2][1].
|
3104
|
-
#
|
3105
|
-
#
|
3106
|
-
#
|
3107
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
3108
|
-
#
|
3109
3201
|
# @option params [String] :start_subdivision_code
|
3110
|
-
# The code for the
|
3111
|
-
#
|
3112
|
-
#
|
3113
|
-
#
|
3114
|
-
#
|
3115
|
-
#
|
3116
|
-
#
|
3117
|
-
#
|
3118
|
-
# To list subdivisions of a country, you must include both
|
3202
|
+
# The code for the state of the United States with which you want to
|
3203
|
+
# start listing locations that Amazon Route 53 supports for geolocation.
|
3204
|
+
# If Route 53 has already returned a page or more of results, if
|
3205
|
+
# `IsTruncated` is `true`, and if `NextSubdivisionCode` from the
|
3206
|
+
# previous response has a value, enter that value in
|
3207
|
+
# `startsubdivisioncode` to return the next page of results.
|
3208
|
+
#
|
3209
|
+
# To list subdivisions (U.S. states), you must include both
|
3119
3210
|
# `startcountrycode` and `startsubdivisioncode`.
|
3120
3211
|
#
|
3121
3212
|
# @option params [Integer] :max_items
|
@@ -3195,6 +3286,8 @@ module Aws::Route53
|
|
3195
3286
|
# * {Types::ListHealthChecksResponse#next_marker #next_marker} => String
|
3196
3287
|
# * {Types::ListHealthChecksResponse#max_items #max_items} => Integer
|
3197
3288
|
#
|
3289
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3290
|
+
#
|
3198
3291
|
# @example Request syntax with placeholder values
|
3199
3292
|
#
|
3200
3293
|
# resp = client.list_health_checks({
|
@@ -3226,7 +3319,7 @@ module Aws::Route53
|
|
3226
3319
|
# resp.health_checks[0].health_check_config.enable_sni #=> Boolean
|
3227
3320
|
# resp.health_checks[0].health_check_config.regions #=> Array
|
3228
3321
|
# resp.health_checks[0].health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
3229
|
-
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
3322
|
+
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
3230
3323
|
# resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
|
3231
3324
|
# resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
3232
3325
|
# resp.health_checks[0].health_check_version #=> Integer
|
@@ -3294,6 +3387,8 @@ module Aws::Route53
|
|
3294
3387
|
# * {Types::ListHostedZonesResponse#next_marker #next_marker} => String
|
3295
3388
|
# * {Types::ListHostedZonesResponse#max_items #max_items} => Integer
|
3296
3389
|
#
|
3390
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3391
|
+
#
|
3297
3392
|
# @example Request syntax with placeholder values
|
3298
3393
|
#
|
3299
3394
|
# resp = client.list_hosted_zones({
|
@@ -3384,7 +3479,7 @@ module Aws::Route53
|
|
3384
3479
|
#
|
3385
3480
|
#
|
3386
3481
|
#
|
3387
|
-
# [1]:
|
3482
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html
|
3388
3483
|
#
|
3389
3484
|
# @option params [String] :dns_name
|
3390
3485
|
# (Optional) For your first request to `ListHostedZonesByName`, include
|
@@ -3512,6 +3607,8 @@ module Aws::Route53
|
|
3512
3607
|
# * {Types::ListQueryLoggingConfigsResponse#query_logging_configs #query_logging_configs} => Array<Types::QueryLoggingConfig>
|
3513
3608
|
# * {Types::ListQueryLoggingConfigsResponse#next_token #next_token} => String
|
3514
3609
|
#
|
3610
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3611
|
+
#
|
3515
3612
|
# @example Request syntax with placeholder values
|
3516
3613
|
#
|
3517
3614
|
# resp = client.list_query_logging_configs({
|
@@ -3613,7 +3710,9 @@ module Aws::Route53
|
|
3613
3710
|
#
|
3614
3711
|
# @option params [String] :start_record_name
|
3615
3712
|
# The first name in the lexicographic ordering of resource record sets
|
3616
|
-
# that you want to list.
|
3713
|
+
# that you want to list. If the specified record name doesn't exist,
|
3714
|
+
# the results begin with the first resource record set that has a name
|
3715
|
+
# greater than the value of `name`.
|
3617
3716
|
#
|
3618
3717
|
# @option params [String] :start_record_type
|
3619
3718
|
# The type of resource record set to begin the record listing from.
|
@@ -3637,9 +3736,9 @@ module Aws::Route53
|
|
3637
3736
|
#
|
3638
3737
|
# * **Elastic Load Balancing load balancer**\: A \| AAAA
|
3639
3738
|
#
|
3640
|
-
# * **
|
3739
|
+
# * **S3 bucket**\: A
|
3641
3740
|
#
|
3642
|
-
# * **
|
3741
|
+
# * **VPC interface VPC endpoint**\: A
|
3643
3742
|
#
|
3644
3743
|
# * **Another resource record set in this hosted zone:** The type of the
|
3645
3744
|
# resource record set that the alias references.
|
@@ -3671,6 +3770,8 @@ module Aws::Route53
|
|
3671
3770
|
# * {Types::ListResourceRecordSetsResponse#next_record_identifier #next_record_identifier} => String
|
3672
3771
|
# * {Types::ListResourceRecordSetsResponse#max_items #max_items} => Integer
|
3673
3772
|
#
|
3773
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3774
|
+
#
|
3674
3775
|
# @example Request syntax with placeholder values
|
3675
3776
|
#
|
3676
3777
|
# resp = client.list_resource_record_sets({
|
@@ -3688,7 +3789,7 @@ module Aws::Route53
|
|
3688
3789
|
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA"
|
3689
3790
|
# resp.resource_record_sets[0].set_identifier #=> String
|
3690
3791
|
# resp.resource_record_sets[0].weight #=> Integer
|
3691
|
-
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "ap-south-1"
|
3792
|
+
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "ap-south-1", "af-south-1", "eu-south-1"
|
3692
3793
|
# resp.resource_record_sets[0].geo_location.continent_code #=> String
|
3693
3794
|
# resp.resource_record_sets[0].geo_location.country_code #=> String
|
3694
3795
|
# resp.resource_record_sets[0].geo_location.subdivision_code #=> String
|
@@ -4361,7 +4462,7 @@ module Aws::Route53
|
|
4361
4462
|
# resp.hosted_zone_id #=> String
|
4362
4463
|
# resp.next_token #=> String
|
4363
4464
|
# resp.vp_cs #=> Array
|
4364
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "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"
|
4465
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
4365
4466
|
# resp.vp_cs[0].vpc_id #=> String
|
4366
4467
|
#
|
4367
4468
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
|
@@ -4464,7 +4565,7 @@ module Aws::Route53
|
|
4464
4565
|
#
|
4465
4566
|
#
|
4466
4567
|
#
|
4467
|
-
# [1]:
|
4568
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html
|
4468
4569
|
#
|
4469
4570
|
# @option params [required, String] :health_check_id
|
4470
4571
|
# The ID for the health check for which you want detailed information.
|
@@ -4551,8 +4652,13 @@ module Aws::Route53
|
|
4551
4652
|
# [6]: https://tools.ietf.org/html/rfc5156
|
4552
4653
|
#
|
4553
4654
|
# @option params [Integer] :port
|
4554
|
-
# The port on the endpoint
|
4555
|
-
# health checks.
|
4655
|
+
# The port on the endpoint that you want Amazon Route 53 to perform
|
4656
|
+
# health checks on.
|
4657
|
+
#
|
4658
|
+
# <note markdown="1"> Don't specify a value for `Port` when you specify a value for `Type`
|
4659
|
+
# of `CLOUDWATCH_METRIC` or `CALCULATED`.
|
4660
|
+
#
|
4661
|
+
# </note>
|
4556
4662
|
#
|
4557
4663
|
# @option params [String] :resource_path
|
4558
4664
|
# The path that you want Amazon Route 53 to request when performing
|
@@ -4639,7 +4745,7 @@ module Aws::Route53
|
|
4639
4745
|
# Route 53 doesn't pass a `Host` header.
|
4640
4746
|
#
|
4641
4747
|
# @option params [String] :search_string
|
4642
|
-
# If the value of `Type` is `HTTP_STR_MATCH` or `
|
4748
|
+
# If the value of `Type` is `HTTP_STR_MATCH` or `HTTPS_STR_MATCH`, the
|
4643
4749
|
# string that you want Amazon Route 53 to search for in the response
|
4644
4750
|
# body from the specified resource. If the string appears in the
|
4645
4751
|
# response body, Route 53 considers the resource healthy. (You can't
|
@@ -4657,7 +4763,7 @@ module Aws::Route53
|
|
4657
4763
|
#
|
4658
4764
|
#
|
4659
4765
|
#
|
4660
|
-
# [1]:
|
4766
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html
|
4661
4767
|
#
|
4662
4768
|
# @option params [Boolean] :inverted
|
4663
4769
|
# Specify whether you want Amazon Route 53 to invert the status of a
|
@@ -4806,7 +4912,7 @@ module Aws::Route53
|
|
4806
4912
|
# enable_sni: false,
|
4807
4913
|
# 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
|
4808
4914
|
# alarm_identifier: {
|
4809
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1
|
4915
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
4810
4916
|
# name: "AlarmName", # required
|
4811
4917
|
# },
|
4812
4918
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -4836,7 +4942,7 @@ module Aws::Route53
|
|
4836
4942
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
4837
4943
|
# resp.health_check.health_check_config.regions #=> Array
|
4838
4944
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
4839
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1"
|
4945
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
4840
4946
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
4841
4947
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
4842
4948
|
# resp.health_check.health_check_version #=> Integer
|
@@ -5028,7 +5134,7 @@ module Aws::Route53
|
|
5028
5134
|
params: params,
|
5029
5135
|
config: config)
|
5030
5136
|
context[:gem_name] = 'aws-sdk-route53'
|
5031
|
-
context[:gem_version] = '1.
|
5137
|
+
context[:gem_version] = '1.35.0'
|
5032
5138
|
Seahorse::Client::Request.new(handlers, context)
|
5033
5139
|
end
|
5034
5140
|
|
@@ -5094,9 +5200,9 @@ module Aws::Route53
|
|
5094
5200
|
# The following table lists the valid waiter names, the operations they call,
|
5095
5201
|
# and the default `:delay` and `:max_attempts` values.
|
5096
5202
|
#
|
5097
|
-
# | waiter_name | params
|
5098
|
-
# | ---------------------------- |
|
5099
|
-
# | resource_record_sets_changed | {#get_change} | 30 | 60 |
|
5203
|
+
# | waiter_name | params | :delay | :max_attempts |
|
5204
|
+
# | ---------------------------- | ------------------- | -------- | ------------- |
|
5205
|
+
# | resource_record_sets_changed | {Client#get_change} | 30 | 60 |
|
5100
5206
|
#
|
5101
5207
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
5102
5208
|
# because the waiter has entered a state that it will not transition
|