aws-sdk-route53resolver 1.90.0 → 1.91.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 +105 -2
- data/lib/aws-sdk-route53resolver/client_api.rb +8 -0
- data/lib/aws-sdk-route53resolver/types.rb +127 -4
- 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: 466b2eb64ae077a09b9c3a4b80c153af6ee5920bc2346f71e0dc7cc5a25cdc44
|
|
4
|
+
data.tar.gz: d08b81eb871c25b6f645b5e36a47f169406d31bfa03c8f780d837071944e08a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9327a18bf65b57dfa7fdf305435015c0a56b43c351d02ed51f6c90fbee176b4b1d167c1f5806e547eccea38349bec4c58f00fede2da94626d142d43823764f73
|
|
7
|
+
data.tar.gz: f3e4b4a0deb0481f7d4a1333d80fd16573639aa3840c6ad295fe39664190f735e83ea3da5a5b89b0f3e59f6d9c1c29c92f310e46084b406c8d423d0c45c5afb2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.91.0 (2025-12-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance.
|
|
8
|
+
|
|
4
9
|
1.90.0 (2025-11-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.91.0
|
|
@@ -631,6 +631,8 @@ module Aws::Route53Resolver
|
|
|
631
631
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
632
632
|
# resp.resolver_endpoint.protocols #=> Array
|
|
633
633
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
634
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
635
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
634
636
|
#
|
|
635
637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
|
|
636
638
|
#
|
|
@@ -725,6 +727,10 @@ module Aws::Route53Resolver
|
|
|
725
727
|
# A name for the association that you're creating between a Resolver
|
|
726
728
|
# rule and a VPC.
|
|
727
729
|
#
|
|
730
|
+
# The name can be up to 64 characters long and can contain letters (a-z,
|
|
731
|
+
# A-Z), numbers (0-9), hyphens (-), underscores (\_), and spaces. The
|
|
732
|
+
# name cannot consist of only numbers.
|
|
733
|
+
#
|
|
728
734
|
# @option params [required, String] :vpc_id
|
|
729
735
|
# The ID of the VPC that you want to associate the Resolver rule with.
|
|
730
736
|
#
|
|
@@ -1262,6 +1268,40 @@ module Aws::Route53Resolver
|
|
|
1262
1268
|
#
|
|
1263
1269
|
# * None, which is treated as Do53.
|
|
1264
1270
|
#
|
|
1271
|
+
# @option params [Boolean] :rni_enhanced_metrics_enabled
|
|
1272
|
+
# Specifies whether RNI enhanced metrics are enabled for the Resolver
|
|
1273
|
+
# endpoints. When set to true, one-minute granular metrics are published
|
|
1274
|
+
# in CloudWatch for each RNI associated with this endpoint. When set to
|
|
1275
|
+
# false, metrics are not published. Default is false.
|
|
1276
|
+
#
|
|
1277
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
1278
|
+
# Route 53 Resolver endpoint RNI enhanced metrics. For more information,
|
|
1279
|
+
# see [Detailed metrics][1].
|
|
1280
|
+
#
|
|
1281
|
+
# </note>
|
|
1282
|
+
#
|
|
1283
|
+
#
|
|
1284
|
+
#
|
|
1285
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
1286
|
+
#
|
|
1287
|
+
# @option params [Boolean] :target_name_server_metrics_enabled
|
|
1288
|
+
# Specifies whether target name server metrics are enabled for the
|
|
1289
|
+
# outbound Resolver endpoints. When set to true, one-minute granular
|
|
1290
|
+
# metrics are published in CloudWatch for each target name server
|
|
1291
|
+
# associated with this endpoint. When set to false, metrics are not
|
|
1292
|
+
# published. Default is false. This is not supported for inbound
|
|
1293
|
+
# Resolver endpoints.
|
|
1294
|
+
#
|
|
1295
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
1296
|
+
# Route 53 Resolver endpoint target name server metrics. For more
|
|
1297
|
+
# information, see [Detailed metrics][1].
|
|
1298
|
+
#
|
|
1299
|
+
# </note>
|
|
1300
|
+
#
|
|
1301
|
+
#
|
|
1302
|
+
#
|
|
1303
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
1304
|
+
#
|
|
1265
1305
|
# @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1266
1306
|
#
|
|
1267
1307
|
# * {Types::CreateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
|
|
@@ -1290,6 +1330,8 @@ module Aws::Route53Resolver
|
|
|
1290
1330
|
# ],
|
|
1291
1331
|
# resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
|
|
1292
1332
|
# protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
|
|
1333
|
+
# rni_enhanced_metrics_enabled: false,
|
|
1334
|
+
# target_name_server_metrics_enabled: false,
|
|
1293
1335
|
# })
|
|
1294
1336
|
#
|
|
1295
1337
|
# @example Response structure
|
|
@@ -1312,6 +1354,8 @@ module Aws::Route53Resolver
|
|
|
1312
1354
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
1313
1355
|
# resp.resolver_endpoint.protocols #=> Array
|
|
1314
1356
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
1357
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
1358
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
1315
1359
|
#
|
|
1316
1360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
|
|
1317
1361
|
#
|
|
@@ -1435,6 +1479,10 @@ module Aws::Route53Resolver
|
|
|
1435
1479
|
# A friendly name that lets you easily find a rule in the Resolver
|
|
1436
1480
|
# dashboard in the Route 53 console.
|
|
1437
1481
|
#
|
|
1482
|
+
# The name can be up to 64 characters long and can contain letters (a-z,
|
|
1483
|
+
# A-Z), numbers (0-9), hyphens (-), underscores (\_), and spaces. The
|
|
1484
|
+
# name cannot consist of only numbers.
|
|
1485
|
+
#
|
|
1438
1486
|
# @option params [required, String] :rule_type
|
|
1439
1487
|
# When you want to forward DNS queries for specified domain name to
|
|
1440
1488
|
# resolvers on your network, specify `FORWARD` or `DELEGATE`.
|
|
@@ -1464,7 +1512,16 @@ module Aws::Route53Resolver
|
|
|
1464
1512
|
# Separate IP addresses with a space.
|
|
1465
1513
|
#
|
|
1466
1514
|
# `TargetIps` is available only when the value of `Rule type` is
|
|
1467
|
-
# `FORWARD`.
|
|
1515
|
+
# `FORWARD`. You should not provide TargetIps when the Rule type is
|
|
1516
|
+
# `DELEGATE`.
|
|
1517
|
+
#
|
|
1518
|
+
# <note markdown="1"> when creating a DELEGATE rule, you must not provide the `TargetIps`
|
|
1519
|
+
# parameter. If you provide the `TargetIps`, you may receive an ERROR
|
|
1520
|
+
# message similar to "Delegate resolver rules need to specify a
|
|
1521
|
+
# nameserver name". This error means you should not provide
|
|
1522
|
+
# `TargetIps`.
|
|
1523
|
+
#
|
|
1524
|
+
# </note>
|
|
1468
1525
|
#
|
|
1469
1526
|
# @option params [String] :resolver_endpoint_id
|
|
1470
1527
|
# The ID of the outbound Resolver endpoint that you want to use to route
|
|
@@ -1792,6 +1849,8 @@ module Aws::Route53Resolver
|
|
|
1792
1849
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
1793
1850
|
# resp.resolver_endpoint.protocols #=> Array
|
|
1794
1851
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
1852
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
1853
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
1795
1854
|
#
|
|
1796
1855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
|
|
1797
1856
|
#
|
|
@@ -2009,6 +2068,8 @@ module Aws::Route53Resolver
|
|
|
2009
2068
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
2010
2069
|
# resp.resolver_endpoint.protocols #=> Array
|
|
2011
2070
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
2071
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
2072
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
2012
2073
|
#
|
|
2013
2074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
|
|
2014
2075
|
#
|
|
@@ -2439,6 +2500,8 @@ module Aws::Route53Resolver
|
|
|
2439
2500
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
2440
2501
|
# resp.resolver_endpoint.protocols #=> Array
|
|
2441
2502
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
2503
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
2504
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
2442
2505
|
#
|
|
2443
2506
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
|
|
2444
2507
|
#
|
|
@@ -3461,6 +3524,8 @@ module Aws::Route53Resolver
|
|
|
3461
3524
|
# resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
3462
3525
|
# resp.resolver_endpoints[0].protocols #=> Array
|
|
3463
3526
|
# resp.resolver_endpoints[0].protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
3527
|
+
# resp.resolver_endpoints[0].rni_enhanced_metrics_enabled #=> Boolean
|
|
3528
|
+
# resp.resolver_endpoints[0].target_name_server_metrics_enabled #=> Boolean
|
|
3464
3529
|
#
|
|
3465
3530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
|
|
3466
3531
|
#
|
|
@@ -4788,6 +4853,40 @@ module Aws::Route53Resolver
|
|
|
4788
4853
|
# traffic has transferred to using the DoH protocol, or DoH-FIPS, and
|
|
4789
4854
|
# then remove the Do53.
|
|
4790
4855
|
#
|
|
4856
|
+
# @option params [Boolean] :rni_enhanced_metrics_enabled
|
|
4857
|
+
# Updates whether RNI enhanced metrics are enabled for the Resolver
|
|
4858
|
+
# endpoints. When set to true, one-minute granular metrics are published
|
|
4859
|
+
# in CloudWatch for each RNI associated with this endpoint. When set to
|
|
4860
|
+
# false, metrics are not published.
|
|
4861
|
+
#
|
|
4862
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
4863
|
+
# Route 53 Resolver endpoint RNI enhanced metrics. For more information,
|
|
4864
|
+
# see [Detailed metrics][1].
|
|
4865
|
+
#
|
|
4866
|
+
# </note>
|
|
4867
|
+
#
|
|
4868
|
+
#
|
|
4869
|
+
#
|
|
4870
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
4871
|
+
#
|
|
4872
|
+
# @option params [Boolean] :target_name_server_metrics_enabled
|
|
4873
|
+
# Updates whether target name server metrics are enabled for the
|
|
4874
|
+
# outbound Resolver endpoints. When set to true, one-minute granular
|
|
4875
|
+
# metrics are published in CloudWatch for each target name server
|
|
4876
|
+
# associated with this endpoint. When set to false, metrics are not
|
|
4877
|
+
# published. This setting is not supported for inbound Resolver
|
|
4878
|
+
# endpoints.
|
|
4879
|
+
#
|
|
4880
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
4881
|
+
# Route 53 Resolver endpoint target name server metrics. For more
|
|
4882
|
+
# information, see [Detailed metrics][1].
|
|
4883
|
+
#
|
|
4884
|
+
# </note>
|
|
4885
|
+
#
|
|
4886
|
+
#
|
|
4887
|
+
#
|
|
4888
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
4889
|
+
#
|
|
4791
4890
|
# @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4792
4891
|
#
|
|
4793
4892
|
# * {Types::UpdateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
|
|
@@ -4805,6 +4904,8 @@ module Aws::Route53Resolver
|
|
|
4805
4904
|
# },
|
|
4806
4905
|
# ],
|
|
4807
4906
|
# protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
|
|
4907
|
+
# rni_enhanced_metrics_enabled: false,
|
|
4908
|
+
# target_name_server_metrics_enabled: false,
|
|
4808
4909
|
# })
|
|
4809
4910
|
#
|
|
4810
4911
|
# @example Response structure
|
|
@@ -4827,6 +4928,8 @@ module Aws::Route53Resolver
|
|
|
4827
4928
|
# resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
|
|
4828
4929
|
# resp.resolver_endpoint.protocols #=> Array
|
|
4829
4930
|
# resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
|
|
4931
|
+
# resp.resolver_endpoint.rni_enhanced_metrics_enabled #=> Boolean
|
|
4932
|
+
# resp.resolver_endpoint.target_name_server_metrics_enabled #=> Boolean
|
|
4830
4933
|
#
|
|
4831
4934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
|
|
4832
4935
|
#
|
|
@@ -4920,7 +5023,7 @@ module Aws::Route53Resolver
|
|
|
4920
5023
|
tracer: tracer
|
|
4921
5024
|
)
|
|
4922
5025
|
context[:gem_name] = 'aws-sdk-route53resolver'
|
|
4923
|
-
context[:gem_version] = '1.
|
|
5026
|
+
context[:gem_version] = '1.91.0'
|
|
4924
5027
|
Seahorse::Client::Request.new(handlers, context)
|
|
4925
5028
|
end
|
|
4926
5029
|
|
|
@@ -246,6 +246,7 @@ module Aws::Route53Resolver
|
|
|
246
246
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
247
247
|
ResourceUnavailableException = Shapes::StructureShape.new(name: 'ResourceUnavailableException')
|
|
248
248
|
Rfc3339TimeString = Shapes::StringShape.new(name: 'Rfc3339TimeString')
|
|
249
|
+
RniEnhancedMetricsEnabled = Shapes::BooleanShape.new(name: 'RniEnhancedMetricsEnabled')
|
|
249
250
|
RuleTypeOption = Shapes::StringShape.new(name: 'RuleTypeOption')
|
|
250
251
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
251
252
|
ServerNameIndication = Shapes::StringShape.new(name: 'ServerNameIndication')
|
|
@@ -266,6 +267,7 @@ module Aws::Route53Resolver
|
|
|
266
267
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
267
268
|
TargetAddress = Shapes::StructureShape.new(name: 'TargetAddress')
|
|
268
269
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
|
270
|
+
TargetNameServerMetricsEnabled = Shapes::BooleanShape.new(name: 'TargetNameServerMetricsEnabled')
|
|
269
271
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
270
272
|
UnknownResourceException = Shapes::StructureShape.new(name: 'UnknownResourceException')
|
|
271
273
|
Unsigned = Shapes::IntegerShape.new(name: 'Unsigned')
|
|
@@ -390,6 +392,8 @@ module Aws::Route53Resolver
|
|
|
390
392
|
CreateResolverEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box" => true}))
|
|
391
393
|
CreateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box" => true}))
|
|
392
394
|
CreateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box" => true}))
|
|
395
|
+
CreateResolverEndpointRequest.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled", metadata: {"box" => true}))
|
|
396
|
+
CreateResolverEndpointRequest.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled", metadata: {"box" => true}))
|
|
393
397
|
CreateResolverEndpointRequest.struct_class = Types::CreateResolverEndpointRequest
|
|
394
398
|
|
|
395
399
|
CreateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
|
|
@@ -965,6 +969,8 @@ module Aws::Route53Resolver
|
|
|
965
969
|
ResolverEndpoint.add_member(:preferred_instance_type, Shapes::ShapeRef.new(shape: OutpostInstanceType, location_name: "PreferredInstanceType"))
|
|
966
970
|
ResolverEndpoint.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType"))
|
|
967
971
|
ResolverEndpoint.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
|
|
972
|
+
ResolverEndpoint.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled"))
|
|
973
|
+
ResolverEndpoint.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled"))
|
|
968
974
|
ResolverEndpoint.struct_class = Types::ResolverEndpoint
|
|
969
975
|
|
|
970
976
|
ResolverEndpoints.member = Shapes::ShapeRef.new(shape: ResolverEndpoint)
|
|
@@ -1164,6 +1170,8 @@ module Aws::Route53Resolver
|
|
|
1164
1170
|
UpdateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box" => true}))
|
|
1165
1171
|
UpdateResolverEndpointRequest.add_member(:update_ip_addresses, Shapes::ShapeRef.new(shape: UpdateIpAddresses, location_name: "UpdateIpAddresses", metadata: {"box" => true}))
|
|
1166
1172
|
UpdateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box" => true}))
|
|
1173
|
+
UpdateResolverEndpointRequest.add_member(:rni_enhanced_metrics_enabled, Shapes::ShapeRef.new(shape: RniEnhancedMetricsEnabled, location_name: "RniEnhancedMetricsEnabled", metadata: {"box" => true}))
|
|
1174
|
+
UpdateResolverEndpointRequest.add_member(:target_name_server_metrics_enabled, Shapes::ShapeRef.new(shape: TargetNameServerMetricsEnabled, location_name: "TargetNameServerMetricsEnabled", metadata: {"box" => true}))
|
|
1167
1175
|
UpdateResolverEndpointRequest.struct_class = Types::UpdateResolverEndpointRequest
|
|
1168
1176
|
|
|
1169
1177
|
UpdateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
|
|
@@ -186,6 +186,10 @@ module Aws::Route53Resolver
|
|
|
186
186
|
# @!attribute [rw] name
|
|
187
187
|
# A name for the association that you're creating between a Resolver
|
|
188
188
|
# rule and a VPC.
|
|
189
|
+
#
|
|
190
|
+
# The name can be up to 64 characters long and can contain letters
|
|
191
|
+
# (a-z, A-Z), numbers (0-9), hyphens (-), underscores (\_), and
|
|
192
|
+
# spaces. The name cannot consist of only numbers.
|
|
189
193
|
# @return [String]
|
|
190
194
|
#
|
|
191
195
|
# @!attribute [rw] vpc_id
|
|
@@ -685,6 +689,42 @@ module Aws::Route53Resolver
|
|
|
685
689
|
# * None, which is treated as Do53.
|
|
686
690
|
# @return [Array<String>]
|
|
687
691
|
#
|
|
692
|
+
# @!attribute [rw] rni_enhanced_metrics_enabled
|
|
693
|
+
# Specifies whether RNI enhanced metrics are enabled for the Resolver
|
|
694
|
+
# endpoints. When set to true, one-minute granular metrics are
|
|
695
|
+
# published in CloudWatch for each RNI associated with this endpoint.
|
|
696
|
+
# When set to false, metrics are not published. Default is false.
|
|
697
|
+
#
|
|
698
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
699
|
+
# Route 53 Resolver endpoint RNI enhanced metrics. For more
|
|
700
|
+
# information, see [Detailed metrics][1].
|
|
701
|
+
#
|
|
702
|
+
# </note>
|
|
703
|
+
#
|
|
704
|
+
#
|
|
705
|
+
#
|
|
706
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
707
|
+
# @return [Boolean]
|
|
708
|
+
#
|
|
709
|
+
# @!attribute [rw] target_name_server_metrics_enabled
|
|
710
|
+
# Specifies whether target name server metrics are enabled for the
|
|
711
|
+
# outbound Resolver endpoints. When set to true, one-minute granular
|
|
712
|
+
# metrics are published in CloudWatch for each target name server
|
|
713
|
+
# associated with this endpoint. When set to false, metrics are not
|
|
714
|
+
# published. Default is false. This is not supported for inbound
|
|
715
|
+
# Resolver endpoints.
|
|
716
|
+
#
|
|
717
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
718
|
+
# Route 53 Resolver endpoint target name server metrics. For more
|
|
719
|
+
# information, see [Detailed metrics][1].
|
|
720
|
+
#
|
|
721
|
+
# </note>
|
|
722
|
+
#
|
|
723
|
+
#
|
|
724
|
+
#
|
|
725
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
726
|
+
# @return [Boolean]
|
|
727
|
+
#
|
|
688
728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
|
|
689
729
|
#
|
|
690
730
|
class CreateResolverEndpointRequest < Struct.new(
|
|
@@ -697,7 +737,9 @@ module Aws::Route53Resolver
|
|
|
697
737
|
:preferred_instance_type,
|
|
698
738
|
:tags,
|
|
699
739
|
:resolver_endpoint_type,
|
|
700
|
-
:protocols
|
|
740
|
+
:protocols,
|
|
741
|
+
:rni_enhanced_metrics_enabled,
|
|
742
|
+
:target_name_server_metrics_enabled)
|
|
701
743
|
SENSITIVE = []
|
|
702
744
|
include Aws::Structure
|
|
703
745
|
end
|
|
@@ -791,6 +833,10 @@ module Aws::Route53Resolver
|
|
|
791
833
|
# @!attribute [rw] name
|
|
792
834
|
# A friendly name that lets you easily find a rule in the Resolver
|
|
793
835
|
# dashboard in the Route 53 console.
|
|
836
|
+
#
|
|
837
|
+
# The name can be up to 64 characters long and can contain letters
|
|
838
|
+
# (a-z, A-Z), numbers (0-9), hyphens (-), underscores (\_), and
|
|
839
|
+
# spaces. The name cannot consist of only numbers.
|
|
794
840
|
# @return [String]
|
|
795
841
|
#
|
|
796
842
|
# @!attribute [rw] rule_type
|
|
@@ -825,7 +871,16 @@ module Aws::Route53Resolver
|
|
|
825
871
|
# Separate IP addresses with a space.
|
|
826
872
|
#
|
|
827
873
|
# `TargetIps` is available only when the value of `Rule type` is
|
|
828
|
-
# `FORWARD`.
|
|
874
|
+
# `FORWARD`. You should not provide TargetIps when the Rule type is
|
|
875
|
+
# `DELEGATE`.
|
|
876
|
+
#
|
|
877
|
+
# <note markdown="1"> when creating a DELEGATE rule, you must not provide the `TargetIps`
|
|
878
|
+
# parameter. If you provide the `TargetIps`, you may receive an ERROR
|
|
879
|
+
# message similar to "Delegate resolver rules need to specify a
|
|
880
|
+
# nameserver name". This error means you should not provide
|
|
881
|
+
# `TargetIps`.
|
|
882
|
+
#
|
|
883
|
+
# </note>
|
|
829
884
|
# @return [Array<Types::TargetAddress>]
|
|
830
885
|
#
|
|
831
886
|
# @!attribute [rw] resolver_endpoint_id
|
|
@@ -4287,6 +4342,22 @@ module Aws::Route53Resolver
|
|
|
4287
4342
|
# * None, which is treated as Do53.
|
|
4288
4343
|
# @return [Array<String>]
|
|
4289
4344
|
#
|
|
4345
|
+
# @!attribute [rw] rni_enhanced_metrics_enabled
|
|
4346
|
+
# Indicates whether RNI enhanced metrics are enabled for the Resolver
|
|
4347
|
+
# endpoint. When enabled, one-minute granular metrics are published in
|
|
4348
|
+
# CloudWatch for each RNI associated with this endpoint. When
|
|
4349
|
+
# disabled, these metrics are not published.
|
|
4350
|
+
# @return [Boolean]
|
|
4351
|
+
#
|
|
4352
|
+
# @!attribute [rw] target_name_server_metrics_enabled
|
|
4353
|
+
# Indicates whether target name server metrics are enabled for the
|
|
4354
|
+
# outbound Resolver endpoint. When enabled, one-minute granular
|
|
4355
|
+
# metrics are published in CloudWatch for each target name server
|
|
4356
|
+
# associated with this endpoint. When disabled, these metrics are not
|
|
4357
|
+
# published. This feature is not supported for inbound Resolver
|
|
4358
|
+
# endpoint.
|
|
4359
|
+
# @return [Boolean]
|
|
4360
|
+
#
|
|
4290
4361
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
|
|
4291
4362
|
#
|
|
4292
4363
|
class ResolverEndpoint < Struct.new(
|
|
@@ -4305,7 +4376,9 @@ module Aws::Route53Resolver
|
|
|
4305
4376
|
:outpost_arn,
|
|
4306
4377
|
:preferred_instance_type,
|
|
4307
4378
|
:resolver_endpoint_type,
|
|
4308
|
-
:protocols
|
|
4379
|
+
:protocols,
|
|
4380
|
+
:rni_enhanced_metrics_enabled,
|
|
4381
|
+
:target_name_server_metrics_enabled)
|
|
4309
4382
|
SENSITIVE = []
|
|
4310
4383
|
include Aws::Structure
|
|
4311
4384
|
end
|
|
@@ -4563,6 +4636,10 @@ module Aws::Route53Resolver
|
|
|
4563
4636
|
# @!attribute [rw] name
|
|
4564
4637
|
# The name for the Resolver rule, which you specified when you created
|
|
4565
4638
|
# the Resolver rule.
|
|
4639
|
+
#
|
|
4640
|
+
# The name can be up to 64 characters long and can contain letters
|
|
4641
|
+
# (a-z, A-Z), numbers (0-9), hyphens (-), underscores (\_), and
|
|
4642
|
+
# spaces. The name cannot consist of only numbers.
|
|
4566
4643
|
# @return [String]
|
|
4567
4644
|
#
|
|
4568
4645
|
# @!attribute [rw] target_ips
|
|
@@ -4652,6 +4729,10 @@ module Aws::Route53Resolver
|
|
|
4652
4729
|
#
|
|
4653
4730
|
# @!attribute [rw] name
|
|
4654
4731
|
# The name of an association between a Resolver rule and a VPC.
|
|
4732
|
+
#
|
|
4733
|
+
# The name can be up to 64 characters long and can contain letters
|
|
4734
|
+
# (a-z, A-Z), numbers (0-9), hyphens (-), underscores (\_), and
|
|
4735
|
+
# spaces. The name cannot consist of only numbers.
|
|
4655
4736
|
# @return [String]
|
|
4656
4737
|
#
|
|
4657
4738
|
# @!attribute [rw] vpc_id
|
|
@@ -4691,6 +4772,10 @@ module Aws::Route53Resolver
|
|
|
4691
4772
|
# @!attribute [rw] name
|
|
4692
4773
|
# The new name for the Resolver rule. The name that you specify
|
|
4693
4774
|
# appears in the Resolver dashboard in the Route 53 console.
|
|
4775
|
+
#
|
|
4776
|
+
# The name can be up to 64 characters long and can contain letters
|
|
4777
|
+
# (a-z, A-Z), numbers (0-9), hyphens (-), underscores (\_), and
|
|
4778
|
+
# spaces. The name cannot consist of only numbers.
|
|
4694
4779
|
# @return [String]
|
|
4695
4780
|
#
|
|
4696
4781
|
# @!attribute [rw] target_ips
|
|
@@ -5553,6 +5638,42 @@ module Aws::Route53Resolver
|
|
|
5553
5638
|
# then remove the Do53.
|
|
5554
5639
|
# @return [Array<String>]
|
|
5555
5640
|
#
|
|
5641
|
+
# @!attribute [rw] rni_enhanced_metrics_enabled
|
|
5642
|
+
# Updates whether RNI enhanced metrics are enabled for the Resolver
|
|
5643
|
+
# endpoints. When set to true, one-minute granular metrics are
|
|
5644
|
+
# published in CloudWatch for each RNI associated with this endpoint.
|
|
5645
|
+
# When set to false, metrics are not published.
|
|
5646
|
+
#
|
|
5647
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
5648
|
+
# Route 53 Resolver endpoint RNI enhanced metrics. For more
|
|
5649
|
+
# information, see [Detailed metrics][1].
|
|
5650
|
+
#
|
|
5651
|
+
# </note>
|
|
5652
|
+
#
|
|
5653
|
+
#
|
|
5654
|
+
#
|
|
5655
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
5656
|
+
# @return [Boolean]
|
|
5657
|
+
#
|
|
5658
|
+
# @!attribute [rw] target_name_server_metrics_enabled
|
|
5659
|
+
# Updates whether target name server metrics are enabled for the
|
|
5660
|
+
# outbound Resolver endpoints. When set to true, one-minute granular
|
|
5661
|
+
# metrics are published in CloudWatch for each target name server
|
|
5662
|
+
# associated with this endpoint. When set to false, metrics are not
|
|
5663
|
+
# published. This setting is not supported for inbound Resolver
|
|
5664
|
+
# endpoints.
|
|
5665
|
+
#
|
|
5666
|
+
# <note markdown="1"> Standard CloudWatch pricing and charges are applied for using the
|
|
5667
|
+
# Route 53 Resolver endpoint target name server metrics. For more
|
|
5668
|
+
# information, see [Detailed metrics][1].
|
|
5669
|
+
#
|
|
5670
|
+
# </note>
|
|
5671
|
+
#
|
|
5672
|
+
#
|
|
5673
|
+
#
|
|
5674
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/monitoring-resolver-with-cloudwatch.html
|
|
5675
|
+
# @return [Boolean]
|
|
5676
|
+
#
|
|
5556
5677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
|
|
5557
5678
|
#
|
|
5558
5679
|
class UpdateResolverEndpointRequest < Struct.new(
|
|
@@ -5560,7 +5681,9 @@ module Aws::Route53Resolver
|
|
|
5560
5681
|
:name,
|
|
5561
5682
|
:resolver_endpoint_type,
|
|
5562
5683
|
:update_ip_addresses,
|
|
5563
|
-
:protocols
|
|
5684
|
+
:protocols,
|
|
5685
|
+
:rni_enhanced_metrics_enabled,
|
|
5686
|
+
:target_name_server_metrics_enabled)
|
|
5564
5687
|
SENSITIVE = []
|
|
5565
5688
|
include Aws::Structure
|
|
5566
5689
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -242,7 +242,9 @@ module Aws
|
|
|
242
242
|
},
|
|
243
243
|
],
|
|
244
244
|
?resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK"),
|
|
245
|
-
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
245
|
+
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")],
|
|
246
|
+
?rni_enhanced_metrics_enabled: bool,
|
|
247
|
+
?target_name_server_metrics_enabled: bool
|
|
246
248
|
) -> _CreateResolverEndpointResponseSuccess
|
|
247
249
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResolverEndpointResponseSuccess
|
|
248
250
|
|
|
@@ -1001,7 +1003,9 @@ module Aws
|
|
|
1001
1003
|
ipv_6: ::String
|
|
1002
1004
|
},
|
|
1003
1005
|
],
|
|
1004
|
-
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
1006
|
+
?protocols: Array[("DoH" | "Do53" | "DoH-FIPS")],
|
|
1007
|
+
?rni_enhanced_metrics_enabled: bool,
|
|
1008
|
+
?target_name_server_metrics_enabled: bool
|
|
1005
1009
|
) -> _UpdateResolverEndpointResponseSuccess
|
|
1006
1010
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResolverEndpointResponseSuccess
|
|
1007
1011
|
|
data/sig/types.rbs
CHANGED
|
@@ -141,6 +141,8 @@ module Aws::Route53Resolver
|
|
|
141
141
|
attr_accessor tags: ::Array[Types::Tag]
|
|
142
142
|
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
|
143
143
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
144
|
+
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
145
|
+
attr_accessor target_name_server_metrics_enabled: bool
|
|
144
146
|
SENSITIVE: []
|
|
145
147
|
end
|
|
146
148
|
|
|
@@ -926,6 +928,8 @@ module Aws::Route53Resolver
|
|
|
926
928
|
attr_accessor preferred_instance_type: ::String
|
|
927
929
|
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
|
928
930
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
931
|
+
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
932
|
+
attr_accessor target_name_server_metrics_enabled: bool
|
|
929
933
|
SENSITIVE: []
|
|
930
934
|
end
|
|
931
935
|
|
|
@@ -1171,6 +1175,8 @@ module Aws::Route53Resolver
|
|
|
1171
1175
|
attr_accessor resolver_endpoint_type: ("IPV6" | "IPV4" | "DUALSTACK")
|
|
1172
1176
|
attr_accessor update_ip_addresses: ::Array[Types::UpdateIpAddress]
|
|
1173
1177
|
attr_accessor protocols: ::Array[("DoH" | "Do53" | "DoH-FIPS")]
|
|
1178
|
+
attr_accessor rni_enhanced_metrics_enabled: bool
|
|
1179
|
+
attr_accessor target_name_server_metrics_enabled: bool
|
|
1174
1180
|
SENSITIVE: []
|
|
1175
1181
|
end
|
|
1176
1182
|
|