aws-sdk-route53resolver 1.95.0 → 1.96.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-route53resolver/client.rb +71 -1
- data/lib/aws-sdk-route53resolver/client_api.rb +10 -0
- data/lib/aws-sdk-route53resolver/types.rb +81 -3
- data/lib/aws-sdk-route53resolver.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/types.rbs +6 -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: a5dd18b9acc2bfa80868fe15bfce8ae7e1bc84ea046d5d688b3121d6f4dfb6df
|
|
4
|
+
data.tar.gz: 877311f2fc4825799ce7211a37aec0ed7d61c204b15faea814863c04da04c5c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8f3fbee6dc706479deead2ec63e186558bc84addf4f6d27a4c54bfc0c7ecfd4c6a9722fb6b8f17c5b56f0481d21023f4d7726a9a794973686ef2a29118654d2
|
|
7
|
+
data.tar.gz: b2b461034b91bba3232247001bf2b770dc33ab8045940c6e52bbc2044c2af2a7f3adbd6317afc334ede7e329e18be37ee342fd3d6db76d326aad35c471e61f41
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.96.0 (2026-05-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds supports for DNS64 on inbound endpoints and IPv6 forwarding through the internet gateway (IGW) on outbound endpoints, making it easier to manage hybrid DNS across IPv4 and IPv6 networks.
|
|
8
|
+
|
|
4
9
|
1.95.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.96.0
|
|
@@ -633,6 +633,8 @@ module Aws::Route53Resolver
|
|
|
633
633
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
634
634
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
635
635
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
636
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
637
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
636
638
|
#
|
|
637
639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
|
|
638
640
|
#
|
|
@@ -1302,6 +1304,32 @@ module Aws::Route53Resolver
|
|
|
1302
1304
|
#
|
|
1303
1305
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
1304
1306
|
#
|
|
1307
|
+
# @option params [Boolean] :dns_64_enabled
|
|
1308
|
+
# Specifies whether DNS64 is enabled for the inbound Resolver endpoint.
|
|
1309
|
+
# When set to `true`, Route 53 Resolver synthesizes AAAA (IPv6) records
|
|
1310
|
+
# for IPv4-only services by prepending the `64:ff9b::/96` prefix to the
|
|
1311
|
+
# IPv4 address. This enables IPv6-only clients that send queries through
|
|
1312
|
+
# the inbound endpoint to reach IPv4-only services. DNS64 works with
|
|
1313
|
+
# NAT64 to provide complete IPv6-to-IPv4 translation. Default is false.
|
|
1314
|
+
#
|
|
1315
|
+
# @option params [Boolean] :ipv_6_internet_access_enabled
|
|
1316
|
+
# Specifies whether IPv6 internet access is enabled for the outbound
|
|
1317
|
+
# Resolver endpoint. When set to `true`, the endpoint elastic network
|
|
1318
|
+
# interfaces (ENIs) can forward DNS queries to public IPv6 targets
|
|
1319
|
+
# through an internet gateway. Default is false.
|
|
1320
|
+
#
|
|
1321
|
+
# When you enable IPv6 internet access, use network controls like
|
|
1322
|
+
# security groups, NACLs, or egress-only internet gateways to protect
|
|
1323
|
+
# the endpoint ENIs from unsolicited ingress traffic. Be aware that some
|
|
1324
|
+
# network controls can affect DNS query throughput due to connection
|
|
1325
|
+
# tracking. For more information, see [Amazon EC2 security group
|
|
1326
|
+
# connection tracking][1] and [Resolver endpoint scaling][2].
|
|
1327
|
+
#
|
|
1328
|
+
#
|
|
1329
|
+
#
|
|
1330
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/userguide/security-group-connection-tracking.html
|
|
1331
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/best-practices-resolver-endpoint-scaling.html
|
|
1332
|
+
#
|
|
1305
1333
|
# @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1306
1334
|
#
|
|
1307
1335
|
# * {Types::CreateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
|
|
@@ -1332,6 +1360,8 @@ module Aws::Route53Resolver
|
|
|
1332
1360
|
# protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
|
|
1333
1361
|
# rni_enhanced_metrics_enabled: false,
|
|
1334
1362
|
# target_name_server_metrics_enabled: false,
|
|
1363
|
+
# dns_64_enabled: false,
|
|
1364
|
+
# ipv_6_internet_access_enabled: false,
|
|
1335
1365
|
# })
|
|
1336
1366
|
#
|
|
1337
1367
|
# @example Response structure
|
|
@@ -1356,6 +1386,8 @@ module Aws::Route53Resolver
|
|
|
1356
1386
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
1357
1387
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
1358
1388
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
1389
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
1390
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
1359
1391
|
#
|
|
1360
1392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
|
|
1361
1393
|
#
|
|
@@ -1851,6 +1883,8 @@ module Aws::Route53Resolver
|
|
|
1851
1883
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
1852
1884
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
1853
1885
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
1886
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
1887
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
1854
1888
|
#
|
|
1855
1889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
|
|
1856
1890
|
#
|
|
@@ -2070,6 +2104,8 @@ module Aws::Route53Resolver
|
|
|
2070
2104
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
2071
2105
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
2072
2106
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
2107
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
2108
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
2073
2109
|
#
|
|
2074
2110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
|
|
2075
2111
|
#
|
|
@@ -2502,6 +2538,8 @@ module Aws::Route53Resolver
|
|
|
2502
2538
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
2503
2539
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
2504
2540
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
2541
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
2542
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
2505
2543
|
#
|
|
2506
2544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
|
|
2507
2545
|
#
|
|
@@ -3526,6 +3564,8 @@ module Aws::Route53Resolver
|
|
|
3526
3564
|
# resp.resolver_endpoints[0].protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
3527
3565
|
# resp.resolver_endpoints[0].rni_enhanced_metrics_enabled #=> Boolean
|
|
3528
3566
|
# resp.resolver_endpoints[0].target_name_server_metrics_enabled #=> Boolean
|
|
3567
|
+
# resp.resolver_endpoints[0].dns_64_enabled #=> Boolean
|
|
3568
|
+
# resp.resolver_endpoints[0].ipv_6_internet_access_enabled #=> Boolean
|
|
3529
3569
|
#
|
|
3530
3570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
|
|
3531
3571
|
#
|
|
@@ -4887,6 +4927,32 @@ module Aws::Route53Resolver
|
|
|
4887
4927
|
#
|
|
4888
4928
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
4889
4929
|
#
|
|
4930
|
+
# @option params [Boolean] :dns_64_enabled
|
|
4931
|
+
# Specifies whether DNS64 is enabled for the inbound Resolver endpoint.
|
|
4932
|
+
# When set to `true`, Route 53 Resolver synthesizes AAAA (IPv6) records
|
|
4933
|
+
# for IPv4-only services by prepending the `64:ff9b::/96` prefix to the
|
|
4934
|
+
# IPv4 address. This enables IPv6-only clients that send queries through
|
|
4935
|
+
# the inbound endpoint to reach IPv4-only services. DNS64 works with
|
|
4936
|
+
# NAT64 to provide complete IPv6-to-IPv4 translation.
|
|
4937
|
+
#
|
|
4938
|
+
# @option params [Boolean] :ipv_6_internet_access_enabled
|
|
4939
|
+
# Specifies whether IPv6 internet access is enabled for the outbound
|
|
4940
|
+
# Resolver endpoint. When set to `true`, the endpoint elastic network
|
|
4941
|
+
# interfaces (ENIs) can forward DNS queries to public IPv6 targets
|
|
4942
|
+
# through an internet gateway.
|
|
4943
|
+
#
|
|
4944
|
+
# When you enable IPv6 internet access, use network controls like
|
|
4945
|
+
# security groups, NACLs, or egress-only internet gateways to protect
|
|
4946
|
+
# the endpoint ENIs from unsolicited ingress traffic. Be aware that some
|
|
4947
|
+
# network controls can affect DNS query throughput due to connection
|
|
4948
|
+
# tracking. For more information, see [Amazon EC2 security group
|
|
4949
|
+
# connection tracking][1] and [Resolver endpoint scaling][2].
|
|
4950
|
+
#
|
|
4951
|
+
#
|
|
4952
|
+
#
|
|
4953
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/userguide/security-group-connection-tracking.html
|
|
4954
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/best-practices-resolver-endpoint-scaling.html
|
|
4955
|
+
#
|
|
4890
4956
|
# @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4891
4957
|
#
|
|
4892
4958
|
# * {Types::UpdateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
|
|
@@ -4906,6 +4972,8 @@ module Aws::Route53Resolver
|
|
|
4906
4972
|
# protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
|
|
4907
4973
|
# rni_enhanced_metrics_enabled: false,
|
|
4908
4974
|
# target_name_server_metrics_enabled: false,
|
|
4975
|
+
# dns_64_enabled: false,
|
|
4976
|
+
# ipv_6_internet_access_enabled: false,
|
|
4909
4977
|
# })
|
|
4910
4978
|
#
|
|
4911
4979
|
# @example Response structure
|
|
@@ -4930,6 +4998,8 @@ module Aws::Route53Resolver
|
|
|
4930
4998
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
4931
4999
|
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
4932
5000
|
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
5001
|
+
# resp.resolver_endpoint.dns_64_enabled #=> Boolean
|
|
5002
|
+
# resp.resolver_endpoint.ipv_6_internet_access_enabled #=> Boolean
|
|
4933
5003
|
#
|
|
4934
5004
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
|
|
4935
5005
|
#
|
|
@@ -5023,7 +5093,7 @@ module Aws::Route53Resolver
|
|
|
5023
5093
|
tracer: tracer
|
|
5024
5094
|
)
|
|
5025
5095
|
context[:gem_name] = 'aws-sdk-route53resolver'
|
|
5026
|
-
context[:gem_version] = '1.
|
|
5096
|
+
context[:gem_version] = '1.96.0'
|
|
5027
5097
|
Seahorse::Client::Request.new(handlers, context)
|
|
5028
5098
|
end
|
|
5029
5099
|
|
|
@@ -74,6 +74,7 @@ module Aws::Route53Resolver
|
|
|
74
74
|
DisassociateResolverQueryLogConfigResponse = Shapes::StructureShape.new(name: 'DisassociateResolverQueryLogConfigResponse')
|
|
75
75
|
DisassociateResolverRuleRequest = Shapes::StructureShape.new(name: 'DisassociateResolverRuleRequest')
|
|
76
76
|
DisassociateResolverRuleResponse = Shapes::StructureShape.new(name: 'DisassociateResolverRuleResponse')
|
|
77
|
+
Dns64Enabled = Shapes::BooleanShape.new(name: 'Dns64Enabled')
|
|
77
78
|
DnsThreatProtection = Shapes::StringShape.new(name: 'DnsThreatProtection')
|
|
78
79
|
DomainListFileUrl = Shapes::StringShape.new(name: 'DomainListFileUrl')
|
|
79
80
|
DomainName = Shapes::StringShape.new(name: 'DomainName')
|
|
@@ -153,6 +154,7 @@ module Aws::Route53Resolver
|
|
|
153
154
|
IpAddressesRequest = Shapes::ListShape.new(name: 'IpAddressesRequest')
|
|
154
155
|
IpAddressesResponse = Shapes::ListShape.new(name: 'IpAddressesResponse')
|
|
155
156
|
Ipv6 = Shapes::StringShape.new(name: 'Ipv6')
|
|
157
|
+
Ipv6InternetAccessEnabled = Shapes::BooleanShape.new(name: 'Ipv6InternetAccessEnabled')
|
|
156
158
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
|
157
159
|
ListDomainMaxResults = Shapes::IntegerShape.new(name: 'ListDomainMaxResults')
|
|
158
160
|
ListFirewallConfigsMaxResult = Shapes::IntegerShape.new(name: 'ListFirewallConfigsMaxResult')
|
|
@@ -394,6 +396,8 @@ module Aws::Route53Resolver
|
|
|
394
396
|
CreateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box" => true}))
|
|
395
397
|
CreateResolverEndpointRequest.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled", metadata: {"box" => true}))
|
|
396
398
|
CreateResolverEndpointRequest.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled", metadata: {"box" => true}))
|
|
399
|
+
CreateResolverEndpointRequest.add_member(:dns_64_enabled, Shapes::ShapeRef.new(shape: Dns64Enabled, location_name: "Dns64Enabled", metadata: {"box" => true}))
|
|
400
|
+
CreateResolverEndpointRequest.add_member(:ipv_6_internet_access_enabled, Shapes::ShapeRef.new(shape: Ipv6InternetAccessEnabled, location_name: "Ipv6InternetAccessEnabled", metadata: {"box" => true}))
|
|
397
401
|
CreateResolverEndpointRequest.struct_class = Types::CreateResolverEndpointRequest
|
|
398
402
|
|
|
399
403
|
CreateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
|
|
@@ -971,6 +975,8 @@ module Aws::Route53Resolver
|
|
|
971
975
|
ResolverEndpoint.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
|
|
972
976
|
ResolverEndpoint.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled"))
|
|
973
977
|
ResolverEndpoint.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled"))
|
|
978
|
+
ResolverEndpoint.add_member(:dns_64_enabled, Shapes::ShapeRef.new(shape: Dns64Enabled, location_name: "Dns64Enabled"))
|
|
979
|
+
ResolverEndpoint.add_member(:ipv_6_internet_access_enabled, Shapes::ShapeRef.new(shape: Ipv6InternetAccessEnabled, location_name: "Ipv6InternetAccessEnabled"))
|
|
974
980
|
ResolverEndpoint.struct_class = Types::ResolverEndpoint
|
|
975
981
|
|
|
976
982
|
ResolverEndpoints.member = Shapes::ShapeRef.new(shape: ResolverEndpoint)
|
|
@@ -1172,6 +1178,8 @@ module Aws::Route53Resolver
|
|
|
1172
1178
|
UpdateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box" => true}))
|
|
1173
1179
|
UpdateResolverEndpointRequest.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled", metadata: {"box" => true}))
|
|
1174
1180
|
UpdateResolverEndpointRequest.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled", metadata: {"box" => true}))
|
|
1181
|
+
UpdateResolverEndpointRequest.add_member(:dns_64_enabled, Shapes::ShapeRef.new(shape: Dns64Enabled, location_name: "Dns64Enabled", metadata: {"box" => true}))
|
|
1182
|
+
UpdateResolverEndpointRequest.add_member(:ipv_6_internet_access_enabled, Shapes::ShapeRef.new(shape: Ipv6InternetAccessEnabled, location_name: "Ipv6InternetAccessEnabled", metadata: {"box" => true}))
|
|
1175
1183
|
UpdateResolverEndpointRequest.struct_class = Types::UpdateResolverEndpointRequest
|
|
1176
1184
|
|
|
1177
1185
|
UpdateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
|
|
@@ -1460,6 +1468,7 @@ module Aws::Route53Resolver
|
|
|
1460
1468
|
o.http_request_uri = "/"
|
|
1461
1469
|
o.input = Shapes::ShapeRef.new(shape: DeleteResolverRuleRequest)
|
|
1462
1470
|
o.output = Shapes::ShapeRef.new(shape: DeleteResolverRuleResponse)
|
|
1471
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
1463
1472
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1464
1473
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1465
1474
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
|
@@ -1516,6 +1525,7 @@ module Aws::Route53Resolver
|
|
|
1516
1525
|
o.input = Shapes::ShapeRef.new(shape: DisassociateResolverRuleRequest)
|
|
1517
1526
|
o.output = Shapes::ShapeRef.new(shape: DisassociateResolverRuleResponse)
|
|
1518
1527
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1528
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
1519
1529
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1520
1530
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
|
|
1521
1531
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
@@ -725,6 +725,35 @@ module Aws::Route53Resolver
|
|
|
725
725
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
726
726
|
# @return [Boolean]
|
|
727
727
|
#
|
|
728
|
+
# @!attribute [rw] dns_64_enabled
|
|
729
|
+
# Specifies whether DNS64 is enabled for the inbound Resolver
|
|
730
|
+
# endpoint. When set to `true`, Route 53 Resolver synthesizes AAAA
|
|
731
|
+
# (IPv6) records for IPv4-only services by prepending the
|
|
732
|
+
# `64:ff9b::/96` prefix to the IPv4 address. This enables IPv6-only
|
|
733
|
+
# clients that send queries through the inbound endpoint to reach
|
|
734
|
+
# IPv4-only services. DNS64 works with NAT64 to provide complete
|
|
735
|
+
# IPv6-to-IPv4 translation. Default is false.
|
|
736
|
+
# @return [Boolean]
|
|
737
|
+
#
|
|
738
|
+
# @!attribute [rw] ipv_6_internet_access_enabled
|
|
739
|
+
# Specifies whether IPv6 internet access is enabled for the outbound
|
|
740
|
+
# Resolver endpoint. When set to `true`, the endpoint elastic network
|
|
741
|
+
# interfaces (ENIs) can forward DNS queries to public IPv6 targets
|
|
742
|
+
# through an internet gateway. Default is false.
|
|
743
|
+
#
|
|
744
|
+
# When you enable IPv6 internet access, use network controls like
|
|
745
|
+
# security groups, NACLs, or egress-only internet gateways to protect
|
|
746
|
+
# the endpoint ENIs from unsolicited ingress traffic. Be aware that
|
|
747
|
+
# some network controls can affect DNS query throughput due to
|
|
748
|
+
# connection tracking. For more information, see [Amazon EC2 security
|
|
749
|
+
# group connection tracking][1] and [Resolver endpoint scaling][2].
|
|
750
|
+
#
|
|
751
|
+
#
|
|
752
|
+
#
|
|
753
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/userguide/security-group-connection-tracking.html
|
|
754
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/best-practices-resolver-endpoint-scaling.html
|
|
755
|
+
# @return [Boolean]
|
|
756
|
+
#
|
|
728
757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
|
|
729
758
|
#
|
|
730
759
|
class CreateResolverEndpointRequest < Struct.new(
|
|
@@ -739,7 +768,9 @@ module Aws::Route53Resolver
|
|
|
739
768
|
:resolver_endpoint_type,
|
|
740
769
|
:protocols,
|
|
741
770
|
:rni_enhanced_metrics_enabled,
|
|
742
|
-
:target_name_server_metrics_enabled
|
|
771
|
+
:target_name_server_metrics_enabled,
|
|
772
|
+
:dns_64_enabled,
|
|
773
|
+
:ipv_6_internet_access_enabled)
|
|
743
774
|
SENSITIVE = []
|
|
744
775
|
include Aws::Structure
|
|
745
776
|
end
|
|
@@ -4358,6 +4389,20 @@ module Aws::Route53Resolver
|
|
|
4358
4389
|
# endpoint.
|
|
4359
4390
|
# @return [Boolean]
|
|
4360
4391
|
#
|
|
4392
|
+
# @!attribute [rw] dns_64_enabled
|
|
4393
|
+
# Indicates whether DNS64 is enabled for the inbound Resolver
|
|
4394
|
+
# endpoint. When `true`, Route 53 Resolver synthesizes AAAA (IPv6)
|
|
4395
|
+
# records for IPv4-only services by prepending the `64:ff9b::/96`
|
|
4396
|
+
# prefix to the IPv4 address.
|
|
4397
|
+
# @return [Boolean]
|
|
4398
|
+
#
|
|
4399
|
+
# @!attribute [rw] ipv_6_internet_access_enabled
|
|
4400
|
+
# Indicates whether IPv6 internet access is enabled for the outbound
|
|
4401
|
+
# Resolver endpoint. When `true`, the endpoint elastic network
|
|
4402
|
+
# interfaces (ENIs) can forward DNS queries to public IPv6 targets
|
|
4403
|
+
# through an internet gateway.
|
|
4404
|
+
# @return [Boolean]
|
|
4405
|
+
#
|
|
4361
4406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
|
|
4362
4407
|
#
|
|
4363
4408
|
class ResolverEndpoint < Struct.new(
|
|
@@ -4378,7 +4423,9 @@ module Aws::Route53Resolver
|
|
|
4378
4423
|
:resolver_endpoint_type,
|
|
4379
4424
|
:protocols,
|
|
4380
4425
|
:rni_enhanced_metrics_enabled,
|
|
4381
|
-
:target_name_server_metrics_enabled
|
|
4426
|
+
:target_name_server_metrics_enabled,
|
|
4427
|
+
:dns_64_enabled,
|
|
4428
|
+
:ipv_6_internet_access_enabled)
|
|
4382
4429
|
SENSITIVE = []
|
|
4383
4430
|
include Aws::Structure
|
|
4384
4431
|
end
|
|
@@ -5674,6 +5721,35 @@ module Aws::Route53Resolver
|
|
|
5674
5721
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
5675
5722
|
# @return [Boolean]
|
|
5676
5723
|
#
|
|
5724
|
+
# @!attribute [rw] dns_64_enabled
|
|
5725
|
+
# Specifies whether DNS64 is enabled for the inbound Resolver
|
|
5726
|
+
# endpoint. When set to `true`, Route 53 Resolver synthesizes AAAA
|
|
5727
|
+
# (IPv6) records for IPv4-only services by prepending the
|
|
5728
|
+
# `64:ff9b::/96` prefix to the IPv4 address. This enables IPv6-only
|
|
5729
|
+
# clients that send queries through the inbound endpoint to reach
|
|
5730
|
+
# IPv4-only services. DNS64 works with NAT64 to provide complete
|
|
5731
|
+
# IPv6-to-IPv4 translation.
|
|
5732
|
+
# @return [Boolean]
|
|
5733
|
+
#
|
|
5734
|
+
# @!attribute [rw] ipv_6_internet_access_enabled
|
|
5735
|
+
# Specifies whether IPv6 internet access is enabled for the outbound
|
|
5736
|
+
# Resolver endpoint. When set to `true`, the endpoint elastic network
|
|
5737
|
+
# interfaces (ENIs) can forward DNS queries to public IPv6 targets
|
|
5738
|
+
# through an internet gateway.
|
|
5739
|
+
#
|
|
5740
|
+
# When you enable IPv6 internet access, use network controls like
|
|
5741
|
+
# security groups, NACLs, or egress-only internet gateways to protect
|
|
5742
|
+
# the endpoint ENIs from unsolicited ingress traffic. Be aware that
|
|
5743
|
+
# some network controls can affect DNS query throughput due to
|
|
5744
|
+
# connection tracking. For more information, see [Amazon EC2 security
|
|
5745
|
+
# group connection tracking][1] and [Resolver endpoint scaling][2].
|
|
5746
|
+
#
|
|
5747
|
+
#
|
|
5748
|
+
#
|
|
5749
|
+
# [1]: https://docs.aws.amazon.com/ec2/latest/userguide/security-group-connection-tracking.html
|
|
5750
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/best-practices-resolver-endpoint-scaling.html
|
|
5751
|
+
# @return [Boolean]
|
|
5752
|
+
#
|
|
5677
5753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
|
|
5678
5754
|
#
|
|
5679
5755
|
class UpdateResolverEndpointRequest < Struct.new(
|
|
@@ -5683,7 +5759,9 @@ module Aws::Route53Resolver
|
|
|
5683
5759
|
:update_ip_addresses,
|
|
5684
5760
|
:protocols,
|
|
5685
5761
|
:rni_enhanced_metrics_enabled,
|
|
5686
|
-
:target_name_server_metrics_enabled
|
|
5762
|
+
:target_name_server_metrics_enabled,
|
|
5763
|
+
:dns_64_enabled,
|
|
5764
|
+
:ipv_6_internet_access_enabled)
|
|
5687
5765
|
SENSITIVE = []
|
|
5688
5766
|
include Aws::Structure
|
|
5689
5767
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -244,7 +244,9 @@ module Aws
|
|
|
244
244
|
?resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK"),
|
|
245
245
|
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")],
|
|
246
246
|
?rni_enhanced_metrics_enabled: bool,
|
|
247
|
-
?target_name_server_metrics_enabled: bool
|
|
247
|
+
?target_name_server_metrics_enabled: bool,
|
|
248
|
+
?dns_64_enabled: bool,
|
|
249
|
+
?ipv_6_internet_access_enabled: bool
|
|
248
250
|
) -> _CreateResolverEndpointResponseSuccess
|
|
249
251
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResolverEndpointResponseSuccess
|
|
250
252
|
|
|
@@ -1005,7 +1007,9 @@ module Aws
|
|
|
1005
1007
|
],
|
|
1006
1008
|
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")],
|
|
1007
1009
|
?rni_enhanced_metrics_enabled: bool,
|
|
1008
|
-
?target_name_server_metrics_enabled: bool
|
|
1010
|
+
?target_name_server_metrics_enabled: bool,
|
|
1011
|
+
?dns_64_enabled: bool,
|
|
1012
|
+
?ipv_6_internet_access_enabled: bool
|
|
1009
1013
|
) -> _UpdateResolverEndpointResponseSuccess
|
|
1010
1014
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResolverEndpointResponseSuccess
|
|
1011
1015
|
|
data/sig/types.rbs
CHANGED
|
@@ -143,6 +143,8 @@ module Aws::Route53Resolver
|
|
|
143
143
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
144
144
|
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
145
145
|
attr_accessor target_name_server_metrics_enabled: bool
|
|
146
|
+
attr_accessor dns_64_enabled: bool
|
|
147
|
+
attr_accessor ipv_6_internet_access_enabled: bool
|
|
146
148
|
SENSITIVE: []
|
|
147
149
|
end
|
|
148
150
|
|
|
@@ -930,6 +932,8 @@ module Aws::Route53Resolver
|
|
|
930
932
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
931
933
|
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
932
934
|
attr_accessor target_name_server_metrics_enabled: bool
|
|
935
|
+
attr_accessor dns_64_enabled: bool
|
|
936
|
+
attr_accessor ipv_6_internet_access_enabled: bool
|
|
933
937
|
SENSITIVE: []
|
|
934
938
|
end
|
|
935
939
|
|
|
@@ -1177,6 +1181,8 @@ module Aws::Route53Resolver
|
|
|
1177
1181
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
1178
1182
|
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
1179
1183
|
attr_accessor target_name_server_metrics_enabled: bool
|
|
1184
|
+
attr_accessor dns_64_enabled: bool
|
|
1185
|
+
attr_accessor ipv_6_internet_access_enabled: bool
|
|
1180
1186
|
SENSITIVE: []
|
|
1181
1187
|
end
|
|
1182
1188
|
|