aws-sdk-route53 1.84.0 → 1.85.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +21 -2
- data/lib/aws-sdk-route53/client_api.rb +18 -0
- data/lib/aws-sdk-route53/types.rb +109 -12
- data/lib/aws-sdk-route53.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73a94d655b7ee4cddc1b3c44ea451e03dbe2c40ac090357acb9d650fb4e3c3a0
|
|
4
|
+
data.tar.gz: e7ce4ada4d4ad2bc41b069a962846e4877391bb3d58358207c8248bdcd6a6ef3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ee49ba244f214515f319cc84bbd2a8b28a8842307ba201bcee3b97fab5161ba54a9e228c009c5eba5099473bbe3644d09ea37fed10f4903870716206ee33bdb
|
|
7
|
+
data.tar.gz: 861cc785909b4262bd604838106c2ad0ce3f6db1563dcbf208180a30761598d1fb5b50258eddb581b57ce9ad4c842f3c7eb99f2d2f85340896654bf80b790cc7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.85.0
|
|
@@ -1343,6 +1343,15 @@ module Aws::Route53
|
|
|
1343
1343
|
# collection_id: "UUID", # required
|
|
1344
1344
|
# location_name: "CidrLocationNameDefaultAllowed", # required
|
|
1345
1345
|
# },
|
|
1346
|
+
# geo_proximity_location: {
|
|
1347
|
+
# aws_region: "AWSRegion",
|
|
1348
|
+
# local_zone_group: "LocalZoneGroup",
|
|
1349
|
+
# coordinates: {
|
|
1350
|
+
# latitude: "Latitude", # required
|
|
1351
|
+
# longitude: "Longitude", # required
|
|
1352
|
+
# },
|
|
1353
|
+
# bias: 1,
|
|
1354
|
+
# },
|
|
1346
1355
|
# },
|
|
1347
1356
|
# },
|
|
1348
1357
|
# ],
|
|
@@ -3284,7 +3293,7 @@ module Aws::Route53
|
|
|
3284
3293
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
|
3285
3294
|
# in [ISO standard 3166-1 alpha-2][1].
|
|
3286
3295
|
#
|
|
3287
|
-
# Route 53 also supports the
|
|
3296
|
+
# Route 53 also supports the country code **UA** for Ukraine.
|
|
3288
3297
|
#
|
|
3289
3298
|
#
|
|
3290
3299
|
#
|
|
@@ -4768,6 +4777,11 @@ module Aws::Route53
|
|
|
4768
4777
|
# resp.resource_record_sets[0].traffic_policy_instance_id #=> String
|
|
4769
4778
|
# resp.resource_record_sets[0].cidr_routing_config.collection_id #=> String
|
|
4770
4779
|
# resp.resource_record_sets[0].cidr_routing_config.location_name #=> String
|
|
4780
|
+
# resp.resource_record_sets[0].geo_proximity_location.aws_region #=> String
|
|
4781
|
+
# resp.resource_record_sets[0].geo_proximity_location.local_zone_group #=> String
|
|
4782
|
+
# resp.resource_record_sets[0].geo_proximity_location.coordinates.latitude #=> String
|
|
4783
|
+
# resp.resource_record_sets[0].geo_proximity_location.coordinates.longitude #=> String
|
|
4784
|
+
# resp.resource_record_sets[0].geo_proximity_location.bias #=> Integer
|
|
4771
4785
|
# resp.is_truncated #=> Boolean
|
|
4772
4786
|
# resp.next_record_name #=> String
|
|
4773
4787
|
# resp.next_record_type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
|
@@ -5695,6 +5709,11 @@ module Aws::Route53
|
|
|
5695
5709
|
# address that is returned by DNS, Route 53 then checks the health of
|
|
5696
5710
|
# the endpoint.
|
|
5697
5711
|
#
|
|
5712
|
+
# If you don't specify a value for `IPAddress`, you can’t update the
|
|
5713
|
+
# health check to remove the `FullyQualifiedDomainName`; if you don’t
|
|
5714
|
+
# specify a value for `IPAddress` on creation, a
|
|
5715
|
+
# `FullyQualifiedDomainName` is required.
|
|
5716
|
+
#
|
|
5698
5717
|
# <note markdown="1"> If you don't specify a value for `IPAddress`, Route 53 uses only IPv4
|
|
5699
5718
|
# to send health checks to the endpoint. If there's no resource record
|
|
5700
5719
|
# set with a type of A for the name that you specify for
|
|
@@ -6124,7 +6143,7 @@ module Aws::Route53
|
|
|
6124
6143
|
params: params,
|
|
6125
6144
|
config: config)
|
|
6126
6145
|
context[:gem_name] = 'aws-sdk-route53'
|
|
6127
|
-
context[:gem_version] = '1.
|
|
6146
|
+
context[:gem_version] = '1.85.0'
|
|
6128
6147
|
Seahorse::Client::Request.new(handlers, context)
|
|
6129
6148
|
end
|
|
6130
6149
|
|
|
@@ -15,6 +15,7 @@ module Aws::Route53
|
|
|
15
15
|
|
|
16
16
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
|
17
17
|
AWSAccountID = Shapes::StringShape.new(name: 'AWSAccountID')
|
|
18
|
+
AWSRegion = Shapes::StringShape.new(name: 'AWSRegion')
|
|
18
19
|
AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
|
|
19
20
|
AccountLimitType = Shapes::StringShape.new(name: 'AccountLimitType')
|
|
20
21
|
ActivateKeySigningKeyRequest = Shapes::StructureShape.new(name: 'ActivateKeySigningKeyRequest')
|
|
@@ -26,6 +27,7 @@ module Aws::Route53
|
|
|
26
27
|
AssociateVPCComment = Shapes::StringShape.new(name: 'AssociateVPCComment')
|
|
27
28
|
AssociateVPCWithHostedZoneRequest = Shapes::StructureShape.new(name: 'AssociateVPCWithHostedZoneRequest')
|
|
28
29
|
AssociateVPCWithHostedZoneResponse = Shapes::StructureShape.new(name: 'AssociateVPCWithHostedZoneResponse')
|
|
30
|
+
Bias = Shapes::IntegerShape.new(name: 'Bias')
|
|
29
31
|
Change = Shapes::StructureShape.new(name: 'Change')
|
|
30
32
|
ChangeAction = Shapes::StringShape.new(name: 'ChangeAction')
|
|
31
33
|
ChangeBatch = Shapes::StructureShape.new(name: 'ChangeBatch')
|
|
@@ -68,6 +70,7 @@ module Aws::Route53
|
|
|
68
70
|
ConcurrentModification = Shapes::StructureShape.new(name: 'ConcurrentModification')
|
|
69
71
|
ConflictingDomainExists = Shapes::StructureShape.new(name: 'ConflictingDomainExists')
|
|
70
72
|
ConflictingTypes = Shapes::StructureShape.new(name: 'ConflictingTypes')
|
|
73
|
+
Coordinates = Shapes::StructureShape.new(name: 'Coordinates')
|
|
71
74
|
CreateCidrCollectionRequest = Shapes::StructureShape.new(name: 'CreateCidrCollectionRequest')
|
|
72
75
|
CreateCidrCollectionResponse = Shapes::StructureShape.new(name: 'CreateCidrCollectionResponse')
|
|
73
76
|
CreateHealthCheckRequest = Shapes::StructureShape.new(name: 'CreateHealthCheckRequest')
|
|
@@ -146,6 +149,7 @@ module Aws::Route53
|
|
|
146
149
|
GeoLocationDetailsList = Shapes::ListShape.new(name: 'GeoLocationDetailsList')
|
|
147
150
|
GeoLocationSubdivisionCode = Shapes::StringShape.new(name: 'GeoLocationSubdivisionCode')
|
|
148
151
|
GeoLocationSubdivisionName = Shapes::StringShape.new(name: 'GeoLocationSubdivisionName')
|
|
152
|
+
GeoProximityLocation = Shapes::StructureShape.new(name: 'GeoProximityLocation')
|
|
149
153
|
GetAccountLimitRequest = Shapes::StructureShape.new(name: 'GetAccountLimitRequest')
|
|
150
154
|
GetAccountLimitResponse = Shapes::StructureShape.new(name: 'GetAccountLimitResponse')
|
|
151
155
|
GetChangeRequest = Shapes::StructureShape.new(name: 'GetChangeRequest')
|
|
@@ -240,6 +244,7 @@ module Aws::Route53
|
|
|
240
244
|
KeySigningKeyWithActiveStatusNotFound = Shapes::StructureShape.new(name: 'KeySigningKeyWithActiveStatusNotFound')
|
|
241
245
|
KeySigningKeys = Shapes::ListShape.new(name: 'KeySigningKeys')
|
|
242
246
|
LastVPCAssociation = Shapes::StructureShape.new(name: 'LastVPCAssociation')
|
|
247
|
+
Latitude = Shapes::StringShape.new(name: 'Latitude')
|
|
243
248
|
LimitValue = Shapes::IntegerShape.new(name: 'LimitValue')
|
|
244
249
|
LimitsExceeded = Shapes::StructureShape.new(name: 'LimitsExceeded')
|
|
245
250
|
LinkedService = Shapes::StructureShape.new(name: 'LinkedService')
|
|
@@ -281,8 +286,10 @@ module Aws::Route53
|
|
|
281
286
|
ListTrafficPolicyVersionsResponse = Shapes::StructureShape.new(name: 'ListTrafficPolicyVersionsResponse')
|
|
282
287
|
ListVPCAssociationAuthorizationsRequest = Shapes::StructureShape.new(name: 'ListVPCAssociationAuthorizationsRequest')
|
|
283
288
|
ListVPCAssociationAuthorizationsResponse = Shapes::StructureShape.new(name: 'ListVPCAssociationAuthorizationsResponse')
|
|
289
|
+
LocalZoneGroup = Shapes::StringShape.new(name: 'LocalZoneGroup')
|
|
284
290
|
LocationSummaries = Shapes::ListShape.new(name: 'LocationSummaries')
|
|
285
291
|
LocationSummary = Shapes::StructureShape.new(name: 'LocationSummary')
|
|
292
|
+
Longitude = Shapes::StringShape.new(name: 'Longitude')
|
|
286
293
|
MaxResults = Shapes::StringShape.new(name: 'MaxResults')
|
|
287
294
|
MeasureLatency = Shapes::BooleanShape.new(name: 'MeasureLatency')
|
|
288
295
|
Message = Shapes::StringShape.new(name: 'Message')
|
|
@@ -545,6 +552,10 @@ module Aws::Route53
|
|
|
545
552
|
ConflictingTypes.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
546
553
|
ConflictingTypes.struct_class = Types::ConflictingTypes
|
|
547
554
|
|
|
555
|
+
Coordinates.add_member(:latitude, Shapes::ShapeRef.new(shape: Latitude, required: true, location_name: "Latitude"))
|
|
556
|
+
Coordinates.add_member(:longitude, Shapes::ShapeRef.new(shape: Longitude, required: true, location_name: "Longitude"))
|
|
557
|
+
Coordinates.struct_class = Types::Coordinates
|
|
558
|
+
|
|
548
559
|
CreateCidrCollectionRequest.add_member(:name, Shapes::ShapeRef.new(shape: CollectionName, required: true, location_name: "Name"))
|
|
549
560
|
CreateCidrCollectionRequest.add_member(:caller_reference, Shapes::ShapeRef.new(shape: CidrNonce, required: true, location_name: "CallerReference"))
|
|
550
561
|
CreateCidrCollectionRequest.struct_class = Types::CreateCidrCollectionRequest
|
|
@@ -771,6 +782,12 @@ module Aws::Route53
|
|
|
771
782
|
|
|
772
783
|
GeoLocationDetailsList.member = Shapes::ShapeRef.new(shape: GeoLocationDetails, location_name: "GeoLocationDetails")
|
|
773
784
|
|
|
785
|
+
GeoProximityLocation.add_member(:aws_region, Shapes::ShapeRef.new(shape: AWSRegion, location_name: "AWSRegion"))
|
|
786
|
+
GeoProximityLocation.add_member(:local_zone_group, Shapes::ShapeRef.new(shape: LocalZoneGroup, location_name: "LocalZoneGroup"))
|
|
787
|
+
GeoProximityLocation.add_member(:coordinates, Shapes::ShapeRef.new(shape: Coordinates, location_name: "Coordinates"))
|
|
788
|
+
GeoProximityLocation.add_member(:bias, Shapes::ShapeRef.new(shape: Bias, location_name: "Bias"))
|
|
789
|
+
GeoProximityLocation.struct_class = Types::GeoProximityLocation
|
|
790
|
+
|
|
774
791
|
GetAccountLimitRequest.add_member(:type, Shapes::ShapeRef.new(shape: AccountLimitType, required: true, location: "uri", location_name: "Type"))
|
|
775
792
|
GetAccountLimitRequest.struct_class = Types::GetAccountLimitRequest
|
|
776
793
|
|
|
@@ -1354,6 +1371,7 @@ module Aws::Route53
|
|
|
1354
1371
|
ResourceRecordSet.add_member(:health_check_id, Shapes::ShapeRef.new(shape: HealthCheckId, location_name: "HealthCheckId"))
|
|
1355
1372
|
ResourceRecordSet.add_member(:traffic_policy_instance_id, Shapes::ShapeRef.new(shape: TrafficPolicyInstanceId, location_name: "TrafficPolicyInstanceId"))
|
|
1356
1373
|
ResourceRecordSet.add_member(:cidr_routing_config, Shapes::ShapeRef.new(shape: CidrRoutingConfig, location_name: "CidrRoutingConfig"))
|
|
1374
|
+
ResourceRecordSet.add_member(:geo_proximity_location, Shapes::ShapeRef.new(shape: GeoProximityLocation, location_name: "GeoProximityLocation"))
|
|
1357
1375
|
ResourceRecordSet.struct_class = Types::ResourceRecordSet
|
|
1358
1376
|
|
|
1359
1377
|
ResourceRecordSets.member = Shapes::ShapeRef.new(shape: ResourceRecordSet, location_name: "ResourceRecordSet")
|
|
@@ -183,7 +183,7 @@ module Aws::Route53
|
|
|
183
183
|
# : Specify the hosted zone ID for the region that you created the
|
|
184
184
|
# environment in. The environment must have a regionalized
|
|
185
185
|
# subdomain. For a list of regions and the corresponding hosted zone
|
|
186
|
-
# IDs, see [Elastic Beanstalk endpoints and quotas][3] in the
|
|
186
|
+
# IDs, see [Elastic Beanstalk endpoints and quotas][3] in the
|
|
187
187
|
# *Amazon Web Services General Reference*.
|
|
188
188
|
#
|
|
189
189
|
# ELB load balancer
|
|
@@ -1144,6 +1144,28 @@ module Aws::Route53
|
|
|
1144
1144
|
include Aws::Structure
|
|
1145
1145
|
end
|
|
1146
1146
|
|
|
1147
|
+
# A complex type that lists the coordinates for a geoproximity resource
|
|
1148
|
+
# record.
|
|
1149
|
+
#
|
|
1150
|
+
# @!attribute [rw] latitude
|
|
1151
|
+
# Specifies a coordinate of the north–south position of a geographic
|
|
1152
|
+
# point on the surface of the Earth (-90 - 90).
|
|
1153
|
+
# @return [String]
|
|
1154
|
+
#
|
|
1155
|
+
# @!attribute [rw] longitude
|
|
1156
|
+
# Specifies a coordinate of the east–west position of a geographic
|
|
1157
|
+
# point on the surface of the Earth (-180 - 180).
|
|
1158
|
+
# @return [String]
|
|
1159
|
+
#
|
|
1160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/Coordinates AWS API Documentation
|
|
1161
|
+
#
|
|
1162
|
+
class Coordinates < Struct.new(
|
|
1163
|
+
:latitude,
|
|
1164
|
+
:longitude)
|
|
1165
|
+
SENSITIVE = []
|
|
1166
|
+
include Aws::Structure
|
|
1167
|
+
end
|
|
1168
|
+
|
|
1147
1169
|
# @!attribute [rw] name
|
|
1148
1170
|
# A unique identifier for the account that can be used to reference
|
|
1149
1171
|
# the collection from other API calls.
|
|
@@ -1788,7 +1810,7 @@ module Aws::Route53
|
|
|
1788
1810
|
include Aws::Structure
|
|
1789
1811
|
end
|
|
1790
1812
|
|
|
1791
|
-
# A string
|
|
1813
|
+
# A string representing the status of DNSSEC signing.
|
|
1792
1814
|
#
|
|
1793
1815
|
# @!attribute [rw] serve_signature
|
|
1794
1816
|
# A string that represents the current hosted zone signing status.
|
|
@@ -2329,7 +2351,7 @@ module Aws::Route53
|
|
|
2329
2351
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
|
2330
2352
|
# in [ISO standard 3166-1 alpha-2][1].
|
|
2331
2353
|
#
|
|
2332
|
-
# Route 53 also supports the
|
|
2354
|
+
# Route 53 also supports the country code **UA** for Ukraine.
|
|
2333
2355
|
#
|
|
2334
2356
|
#
|
|
2335
2357
|
#
|
|
@@ -2411,6 +2433,74 @@ module Aws::Route53
|
|
|
2411
2433
|
include Aws::Structure
|
|
2412
2434
|
end
|
|
2413
2435
|
|
|
2436
|
+
# (Resource record sets only): A complex type that lets you control how
|
|
2437
|
+
# Amazon Route 53 responds to DNS queries based on the geographic origin
|
|
2438
|
+
# of the query and your resources. Only one of , `LocalZoneGroup`,
|
|
2439
|
+
# `Coordinates`, or `Amazon Web ServicesRegion` is allowed per request
|
|
2440
|
+
# at a time.
|
|
2441
|
+
#
|
|
2442
|
+
# For more information about geoproximity routing, see [Geoproximity
|
|
2443
|
+
# routing][1] in the *Amazon Route 53 Developer Guide*.
|
|
2444
|
+
#
|
|
2445
|
+
#
|
|
2446
|
+
#
|
|
2447
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy-geoproximity.html
|
|
2448
|
+
#
|
|
2449
|
+
# @!attribute [rw] aws_region
|
|
2450
|
+
# The Amazon Web Services Region the resource you are directing DNS
|
|
2451
|
+
# traffic to, is in.
|
|
2452
|
+
# @return [String]
|
|
2453
|
+
#
|
|
2454
|
+
# @!attribute [rw] local_zone_group
|
|
2455
|
+
# Specifies an Amazon Web Services Local Zone Group.
|
|
2456
|
+
#
|
|
2457
|
+
# A local Zone Group is usually the Local Zone code without the ending
|
|
2458
|
+
# character. For example, if the Local Zone is `us-east-1-bue-1a` the
|
|
2459
|
+
# Local Zone Group is `us-east-1-bue-1`.
|
|
2460
|
+
#
|
|
2461
|
+
# You can identify the Local Zones Group for a specific Local Zone by
|
|
2462
|
+
# using the [describe-availability-zones][1] CLI command:
|
|
2463
|
+
#
|
|
2464
|
+
# This command returns: `"GroupName": "us-west-2-den-1"`, specifying
|
|
2465
|
+
# that the Local Zone `us-west-2-den-1a` belongs to the Local Zone
|
|
2466
|
+
# Group `us-west-2-den-1`.
|
|
2467
|
+
#
|
|
2468
|
+
#
|
|
2469
|
+
#
|
|
2470
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-availability-zones.html
|
|
2471
|
+
# @return [String]
|
|
2472
|
+
#
|
|
2473
|
+
# @!attribute [rw] coordinates
|
|
2474
|
+
# Contains the longitude and latitude for a geographic region.
|
|
2475
|
+
# @return [Types::Coordinates]
|
|
2476
|
+
#
|
|
2477
|
+
# @!attribute [rw] bias
|
|
2478
|
+
# The bias increases or decreases the size of the geographic region
|
|
2479
|
+
# from which Route 53 routes traffic to a resource.
|
|
2480
|
+
#
|
|
2481
|
+
# To use `Bias` to change the size of the geographic region, specify
|
|
2482
|
+
# the applicable value for the bias:
|
|
2483
|
+
#
|
|
2484
|
+
# * To expand the size of the geographic region from which Route 53
|
|
2485
|
+
# routes traffic to a resource, specify a positive integer from 1 to
|
|
2486
|
+
# 99 for the bias. Route 53 shrinks the size of adjacent regions.
|
|
2487
|
+
#
|
|
2488
|
+
# * To shrink the size of the geographic region from which Route 53
|
|
2489
|
+
# routes traffic to a resource, specify a negative bias of -1 to
|
|
2490
|
+
# -99. Route 53 expands the size of adjacent regions.
|
|
2491
|
+
# @return [Integer]
|
|
2492
|
+
#
|
|
2493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GeoProximityLocation AWS API Documentation
|
|
2494
|
+
#
|
|
2495
|
+
class GeoProximityLocation < Struct.new(
|
|
2496
|
+
:aws_region,
|
|
2497
|
+
:local_zone_group,
|
|
2498
|
+
:coordinates,
|
|
2499
|
+
:bias)
|
|
2500
|
+
SENSITIVE = []
|
|
2501
|
+
include Aws::Structure
|
|
2502
|
+
end
|
|
2503
|
+
|
|
2414
2504
|
# A complex type that contains information about the request to create a
|
|
2415
2505
|
# hosted zone.
|
|
2416
2506
|
#
|
|
@@ -2537,7 +2627,7 @@ module Aws::Route53
|
|
|
2537
2627
|
end
|
|
2538
2628
|
|
|
2539
2629
|
# @!attribute [rw] status
|
|
2540
|
-
# A string
|
|
2630
|
+
# A string representing the status of DNSSEC.
|
|
2541
2631
|
# @return [Types::DNSSECStatus]
|
|
2542
2632
|
#
|
|
2543
2633
|
# @!attribute [rw] key_signing_keys
|
|
@@ -2581,7 +2671,7 @@ module Aws::Route53
|
|
|
2581
2671
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
|
2582
2672
|
# in [ISO standard 3166-1 alpha-2][1].
|
|
2583
2673
|
#
|
|
2584
|
-
# Route 53 also supports the
|
|
2674
|
+
# Route 53 also supports the country code **UA** for Ukraine.
|
|
2585
2675
|
#
|
|
2586
2676
|
#
|
|
2587
2677
|
#
|
|
@@ -3259,7 +3349,7 @@ module Aws::Route53
|
|
|
3259
3349
|
# Route 53 health checkers consider to be healthy and compares that
|
|
3260
3350
|
# number with the value of `HealthThreshold`.
|
|
3261
3351
|
#
|
|
3262
|
-
# * **RECOVERY\_CONTROL**: The health check is
|
|
3352
|
+
# * **RECOVERY\_CONTROL**: The health check is associated with a
|
|
3263
3353
|
# Route53 Application Recovery Controller routing control. If the
|
|
3264
3354
|
# routing control state is `ON`, the health check is considered
|
|
3265
3355
|
# healthy. If the state is `OFF`, the health check is considered
|
|
@@ -6433,11 +6523,6 @@ module Aws::Route53
|
|
|
6433
6523
|
# `192.0.2.111`, create a resource record set with a `Type` of `A` and
|
|
6434
6524
|
# a `ContinentCode` of `AF`.
|
|
6435
6525
|
#
|
|
6436
|
-
# <note markdown="1"> Although creating geolocation and geolocation alias resource record
|
|
6437
|
-
# sets in a private hosted zone is allowed, it's not supported.
|
|
6438
|
-
#
|
|
6439
|
-
# </note>
|
|
6440
|
-
#
|
|
6441
6526
|
# If you create separate resource record sets for overlapping
|
|
6442
6527
|
# geographic regions (for example, one resource record set for a
|
|
6443
6528
|
# continent and one for a country on the same continent), priority
|
|
@@ -6764,6 +6849,12 @@ module Aws::Route53
|
|
|
6764
6849
|
# record.
|
|
6765
6850
|
# @return [Types::CidrRoutingConfig]
|
|
6766
6851
|
#
|
|
6852
|
+
# @!attribute [rw] geo_proximity_location
|
|
6853
|
+
# <i> GeoproximityLocation resource record sets only:</i> A complex
|
|
6854
|
+
# type that lets you control how Route 53 responds to DNS queries
|
|
6855
|
+
# based on the geographic origin of the query and your resources.
|
|
6856
|
+
# @return [Types::GeoProximityLocation]
|
|
6857
|
+
#
|
|
6767
6858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ResourceRecordSet AWS API Documentation
|
|
6768
6859
|
#
|
|
6769
6860
|
class ResourceRecordSet < Struct.new(
|
|
@@ -6780,7 +6871,8 @@ module Aws::Route53
|
|
|
6780
6871
|
:alias_target,
|
|
6781
6872
|
:health_check_id,
|
|
6782
6873
|
:traffic_policy_instance_id,
|
|
6783
|
-
:cidr_routing_config
|
|
6874
|
+
:cidr_routing_config,
|
|
6875
|
+
:geo_proximity_location)
|
|
6784
6876
|
SENSITIVE = []
|
|
6785
6877
|
include Aws::Structure
|
|
6786
6878
|
end
|
|
@@ -7587,6 +7679,11 @@ module Aws::Route53
|
|
|
7587
7679
|
# address that is returned by DNS, Route 53 then checks the health of
|
|
7588
7680
|
# the endpoint.
|
|
7589
7681
|
#
|
|
7682
|
+
# If you don't specify a value for `IPAddress`, you can’t update the
|
|
7683
|
+
# health check to remove the `FullyQualifiedDomainName`; if you don’t
|
|
7684
|
+
# specify a value for `IPAddress` on creation, a
|
|
7685
|
+
# `FullyQualifiedDomainName` is required.
|
|
7686
|
+
#
|
|
7590
7687
|
# <note markdown="1"> If you don't specify a value for `IPAddress`, Route 53 uses only
|
|
7591
7688
|
# IPv4 to send health checks to the endpoint. If there's no resource
|
|
7592
7689
|
# record set with a type of A for the name that you specify for
|
data/lib/aws-sdk-route53.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-route53
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.85.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|