aws-sdk-route53 1.126.0 → 1.127.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 +87 -3
- data/lib/aws-sdk-route53/client_api.rb +38 -0
- data/lib/aws-sdk-route53/types.rb +81 -5
- data/lib/aws-sdk-route53.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +21 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3591d7dbb78f073d792b1d209c94a7952f94a4cd1ebcc304049655e374cfec2d
|
|
4
|
+
data.tar.gz: fd01f8d5cd33d272c8faf30a50155afb194503a7a0def8b55b066c41dbf3f374
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40ac9a22b9038ab72549d7691a9f3060d5674337d574ff0926c3873252a4b0403b7b51db4b40373ea09120ca32528d5aa2474ebbf72f8590d41e82db0861ff02
|
|
7
|
+
data.tar.gz: a27b373087cd7d8182a9622aecef351a1fd78ca00110078856520352ed07260b620fd42407c8c06b109b8ec7f0d8949351d3eb9ce2f1f573c32345eee417f81a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.127.0
|
|
@@ -1303,6 +1303,46 @@ module Aws::Route53
|
|
|
1303
1303
|
# },
|
|
1304
1304
|
# }
|
|
1305
1305
|
#
|
|
1306
|
+
# @example Example: TXT record creation
|
|
1307
|
+
#
|
|
1308
|
+
# # Create a TXT record with a value greater than 255 characters. Break the value string up into multiple lines.
|
|
1309
|
+
#
|
|
1310
|
+
# resp = client.change_resource_record_sets({
|
|
1311
|
+
# change_batch: {
|
|
1312
|
+
# changes: [
|
|
1313
|
+
# {
|
|
1314
|
+
# action: "CREATE",
|
|
1315
|
+
# resource_record_set: {
|
|
1316
|
+
# name: "example.com.",
|
|
1317
|
+
# resource_records: [
|
|
1318
|
+
# {
|
|
1319
|
+
# value: "\"verification_string = \\\"google-site-verification=abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef\"",
|
|
1320
|
+
# },
|
|
1321
|
+
# {
|
|
1322
|
+
# value: "\"1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcd\"",
|
|
1323
|
+
# },
|
|
1324
|
+
# {
|
|
1325
|
+
# value: "\"ef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890\\\"\"",
|
|
1326
|
+
# },
|
|
1327
|
+
# ],
|
|
1328
|
+
# ttl: 300,
|
|
1329
|
+
# type: "TXT",
|
|
1330
|
+
# },
|
|
1331
|
+
# },
|
|
1332
|
+
# ],
|
|
1333
|
+
# },
|
|
1334
|
+
# hosted_zone_id: "/hostedzone/Z06404571DIQRB3A5ZYSP",
|
|
1335
|
+
# })
|
|
1336
|
+
#
|
|
1337
|
+
# resp.to_h outputs the following:
|
|
1338
|
+
# {
|
|
1339
|
+
# change_info: {
|
|
1340
|
+
# id: "/change/C08517551SJKVOMY5SXVJ",
|
|
1341
|
+
# status: "PENDING",
|
|
1342
|
+
# submitted_at: Time.parse("2025-10-15T22:38:22.569000+00:00"),
|
|
1343
|
+
# },
|
|
1344
|
+
# }
|
|
1345
|
+
#
|
|
1306
1346
|
# @example Example: To create geolocation alias resource record sets
|
|
1307
1347
|
#
|
|
1308
1348
|
# # The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers.
|
|
@@ -1906,6 +1946,8 @@ module Aws::Route53
|
|
|
1906
1946
|
# resp.hosted_zone.resource_record_set_count #=> Integer
|
|
1907
1947
|
# resp.hosted_zone.linked_service.service_principal #=> String
|
|
1908
1948
|
# resp.hosted_zone.linked_service.description #=> String
|
|
1949
|
+
# resp.hosted_zone.features.accelerated_recovery_status #=> String, one of "ENABLING", "ENABLE_FAILED", "ENABLING_HOSTED_ZONE_LOCKED", "ENABLED", "DISABLING", "DISABLE_FAILED", "DISABLED", "DISABLING_HOSTED_ZONE_LOCKED"
|
|
1950
|
+
# resp.hosted_zone.features.failure_reasons.accelerated_recovery #=> String
|
|
1909
1951
|
# resp.change_info.id #=> String
|
|
1910
1952
|
# resp.change_info.status #=> String, one of "PENDING", "INSYNC"
|
|
1911
1953
|
# resp.change_info.submitted_at #=> Time
|
|
@@ -3666,6 +3708,8 @@ module Aws::Route53
|
|
|
3666
3708
|
# resp.hosted_zone.resource_record_set_count #=> Integer
|
|
3667
3709
|
# resp.hosted_zone.linked_service.service_principal #=> String
|
|
3668
3710
|
# resp.hosted_zone.linked_service.description #=> String
|
|
3711
|
+
# resp.hosted_zone.features.accelerated_recovery_status #=> String, one of "ENABLING", "ENABLE_FAILED", "ENABLING_HOSTED_ZONE_LOCKED", "ENABLED", "DISABLING", "DISABLE_FAILED", "DISABLED", "DISABLING_HOSTED_ZONE_LOCKED"
|
|
3712
|
+
# resp.hosted_zone.features.failure_reasons.accelerated_recovery #=> String
|
|
3669
3713
|
# resp.delegation_set.id #=> String
|
|
3670
3714
|
# resp.delegation_set.caller_reference #=> String
|
|
3671
3715
|
# resp.delegation_set.name_servers #=> Array
|
|
@@ -4378,6 +4422,8 @@ module Aws::Route53
|
|
|
4378
4422
|
# resp.hosted_zones[0].resource_record_set_count #=> Integer
|
|
4379
4423
|
# resp.hosted_zones[0].linked_service.service_principal #=> String
|
|
4380
4424
|
# resp.hosted_zones[0].linked_service.description #=> String
|
|
4425
|
+
# resp.hosted_zones[0].features.accelerated_recovery_status #=> String, one of "ENABLING", "ENABLE_FAILED", "ENABLING_HOSTED_ZONE_LOCKED", "ENABLED", "DISABLING", "DISABLE_FAILED", "DISABLED", "DISABLING_HOSTED_ZONE_LOCKED"
|
|
4426
|
+
# resp.hosted_zones[0].features.failure_reasons.accelerated_recovery #=> String
|
|
4381
4427
|
# resp.marker #=> String
|
|
4382
4428
|
# resp.is_truncated #=> Boolean
|
|
4383
4429
|
# resp.next_marker #=> String
|
|
@@ -4510,6 +4556,8 @@ module Aws::Route53
|
|
|
4510
4556
|
# resp.hosted_zones[0].resource_record_set_count #=> Integer
|
|
4511
4557
|
# resp.hosted_zones[0].linked_service.service_principal #=> String
|
|
4512
4558
|
# resp.hosted_zones[0].linked_service.description #=> String
|
|
4559
|
+
# resp.hosted_zones[0].features.accelerated_recovery_status #=> String, one of "ENABLING", "ENABLE_FAILED", "ENABLING_HOSTED_ZONE_LOCKED", "ENABLED", "DISABLING", "DISABLE_FAILED", "DISABLED", "DISABLING_HOSTED_ZONE_LOCKED"
|
|
4560
|
+
# resp.hosted_zones[0].features.failure_reasons.accelerated_recovery #=> String
|
|
4513
4561
|
# resp.dns_name #=> String
|
|
4514
4562
|
# resp.hosted_zone_id #=> String
|
|
4515
4563
|
# resp.is_truncated #=> Boolean
|
|
@@ -5861,8 +5909,8 @@ module Aws::Route53
|
|
|
5861
5909
|
# [How Amazon Route 53 Determines Whether an Endpoint Is Healthy][1] in
|
|
5862
5910
|
# the *Amazon Route 53 Developer Guide*.
|
|
5863
5911
|
#
|
|
5864
|
-
#
|
|
5865
|
-
# value is three health checks.
|
|
5912
|
+
# Otherwise, if you don't specify a value for `FailureThreshold`, the
|
|
5913
|
+
# default value is three health checks.
|
|
5866
5914
|
#
|
|
5867
5915
|
#
|
|
5868
5916
|
#
|
|
@@ -6102,6 +6150,8 @@ module Aws::Route53
|
|
|
6102
6150
|
# resp.hosted_zone.resource_record_set_count #=> Integer
|
|
6103
6151
|
# resp.hosted_zone.linked_service.service_principal #=> String
|
|
6104
6152
|
# resp.hosted_zone.linked_service.description #=> String
|
|
6153
|
+
# resp.hosted_zone.features.accelerated_recovery_status #=> String, one of "ENABLING", "ENABLE_FAILED", "ENABLING_HOSTED_ZONE_LOCKED", "ENABLED", "DISABLING", "DISABLE_FAILED", "DISABLED", "DISABLING_HOSTED_ZONE_LOCKED"
|
|
6154
|
+
# resp.hosted_zone.features.failure_reasons.accelerated_recovery #=> String
|
|
6105
6155
|
#
|
|
6106
6156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneComment AWS API Documentation
|
|
6107
6157
|
#
|
|
@@ -6112,6 +6162,40 @@ module Aws::Route53
|
|
|
6112
6162
|
req.send_request(options)
|
|
6113
6163
|
end
|
|
6114
6164
|
|
|
6165
|
+
# Updates the features configuration for a hosted zone. This operation
|
|
6166
|
+
# allows you to enable or disable specific features for your hosted
|
|
6167
|
+
# zone, such as accelerated recovery.
|
|
6168
|
+
#
|
|
6169
|
+
# Accelerated recovery enables you to update DNS records in your public
|
|
6170
|
+
# hosted zone even when the us-east-1 region is unavailable.
|
|
6171
|
+
#
|
|
6172
|
+
# @option params [required, String] :hosted_zone_id
|
|
6173
|
+
# The ID of the hosted zone for which you want to update features. This
|
|
6174
|
+
# is the unique identifier for your hosted zone.
|
|
6175
|
+
#
|
|
6176
|
+
# @option params [Boolean] :enable_accelerated_recovery
|
|
6177
|
+
# Specifies whether to enable accelerated recovery for the hosted zone.
|
|
6178
|
+
# Set to `true` to enable accelerated recovery, or `false` to disable
|
|
6179
|
+
# it.
|
|
6180
|
+
#
|
|
6181
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
6182
|
+
#
|
|
6183
|
+
# @example Request syntax with placeholder values
|
|
6184
|
+
#
|
|
6185
|
+
# resp = client.update_hosted_zone_features({
|
|
6186
|
+
# hosted_zone_id: "ResourceId", # required
|
|
6187
|
+
# enable_accelerated_recovery: false,
|
|
6188
|
+
# })
|
|
6189
|
+
#
|
|
6190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneFeatures AWS API Documentation
|
|
6191
|
+
#
|
|
6192
|
+
# @overload update_hosted_zone_features(params = {})
|
|
6193
|
+
# @param [Hash] params ({})
|
|
6194
|
+
def update_hosted_zone_features(params = {}, options = {})
|
|
6195
|
+
req = build_request(:update_hosted_zone_features, params)
|
|
6196
|
+
req.send_request(options)
|
|
6197
|
+
end
|
|
6198
|
+
|
|
6115
6199
|
# Updates the comment for a specified traffic policy version.
|
|
6116
6200
|
#
|
|
6117
6201
|
# @option params [required, String] :id
|
|
@@ -6254,7 +6338,7 @@ module Aws::Route53
|
|
|
6254
6338
|
tracer: tracer
|
|
6255
6339
|
)
|
|
6256
6340
|
context[:gem_name] = 'aws-sdk-route53'
|
|
6257
|
-
context[:gem_version] = '1.
|
|
6341
|
+
context[:gem_version] = '1.127.0'
|
|
6258
6342
|
Seahorse::Client::Request.new(handlers, context)
|
|
6259
6343
|
end
|
|
6260
6344
|
|
|
@@ -17,6 +17,8 @@ module Aws::Route53
|
|
|
17
17
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
|
18
18
|
AWSAccountID = Shapes::StringShape.new(name: 'AWSAccountID')
|
|
19
19
|
AWSRegion = Shapes::StringShape.new(name: 'AWSRegion')
|
|
20
|
+
AcceleratedRecoveryEnabled = Shapes::BooleanShape.new(name: 'AcceleratedRecoveryEnabled')
|
|
21
|
+
AcceleratedRecoveryStatus = Shapes::StringShape.new(name: 'AcceleratedRecoveryStatus')
|
|
20
22
|
AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
|
|
21
23
|
AccountLimitType = Shapes::StringShape.new(name: 'AccountLimitType')
|
|
22
24
|
ActivateKeySigningKeyRequest = Shapes::StructureShape.new(name: 'ActivateKeySigningKeyRequest')
|
|
@@ -139,6 +141,7 @@ module Aws::Route53
|
|
|
139
141
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
140
142
|
ErrorMessages = Shapes::ListShape.new(name: 'ErrorMessages')
|
|
141
143
|
EvaluationPeriods = Shapes::IntegerShape.new(name: 'EvaluationPeriods')
|
|
144
|
+
FailureReason = Shapes::StringShape.new(name: 'FailureReason')
|
|
142
145
|
FailureThreshold = Shapes::IntegerShape.new(name: 'FailureThreshold')
|
|
143
146
|
FullyQualifiedDomainName = Shapes::StringShape.new(name: 'FullyQualifiedDomainName')
|
|
144
147
|
GeoLocation = Shapes::StructureShape.new(name: 'GeoLocation')
|
|
@@ -207,6 +210,8 @@ module Aws::Route53
|
|
|
207
210
|
HostedZoneAlreadyExists = Shapes::StructureShape.new(name: 'HostedZoneAlreadyExists')
|
|
208
211
|
HostedZoneConfig = Shapes::StructureShape.new(name: 'HostedZoneConfig')
|
|
209
212
|
HostedZoneCount = Shapes::IntegerShape.new(name: 'HostedZoneCount')
|
|
213
|
+
HostedZoneFailureReasons = Shapes::StructureShape.new(name: 'HostedZoneFailureReasons')
|
|
214
|
+
HostedZoneFeatures = Shapes::StructureShape.new(name: 'HostedZoneFeatures')
|
|
210
215
|
HostedZoneLimit = Shapes::StructureShape.new(name: 'HostedZoneLimit')
|
|
211
216
|
HostedZoneLimitType = Shapes::StringShape.new(name: 'HostedZoneLimitType')
|
|
212
217
|
HostedZoneNotEmpty = Shapes::StructureShape.new(name: 'HostedZoneNotEmpty')
|
|
@@ -406,6 +411,8 @@ module Aws::Route53
|
|
|
406
411
|
UpdateHealthCheckResponse = Shapes::StructureShape.new(name: 'UpdateHealthCheckResponse')
|
|
407
412
|
UpdateHostedZoneCommentRequest = Shapes::StructureShape.new(name: 'UpdateHostedZoneCommentRequest')
|
|
408
413
|
UpdateHostedZoneCommentResponse = Shapes::StructureShape.new(name: 'UpdateHostedZoneCommentResponse')
|
|
414
|
+
UpdateHostedZoneFeaturesRequest = Shapes::StructureShape.new(name: 'UpdateHostedZoneFeaturesRequest')
|
|
415
|
+
UpdateHostedZoneFeaturesResponse = Shapes::StructureShape.new(name: 'UpdateHostedZoneFeaturesResponse')
|
|
409
416
|
UpdateTrafficPolicyCommentRequest = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyCommentRequest')
|
|
410
417
|
UpdateTrafficPolicyCommentResponse = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyCommentResponse')
|
|
411
418
|
UpdateTrafficPolicyInstanceRequest = Shapes::StructureShape.new(name: 'UpdateTrafficPolicyInstanceRequest')
|
|
@@ -958,6 +965,7 @@ module Aws::Route53
|
|
|
958
965
|
HostedZone.add_member(:config, Shapes::ShapeRef.new(shape: HostedZoneConfig, location_name: "Config"))
|
|
959
966
|
HostedZone.add_member(:resource_record_set_count, Shapes::ShapeRef.new(shape: HostedZoneRRSetCount, location_name: "ResourceRecordSetCount"))
|
|
960
967
|
HostedZone.add_member(:linked_service, Shapes::ShapeRef.new(shape: LinkedService, location_name: "LinkedService"))
|
|
968
|
+
HostedZone.add_member(:features, Shapes::ShapeRef.new(shape: HostedZoneFeatures, location_name: "Features"))
|
|
961
969
|
HostedZone.struct_class = Types::HostedZone
|
|
962
970
|
|
|
963
971
|
HostedZoneAlreadyExists.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
@@ -967,6 +975,13 @@ module Aws::Route53
|
|
|
967
975
|
HostedZoneConfig.add_member(:private_zone, Shapes::ShapeRef.new(shape: IsPrivateZone, location_name: "PrivateZone"))
|
|
968
976
|
HostedZoneConfig.struct_class = Types::HostedZoneConfig
|
|
969
977
|
|
|
978
|
+
HostedZoneFailureReasons.add_member(:accelerated_recovery, Shapes::ShapeRef.new(shape: FailureReason, location_name: "AcceleratedRecovery"))
|
|
979
|
+
HostedZoneFailureReasons.struct_class = Types::HostedZoneFailureReasons
|
|
980
|
+
|
|
981
|
+
HostedZoneFeatures.add_member(:accelerated_recovery_status, Shapes::ShapeRef.new(shape: AcceleratedRecoveryStatus, location_name: "AcceleratedRecoveryStatus"))
|
|
982
|
+
HostedZoneFeatures.add_member(:failure_reasons, Shapes::ShapeRef.new(shape: HostedZoneFailureReasons, location_name: "FailureReasons"))
|
|
983
|
+
HostedZoneFeatures.struct_class = Types::HostedZoneFeatures
|
|
984
|
+
|
|
970
985
|
HostedZoneLimit.add_member(:type, Shapes::ShapeRef.new(shape: HostedZoneLimitType, required: true, location_name: "Type"))
|
|
971
986
|
HostedZoneLimit.add_member(:value, Shapes::ShapeRef.new(shape: LimitValue, required: true, location_name: "Value"))
|
|
972
987
|
HostedZoneLimit.struct_class = Types::HostedZoneLimit
|
|
@@ -1514,6 +1529,12 @@ module Aws::Route53
|
|
|
1514
1529
|
UpdateHostedZoneCommentResponse.add_member(:hosted_zone, Shapes::ShapeRef.new(shape: HostedZone, required: true, location_name: "HostedZone"))
|
|
1515
1530
|
UpdateHostedZoneCommentResponse.struct_class = Types::UpdateHostedZoneCommentResponse
|
|
1516
1531
|
|
|
1532
|
+
UpdateHostedZoneFeaturesRequest.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "Id"))
|
|
1533
|
+
UpdateHostedZoneFeaturesRequest.add_member(:enable_accelerated_recovery, Shapes::ShapeRef.new(shape: AcceleratedRecoveryEnabled, location_name: "EnableAcceleratedRecovery"))
|
|
1534
|
+
UpdateHostedZoneFeaturesRequest.struct_class = Types::UpdateHostedZoneFeaturesRequest
|
|
1535
|
+
|
|
1536
|
+
UpdateHostedZoneFeaturesResponse.struct_class = Types::UpdateHostedZoneFeaturesResponse
|
|
1537
|
+
|
|
1517
1538
|
UpdateTrafficPolicyCommentRequest.add_member(:id, Shapes::ShapeRef.new(shape: TrafficPolicyId, required: true, location: "uri", location_name: "Id"))
|
|
1518
1539
|
UpdateTrafficPolicyCommentRequest.add_member(:version, Shapes::ShapeRef.new(shape: TrafficPolicyVersion, required: true, location: "uri", location_name: "Version"))
|
|
1519
1540
|
UpdateTrafficPolicyCommentRequest.add_member(:comment, Shapes::ShapeRef.new(shape: TrafficPolicyComment, required: true, location_name: "Comment"))
|
|
@@ -2489,6 +2510,23 @@ module Aws::Route53
|
|
|
2489
2510
|
o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
|
|
2490
2511
|
end)
|
|
2491
2512
|
|
|
2513
|
+
api.add_operation(:update_hosted_zone_features, Seahorse::Model::Operation.new.tap do |o|
|
|
2514
|
+
o.name = "UpdateHostedZoneFeatures"
|
|
2515
|
+
o.http_method = "POST"
|
|
2516
|
+
o.http_request_uri = "/2013-04-01/hostedzone/{Id}/features"
|
|
2517
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateHostedZoneFeaturesRequest,
|
|
2518
|
+
location_name: "UpdateHostedZoneFeaturesRequest",
|
|
2519
|
+
metadata: {
|
|
2520
|
+
"xmlNamespace" => {"uri" => "https://route53.amazonaws.com/doc/2013-04-01/"}
|
|
2521
|
+
}
|
|
2522
|
+
)
|
|
2523
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateHostedZoneFeaturesResponse)
|
|
2524
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
|
|
2525
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
|
2526
|
+
o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
|
|
2527
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitsExceeded)
|
|
2528
|
+
end)
|
|
2529
|
+
|
|
2492
2530
|
api.add_operation(:update_traffic_policy_comment, Seahorse::Model::Operation.new.tap do |o|
|
|
2493
2531
|
o.name = "UpdateTrafficPolicyComment"
|
|
2494
2532
|
o.http_method = "POST"
|
|
@@ -3483,6 +3483,9 @@ module Aws::Route53
|
|
|
3483
3483
|
# health check request. Each Route 53 health checker makes requests at
|
|
3484
3484
|
# this interval.
|
|
3485
3485
|
#
|
|
3486
|
+
# `RequestInterval` is not supported when you specify a value for
|
|
3487
|
+
# `Type` of `RECOVERY_CONTROL`.
|
|
3488
|
+
#
|
|
3486
3489
|
# You can't change the value of `RequestInterval` after you create a
|
|
3487
3490
|
# health check.
|
|
3488
3491
|
#
|
|
@@ -3497,8 +3500,11 @@ module Aws::Route53
|
|
|
3497
3500
|
# information, see [How Amazon Route 53 Determines Whether an Endpoint
|
|
3498
3501
|
# Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
|
|
3499
3502
|
#
|
|
3500
|
-
#
|
|
3501
|
-
#
|
|
3503
|
+
# `FailureThreshold` is not supported when you specify a value for
|
|
3504
|
+
# `Type` of `RECOVERY_CONTROL`.
|
|
3505
|
+
#
|
|
3506
|
+
# Otherwise, if you don't specify a value for `FailureThreshold`, the
|
|
3507
|
+
# default value is three health checks.
|
|
3502
3508
|
#
|
|
3503
3509
|
#
|
|
3504
3510
|
#
|
|
@@ -3511,6 +3517,9 @@ module Aws::Route53
|
|
|
3511
3517
|
# your endpoint, and to display CloudWatch latency graphs on the
|
|
3512
3518
|
# **Health Checks** page in the Route 53 console.
|
|
3513
3519
|
#
|
|
3520
|
+
# `MeasureLatency` is not supported when you specify a value for
|
|
3521
|
+
# `Type` of `RECOVERY_CONTROL`.
|
|
3522
|
+
#
|
|
3514
3523
|
# You can't change the value of `MeasureLatency` after you create a
|
|
3515
3524
|
# health check.
|
|
3516
3525
|
# @return [Boolean]
|
|
@@ -3776,6 +3785,11 @@ module Aws::Route53
|
|
|
3776
3785
|
# service, you can't edit or delete it using Route 53.
|
|
3777
3786
|
# @return [Types::LinkedService]
|
|
3778
3787
|
#
|
|
3788
|
+
# @!attribute [rw] features
|
|
3789
|
+
# The features configuration for the hosted zone, including
|
|
3790
|
+
# accelerated recovery settings and status information.
|
|
3791
|
+
# @return [Types::HostedZoneFeatures]
|
|
3792
|
+
#
|
|
3779
3793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZone AWS API Documentation
|
|
3780
3794
|
#
|
|
3781
3795
|
class HostedZone < Struct.new(
|
|
@@ -3784,7 +3798,8 @@ module Aws::Route53
|
|
|
3784
3798
|
:caller_reference,
|
|
3785
3799
|
:config,
|
|
3786
3800
|
:resource_record_set_count,
|
|
3787
|
-
:linked_service
|
|
3801
|
+
:linked_service,
|
|
3802
|
+
:features)
|
|
3788
3803
|
SENSITIVE = []
|
|
3789
3804
|
include Aws::Structure
|
|
3790
3805
|
end
|
|
@@ -3825,6 +3840,43 @@ module Aws::Route53
|
|
|
3825
3840
|
include Aws::Structure
|
|
3826
3841
|
end
|
|
3827
3842
|
|
|
3843
|
+
# Contains information about why certain features failed to be enabled
|
|
3844
|
+
# or configured for the hosted zone.
|
|
3845
|
+
#
|
|
3846
|
+
# @!attribute [rw] accelerated_recovery
|
|
3847
|
+
# The reason why accelerated recovery failed to be enabled or disabled
|
|
3848
|
+
# for the hosted zone, if applicable.
|
|
3849
|
+
# @return [String]
|
|
3850
|
+
#
|
|
3851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneFailureReasons AWS API Documentation
|
|
3852
|
+
#
|
|
3853
|
+
class HostedZoneFailureReasons < Struct.new(
|
|
3854
|
+
:accelerated_recovery)
|
|
3855
|
+
SENSITIVE = []
|
|
3856
|
+
include Aws::Structure
|
|
3857
|
+
end
|
|
3858
|
+
|
|
3859
|
+
# Represents the features configuration for a hosted zone, including the
|
|
3860
|
+
# status of various features and any associated failure reasons.
|
|
3861
|
+
#
|
|
3862
|
+
# @!attribute [rw] accelerated_recovery_status
|
|
3863
|
+
# The current status of accelerated recovery for the hosted zone.
|
|
3864
|
+
# @return [String]
|
|
3865
|
+
#
|
|
3866
|
+
# @!attribute [rw] failure_reasons
|
|
3867
|
+
# Information about any failures that occurred when attempting to
|
|
3868
|
+
# enable or configure features for the hosted zone.
|
|
3869
|
+
# @return [Types::HostedZoneFailureReasons]
|
|
3870
|
+
#
|
|
3871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/HostedZoneFeatures AWS API Documentation
|
|
3872
|
+
#
|
|
3873
|
+
class HostedZoneFeatures < Struct.new(
|
|
3874
|
+
:accelerated_recovery_status,
|
|
3875
|
+
:failure_reasons)
|
|
3876
|
+
SENSITIVE = []
|
|
3877
|
+
include Aws::Structure
|
|
3878
|
+
end
|
|
3879
|
+
|
|
3828
3880
|
# A complex type that contains the type of limit that you specified in
|
|
3829
3881
|
# the request and the current value for that limit.
|
|
3830
3882
|
#
|
|
@@ -7757,8 +7809,8 @@ module Aws::Route53
|
|
|
7757
7809
|
# information, see [How Amazon Route 53 Determines Whether an Endpoint
|
|
7758
7810
|
# Is Healthy][1] in the *Amazon Route 53 Developer Guide*.
|
|
7759
7811
|
#
|
|
7760
|
-
#
|
|
7761
|
-
# value is three health checks.
|
|
7812
|
+
# Otherwise, if you don't specify a value for `FailureThreshold`, the
|
|
7813
|
+
# default value is three health checks.
|
|
7762
7814
|
#
|
|
7763
7815
|
#
|
|
7764
7816
|
#
|
|
@@ -7979,6 +8031,30 @@ module Aws::Route53
|
|
|
7979
8031
|
include Aws::Structure
|
|
7980
8032
|
end
|
|
7981
8033
|
|
|
8034
|
+
# @!attribute [rw] hosted_zone_id
|
|
8035
|
+
# The ID of the hosted zone for which you want to update features.
|
|
8036
|
+
# This is the unique identifier for your hosted zone.
|
|
8037
|
+
# @return [String]
|
|
8038
|
+
#
|
|
8039
|
+
# @!attribute [rw] enable_accelerated_recovery
|
|
8040
|
+
# Specifies whether to enable accelerated recovery for the hosted
|
|
8041
|
+
# zone. Set to `true` to enable accelerated recovery, or `false` to
|
|
8042
|
+
# disable it.
|
|
8043
|
+
# @return [Boolean]
|
|
8044
|
+
#
|
|
8045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneFeaturesRequest AWS API Documentation
|
|
8046
|
+
#
|
|
8047
|
+
class UpdateHostedZoneFeaturesRequest < Struct.new(
|
|
8048
|
+
:hosted_zone_id,
|
|
8049
|
+
:enable_accelerated_recovery)
|
|
8050
|
+
SENSITIVE = []
|
|
8051
|
+
include Aws::Structure
|
|
8052
|
+
end
|
|
8053
|
+
|
|
8054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHostedZoneFeaturesResponse AWS API Documentation
|
|
8055
|
+
#
|
|
8056
|
+
class UpdateHostedZoneFeaturesResponse < Aws::EmptyStructure; end
|
|
8057
|
+
|
|
7982
8058
|
# A complex type that contains information about the traffic policy that
|
|
7983
8059
|
# you want to update the comment for.
|
|
7984
8060
|
#
|
data/lib/aws-sdk-route53.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1034,6 +1034,16 @@ module Aws
|
|
|
1034
1034
|
) -> _UpdateHostedZoneCommentResponseSuccess
|
|
1035
1035
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHostedZoneCommentResponseSuccess
|
|
1036
1036
|
|
|
1037
|
+
interface _UpdateHostedZoneFeaturesResponseSuccess
|
|
1038
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateHostedZoneFeaturesResponse]
|
|
1039
|
+
end
|
|
1040
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Route53/Client.html#update_hosted_zone_features-instance_method
|
|
1041
|
+
def update_hosted_zone_features: (
|
|
1042
|
+
hosted_zone_id: ::String,
|
|
1043
|
+
?enable_accelerated_recovery: bool
|
|
1044
|
+
) -> _UpdateHostedZoneFeaturesResponseSuccess
|
|
1045
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateHostedZoneFeaturesResponseSuccess
|
|
1046
|
+
|
|
1037
1047
|
interface _UpdateTrafficPolicyCommentResponseSuccess
|
|
1038
1048
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrafficPolicyCommentResponse]
|
|
1039
1049
|
def traffic_policy: () -> Types::TrafficPolicy
|
data/sig/types.rbs
CHANGED
|
@@ -767,6 +767,7 @@ module Aws::Route53
|
|
|
767
767
|
attr_accessor config: Types::HostedZoneConfig
|
|
768
768
|
attr_accessor resource_record_set_count: ::Integer
|
|
769
769
|
attr_accessor linked_service: Types::LinkedService
|
|
770
|
+
attr_accessor features: Types::HostedZoneFeatures
|
|
770
771
|
SENSITIVE: []
|
|
771
772
|
end
|
|
772
773
|
|
|
@@ -781,6 +782,17 @@ module Aws::Route53
|
|
|
781
782
|
SENSITIVE: []
|
|
782
783
|
end
|
|
783
784
|
|
|
785
|
+
class HostedZoneFailureReasons
|
|
786
|
+
attr_accessor accelerated_recovery: ::String
|
|
787
|
+
SENSITIVE: []
|
|
788
|
+
end
|
|
789
|
+
|
|
790
|
+
class HostedZoneFeatures
|
|
791
|
+
attr_accessor accelerated_recovery_status: ("ENABLING" | "ENABLE_FAILED" | "ENABLING_HOSTED_ZONE_LOCKED" | "ENABLED" | "DISABLING" | "DISABLE_FAILED" | "DISABLED" | "DISABLING_HOSTED_ZONE_LOCKED")
|
|
792
|
+
attr_accessor failure_reasons: Types::HostedZoneFailureReasons
|
|
793
|
+
SENSITIVE: []
|
|
794
|
+
end
|
|
795
|
+
|
|
784
796
|
class HostedZoneLimit
|
|
785
797
|
attr_accessor type: ("MAX_RRSETS_BY_ZONE" | "MAX_VPCS_ASSOCIATED_BY_ZONE")
|
|
786
798
|
attr_accessor value: ::Integer
|
|
@@ -1516,6 +1528,15 @@ module Aws::Route53
|
|
|
1516
1528
|
SENSITIVE: []
|
|
1517
1529
|
end
|
|
1518
1530
|
|
|
1531
|
+
class UpdateHostedZoneFeaturesRequest
|
|
1532
|
+
attr_accessor hosted_zone_id: ::String
|
|
1533
|
+
attr_accessor enable_accelerated_recovery: bool
|
|
1534
|
+
SENSITIVE: []
|
|
1535
|
+
end
|
|
1536
|
+
|
|
1537
|
+
class UpdateHostedZoneFeaturesResponse < Aws::EmptyStructure
|
|
1538
|
+
end
|
|
1539
|
+
|
|
1519
1540
|
class UpdateTrafficPolicyCommentRequest
|
|
1520
1541
|
attr_accessor id: ::String
|
|
1521
1542
|
attr_accessor version: ::Integer
|