aws-sdk-route53resolver 1.51.0 → 1.53.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ece1bf22dbf2ff44e3cb35a57ee43915d5d35066af0bb6ad6d54aad00d4b9d0d
4
- data.tar.gz: 6f98f7dfe1be79dca9502aaed229c5fee5f2df5a858a7b09c3fee3d5d7b84444
3
+ metadata.gz: cf762094376862d0110b6d0e144ecd17bb8a33d07b88cbcd09c5c3a84f1c11c8
4
+ data.tar.gz: 02c2c7071bcaf87a9511f4c3605a89a8bd9b3a454956afff34151890026e0514
5
5
  SHA512:
6
- metadata.gz: 92100a5a81a289577be65ace5a312d37d0c8b07367382aecb0345339568ad685a570c5f3fa6cc69460bb404c08607f0f6f3f6dd737d13af3e8522ad7b5f3dcde
7
- data.tar.gz: aa7384ec4fd5fdc7258d1b051cb39727c10ef3f378deb3bd1fc0338c80f1295d254ecac6c60d3f94d207bc20e90dd075e624b851bad071f2a928ce905bb15e7a
6
+ metadata.gz: 4b6ff0d4b01e1a703751df44c6af54b74a37d539288ce6143713c9482b2ec3864adf462b551bec82884a9c7dcde8281a0f827efbf148eda6fa19942939802899
7
+ data.tar.gz: 63478269e52962ee11d1b08330dbae840590b90c6f1343b1d54360b1310b03d63f29c9b63e2890f74678777c5f465afba23ba73f35947670c0be661d21381a3e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2024-01-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for query type configuration on firewall rules that enables customers for granular action (ALLOW, ALERT, BLOCK) by DNS query type.
8
+
9
+ 1.52.0 (2023-12-18)
10
+ ------------------
11
+
12
+ * Feature - Add DOH protocols in resolver endpoints.
13
+
4
14
  1.51.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.53.0
@@ -541,9 +541,11 @@ module Aws::Route53Resolver
541
541
  # resp.resolver_endpoint.status_message #=> String
542
542
  # resp.resolver_endpoint.creation_time #=> String
543
543
  # resp.resolver_endpoint.modification_time #=> String
544
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
545
544
  # resp.resolver_endpoint.outpost_arn #=> String
546
545
  # resp.resolver_endpoint.preferred_instance_type #=> String
546
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
547
+ # resp.resolver_endpoint.protocols #=> Array
548
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
547
549
  #
548
550
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/AssociateResolverEndpointIpAddress AWS API Documentation
549
551
  #
@@ -811,6 +813,37 @@ module Aws::Route53Resolver
811
813
  # @option params [required, String] :name
812
814
  # A name that lets you identify the rule in the rule group.
813
815
  #
816
+ # @option params [String] :qtype
817
+ # The DNS query type you want the rule to evaluate. Allowed values are;
818
+ #
819
+ # * A: Returns an IPv4 address.
820
+ #
821
+ # * AAAA: Returns an Ipv6 address.
822
+ #
823
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
824
+ # domain.
825
+ #
826
+ # * CNAME: Returns another domain name.
827
+ #
828
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
829
+ # zone.
830
+ #
831
+ # * MX: Specifies mail servers.
832
+ #
833
+ # * NAPTR: Regular-expression-based rewriting of domain names.
834
+ #
835
+ # * NS: Authoritative name servers.
836
+ #
837
+ # * PTR: Maps an IP address to a domain name.
838
+ #
839
+ # * SOA: Start of authority record for the zone.
840
+ #
841
+ # * SPF: Lists the servers authorized to send emails from a domain.
842
+ #
843
+ # * SRV: Application specific values that identify servers.
844
+ #
845
+ # * TXT: Verifies email senders and application-specific values.
846
+ #
814
847
  # @return [Types::CreateFirewallRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
815
848
  #
816
849
  # * {Types::CreateFirewallRuleResponse#firewall_rule #firewall_rule} => Types::FirewallRule
@@ -828,6 +861,7 @@ module Aws::Route53Resolver
828
861
  # block_override_dns_type: "CNAME", # accepts CNAME
829
862
  # block_override_ttl: 1,
830
863
  # name: "Name", # required
864
+ # qtype: "Qtype",
831
865
  # })
832
866
  #
833
867
  # @example Response structure
@@ -844,6 +878,7 @@ module Aws::Route53Resolver
844
878
  # resp.firewall_rule.creator_request_id #=> String
845
879
  # resp.firewall_rule.creation_time #=> String
846
880
  # resp.firewall_rule.modification_time #=> String
881
+ # resp.firewall_rule.qtype #=> String
847
882
  #
848
883
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateFirewallRule AWS API Documentation
849
884
  #
@@ -913,7 +948,7 @@ module Aws::Route53Resolver
913
948
  req.send_request(options)
914
949
  end
915
950
 
916
- # Creates an Route 53 Resolver on an Outpost.
951
+ # Creates a Route 53 Resolver on an Outpost.
917
952
  #
918
953
  # @option params [required, String] :creator_request_id
919
954
  # A unique string that identifies the request and that allows failed
@@ -1027,6 +1062,19 @@ module Aws::Route53Resolver
1027
1062
  # from (for outbound endpoints) or that you forward DNS queries to (for
1028
1063
  # inbound endpoints). The subnet ID uniquely identifies a VPC.
1029
1064
  #
1065
+ # <note markdown="1"> Even though the minimum is 1, Route 53 requires that you create at
1066
+ # least two.
1067
+ #
1068
+ # </note>
1069
+ #
1070
+ # @option params [String] :outpost_arn
1071
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
1072
+ # you must also specify a value for the `PreferredInstanceType`.
1073
+ #
1074
+ # @option params [String] :preferred_instance_type
1075
+ # The instance type. If you specify this, you must also specify a value
1076
+ # for the `OutpostArn`.
1077
+ #
1030
1078
  # @option params [Array<Types::Tag>] :tags
1031
1079
  # A list of the tag keys and values that you want to associate with the
1032
1080
  # endpoint.
@@ -1036,13 +1084,33 @@ module Aws::Route53Resolver
1036
1084
  # A dual-stack endpoint means that it will resolve via both IPv4 and
1037
1085
  # IPv6. This endpoint type is applied to all IP addresses.
1038
1086
  #
1039
- # @option params [String] :outpost_arn
1040
- # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
1041
- # you must also specify a value for the `PreferredInstanceType`.
1087
+ # @option params [Array<String>] :protocols
1088
+ # The protocols you want to use for the endpoint. DoH-FIPS is applicable
1089
+ # for inbound endpoints only.
1042
1090
  #
1043
- # @option params [String] :preferred_instance_type
1044
- # The instance type. If you specify this, you must also specify a value
1045
- # for the `OutpostArn`.
1091
+ # For an inbound endpoint you can apply the protocols as follows:
1092
+ #
1093
+ # * Do53 and DoH in combination.
1094
+ #
1095
+ # * Do53 and DoH-FIPS in combination.
1096
+ #
1097
+ # * Do53 alone.
1098
+ #
1099
+ # * DoH alone.
1100
+ #
1101
+ # * DoH-FIPS alone.
1102
+ #
1103
+ # * None, which is treated as Do53.
1104
+ #
1105
+ # For an outbound endpoint you can apply the protocols as follows:
1106
+ #
1107
+ # * Do53 and DoH in combination.
1108
+ #
1109
+ # * Do53 alone.
1110
+ #
1111
+ # * DoH alone.
1112
+ #
1113
+ # * None, which is treated as Do53.
1046
1114
  #
1047
1115
  # @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1048
1116
  #
@@ -1062,6 +1130,8 @@ module Aws::Route53Resolver
1062
1130
  # ipv_6: "Ipv6",
1063
1131
  # },
1064
1132
  # ],
1133
+ # outpost_arn: "OutpostArn",
1134
+ # preferred_instance_type: "OutpostInstanceType",
1065
1135
  # tags: [
1066
1136
  # {
1067
1137
  # key: "TagKey", # required
@@ -1069,8 +1139,7 @@ module Aws::Route53Resolver
1069
1139
  # },
1070
1140
  # ],
1071
1141
  # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
1072
- # outpost_arn: "OutpostArn",
1073
- # preferred_instance_type: "OutpostInstanceType",
1142
+ # protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
1074
1143
  # })
1075
1144
  #
1076
1145
  # @example Response structure
@@ -1088,9 +1157,11 @@ module Aws::Route53Resolver
1088
1157
  # resp.resolver_endpoint.status_message #=> String
1089
1158
  # resp.resolver_endpoint.creation_time #=> String
1090
1159
  # resp.resolver_endpoint.modification_time #=> String
1091
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1092
1160
  # resp.resolver_endpoint.outpost_arn #=> String
1093
1161
  # resp.resolver_endpoint.preferred_instance_type #=> String
1162
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1163
+ # resp.resolver_endpoint.protocols #=> Array
1164
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1094
1165
  #
1095
1166
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
1096
1167
  #
@@ -1230,7 +1301,7 @@ module Aws::Route53Resolver
1230
1301
  # Currently, only Resolver can create rules that have a value of
1231
1302
  # `RECURSIVE` for `RuleType`.
1232
1303
  #
1233
- # @option params [required, String] :domain_name
1304
+ # @option params [String] :domain_name
1234
1305
  # DNS queries for this domain name are forwarded to the IP addresses
1235
1306
  # that you specify in `TargetIps`. If a query matches multiple Resolver
1236
1307
  # rules (example.com and www.example.com), outbound DNS queries are
@@ -1263,12 +1334,13 @@ module Aws::Route53Resolver
1263
1334
  # creator_request_id: "CreatorRequestId", # required
1264
1335
  # name: "Name",
1265
1336
  # rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE
1266
- # domain_name: "DomainName", # required
1337
+ # domain_name: "DomainName",
1267
1338
  # target_ips: [
1268
1339
  # {
1269
1340
  # ip: "Ip",
1270
1341
  # port: 1,
1271
1342
  # ipv_6: "Ipv6",
1343
+ # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
1272
1344
  # },
1273
1345
  # ],
1274
1346
  # resolver_endpoint_id: "ResourceId",
@@ -1294,6 +1366,7 @@ module Aws::Route53Resolver
1294
1366
  # resp.resolver_rule.target_ips[0].ip #=> String
1295
1367
  # resp.resolver_rule.target_ips[0].port #=> Integer
1296
1368
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1369
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1297
1370
  # resp.resolver_rule.resolver_endpoint_id #=> String
1298
1371
  # resp.resolver_rule.owner_id #=> String
1299
1372
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1355,6 +1428,38 @@ module Aws::Route53Resolver
1355
1428
  # @option params [required, String] :firewall_domain_list_id
1356
1429
  # The ID of the domain list that's used in the rule.
1357
1430
  #
1431
+ # @option params [String] :qtype
1432
+ # The DNS query type that the rule you are deleting evaluates. Allowed
1433
+ # values are;
1434
+ #
1435
+ # * A: Returns an IPv4 address.
1436
+ #
1437
+ # * AAAA: Returns an Ipv6 address.
1438
+ #
1439
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
1440
+ # domain.
1441
+ #
1442
+ # * CNAME: Returns another domain name.
1443
+ #
1444
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
1445
+ # zone.
1446
+ #
1447
+ # * MX: Specifies mail servers.
1448
+ #
1449
+ # * NAPTR: Regular-expression-based rewriting of domain names.
1450
+ #
1451
+ # * NS: Authoritative name servers.
1452
+ #
1453
+ # * PTR: Maps an IP address to a domain name.
1454
+ #
1455
+ # * SOA: Start of authority record for the zone.
1456
+ #
1457
+ # * SPF: Lists the servers authorized to send emails from a domain.
1458
+ #
1459
+ # * SRV: Application specific values that identify servers.
1460
+ #
1461
+ # * TXT: Verifies email senders and application-specific values.
1462
+ #
1358
1463
  # @return [Types::DeleteFirewallRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1359
1464
  #
1360
1465
  # * {Types::DeleteFirewallRuleResponse#firewall_rule #firewall_rule} => Types::FirewallRule
@@ -1364,6 +1469,7 @@ module Aws::Route53Resolver
1364
1469
  # resp = client.delete_firewall_rule({
1365
1470
  # firewall_rule_group_id: "ResourceId", # required
1366
1471
  # firewall_domain_list_id: "ResourceId", # required
1472
+ # qtype: "Qtype",
1367
1473
  # })
1368
1474
  #
1369
1475
  # @example Response structure
@@ -1380,6 +1486,7 @@ module Aws::Route53Resolver
1380
1486
  # resp.firewall_rule.creator_request_id #=> String
1381
1487
  # resp.firewall_rule.creation_time #=> String
1382
1488
  # resp.firewall_rule.modification_time #=> String
1489
+ # resp.firewall_rule.qtype #=> String
1383
1490
  #
1384
1491
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteFirewallRule AWS API Documentation
1385
1492
  #
@@ -1505,9 +1612,11 @@ module Aws::Route53Resolver
1505
1612
  # resp.resolver_endpoint.status_message #=> String
1506
1613
  # resp.resolver_endpoint.creation_time #=> String
1507
1614
  # resp.resolver_endpoint.modification_time #=> String
1508
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1509
1615
  # resp.resolver_endpoint.outpost_arn #=> String
1510
1616
  # resp.resolver_endpoint.preferred_instance_type #=> String
1617
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1618
+ # resp.resolver_endpoint.protocols #=> Array
1619
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1511
1620
  #
1512
1621
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
1513
1622
  #
@@ -1612,6 +1721,7 @@ module Aws::Route53Resolver
1612
1721
  # resp.resolver_rule.target_ips[0].ip #=> String
1613
1722
  # resp.resolver_rule.target_ips[0].port #=> Integer
1614
1723
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1724
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1615
1725
  # resp.resolver_rule.resolver_endpoint_id #=> String
1616
1726
  # resp.resolver_rule.owner_id #=> String
1617
1727
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1717,9 +1827,11 @@ module Aws::Route53Resolver
1717
1827
  # resp.resolver_endpoint.status_message #=> String
1718
1828
  # resp.resolver_endpoint.creation_time #=> String
1719
1829
  # resp.resolver_endpoint.modification_time #=> String
1720
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1721
1830
  # resp.resolver_endpoint.outpost_arn #=> String
1722
1831
  # resp.resolver_endpoint.preferred_instance_type #=> String
1832
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1833
+ # resp.resolver_endpoint.protocols #=> Array
1834
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1723
1835
  #
1724
1836
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
1725
1837
  #
@@ -2145,9 +2257,11 @@ module Aws::Route53Resolver
2145
2257
  # resp.resolver_endpoint.status_message #=> String
2146
2258
  # resp.resolver_endpoint.creation_time #=> String
2147
2259
  # resp.resolver_endpoint.modification_time #=> String
2148
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2149
2260
  # resp.resolver_endpoint.outpost_arn #=> String
2150
2261
  # resp.resolver_endpoint.preferred_instance_type #=> String
2262
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2263
+ # resp.resolver_endpoint.protocols #=> Array
2264
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
2151
2265
  #
2152
2266
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
2153
2267
  #
@@ -2298,6 +2412,7 @@ module Aws::Route53Resolver
2298
2412
  # resp.resolver_rule.target_ips[0].ip #=> String
2299
2413
  # resp.resolver_rule.target_ips[0].port #=> Integer
2300
2414
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
2415
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
2301
2416
  # resp.resolver_rule.resolver_endpoint_id #=> String
2302
2417
  # resp.resolver_rule.owner_id #=> String
2303
2418
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -2851,6 +2966,7 @@ module Aws::Route53Resolver
2851
2966
  # resp.firewall_rules[0].creator_request_id #=> String
2852
2967
  # resp.firewall_rules[0].creation_time #=> String
2853
2968
  # resp.firewall_rules[0].modification_time #=> String
2969
+ # resp.firewall_rules[0].qtype #=> String
2854
2970
  #
2855
2971
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListFirewallRules AWS API Documentation
2856
2972
  #
@@ -3155,9 +3271,11 @@ module Aws::Route53Resolver
3155
3271
  # resp.resolver_endpoints[0].status_message #=> String
3156
3272
  # resp.resolver_endpoints[0].creation_time #=> String
3157
3273
  # resp.resolver_endpoints[0].modification_time #=> String
3158
- # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3159
3274
  # resp.resolver_endpoints[0].outpost_arn #=> String
3160
3275
  # resp.resolver_endpoints[0].preferred_instance_type #=> String
3276
+ # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3277
+ # resp.resolver_endpoints[0].protocols #=> Array
3278
+ # resp.resolver_endpoints[0].protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
3161
3279
  #
3162
3280
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
3163
3281
  #
@@ -3589,6 +3707,7 @@ module Aws::Route53Resolver
3589
3707
  # resp.resolver_rules[0].target_ips[0].ip #=> String
3590
3708
  # resp.resolver_rules[0].target_ips[0].port #=> Integer
3591
3709
  # resp.resolver_rules[0].target_ips[0].ipv_6 #=> String
3710
+ # resp.resolver_rules[0].target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
3592
3711
  # resp.resolver_rules[0].resolver_endpoint_id #=> String
3593
3712
  # resp.resolver_rules[0].owner_id #=> String
3594
3713
  # resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4073,6 +4192,37 @@ module Aws::Route53Resolver
4073
4192
  # @option params [String] :name
4074
4193
  # The name of the rule.
4075
4194
  #
4195
+ # @option params [String] :qtype
4196
+ # The DNS query type you want the rule to evaluate. Allowed values are;
4197
+ #
4198
+ # * A: Returns an IPv4 address.
4199
+ #
4200
+ # * AAAA: Returns an Ipv6 address.
4201
+ #
4202
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
4203
+ # domain.
4204
+ #
4205
+ # * CNAME: Returns another domain name.
4206
+ #
4207
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
4208
+ # zone.
4209
+ #
4210
+ # * MX: Specifies mail servers.
4211
+ #
4212
+ # * NAPTR: Regular-expression-based rewriting of domain names.
4213
+ #
4214
+ # * NS: Authoritative name servers.
4215
+ #
4216
+ # * PTR: Maps an IP address to a domain name.
4217
+ #
4218
+ # * SOA: Start of authority record for the zone.
4219
+ #
4220
+ # * SPF: Lists the servers authorized to send emails from a domain.
4221
+ #
4222
+ # * SRV: Application specific values that identify servers.
4223
+ #
4224
+ # * TXT: Verifies email senders and application-specific values.
4225
+ #
4076
4226
  # @return [Types::UpdateFirewallRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4077
4227
  #
4078
4228
  # * {Types::UpdateFirewallRuleResponse#firewall_rule #firewall_rule} => Types::FirewallRule
@@ -4089,6 +4239,7 @@ module Aws::Route53Resolver
4089
4239
  # block_override_dns_type: "CNAME", # accepts CNAME
4090
4240
  # block_override_ttl: 1,
4091
4241
  # name: "Name",
4242
+ # qtype: "Qtype",
4092
4243
  # })
4093
4244
  #
4094
4245
  # @example Response structure
@@ -4105,6 +4256,7 @@ module Aws::Route53Resolver
4105
4256
  # resp.firewall_rule.creator_request_id #=> String
4106
4257
  # resp.firewall_rule.creation_time #=> String
4107
4258
  # resp.firewall_rule.modification_time #=> String
4259
+ # resp.firewall_rule.qtype #=> String
4108
4260
  #
4109
4261
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateFirewallRule AWS API Documentation
4110
4262
  #
@@ -4326,7 +4478,7 @@ module Aws::Route53Resolver
4326
4478
  req.send_request(options)
4327
4479
  end
4328
4480
 
4329
- # Updates the name, or enpoint type for an inbound or an outbound
4481
+ # Updates the name, or endpoint type for an inbound or an outbound
4330
4482
  # Resolver endpoint. You can only update between IPV4 and DUALSTACK,
4331
4483
  # IPV6 endpoint type can't be updated to other type.
4332
4484
  #
@@ -4347,6 +4499,42 @@ module Aws::Route53Resolver
4347
4499
  # IPv4 to dual-stack. If you don't specify an IPv6 address, one will be
4348
4500
  # automatically chosen from your subnet.
4349
4501
  #
4502
+ # @option params [Array<String>] :protocols
4503
+ # The protocols you want to use for the endpoint. DoH-FIPS is applicable
4504
+ # for inbound endpoints only.
4505
+ #
4506
+ # For an inbound endpoint you can apply the protocols as follows:
4507
+ #
4508
+ # * Do53 and DoH in combination.
4509
+ #
4510
+ # * Do53 and DoH-FIPS in combination.
4511
+ #
4512
+ # * Do53 alone.
4513
+ #
4514
+ # * DoH alone.
4515
+ #
4516
+ # * DoH-FIPS alone.
4517
+ #
4518
+ # * None, which is treated as Do53.
4519
+ #
4520
+ # For an outbound endpoint you can apply the protocols as follows:
4521
+ #
4522
+ # * Do53 and DoH in combination.
4523
+ #
4524
+ # * Do53 alone.
4525
+ #
4526
+ # * DoH alone.
4527
+ #
4528
+ # * None, which is treated as Do53.
4529
+ #
4530
+ # You can't change the protocol of an inbound endpoint directly from
4531
+ # only Do53 to only DoH, or DoH-FIPS. This is to prevent a sudden
4532
+ # disruption to incoming traffic that relies on Do53. To change the
4533
+ # protocol from Do53 to DoH, or DoH-FIPS, you must first enable both
4534
+ # Do53 and DoH, or Do53 and DoH-FIPS, to make sure that all incoming
4535
+ # traffic has transferred to using the DoH protocol, or DoH-FIPS, and
4536
+ # then remove the Do53.
4537
+ #
4350
4538
  # @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4351
4539
  #
4352
4540
  # * {Types::UpdateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -4363,6 +4551,7 @@ module Aws::Route53Resolver
4363
4551
  # ipv_6: "Ipv6", # required
4364
4552
  # },
4365
4553
  # ],
4554
+ # protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
4366
4555
  # })
4367
4556
  #
4368
4557
  # @example Response structure
@@ -4380,9 +4569,11 @@ module Aws::Route53Resolver
4380
4569
  # resp.resolver_endpoint.status_message #=> String
4381
4570
  # resp.resolver_endpoint.creation_time #=> String
4382
4571
  # resp.resolver_endpoint.modification_time #=> String
4383
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4384
4572
  # resp.resolver_endpoint.outpost_arn #=> String
4385
4573
  # resp.resolver_endpoint.preferred_instance_type #=> String
4574
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4575
+ # resp.resolver_endpoint.protocols #=> Array
4576
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
4386
4577
  #
4387
4578
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
4388
4579
  #
@@ -4418,6 +4609,7 @@ module Aws::Route53Resolver
4418
4609
  # ip: "Ip",
4419
4610
  # port: 1,
4420
4611
  # ipv_6: "Ipv6",
4612
+ # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
4421
4613
  # },
4422
4614
  # ],
4423
4615
  # resolver_endpoint_id: "ResourceId",
@@ -4438,6 +4630,7 @@ module Aws::Route53Resolver
4438
4630
  # resp.resolver_rule.target_ips[0].ip #=> String
4439
4631
  # resp.resolver_rule.target_ips[0].port #=> Integer
4440
4632
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
4633
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
4441
4634
  # resp.resolver_rule.resolver_endpoint_id #=> String
4442
4635
  # resp.resolver_rule.owner_id #=> String
4443
4636
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4466,7 +4659,7 @@ module Aws::Route53Resolver
4466
4659
  params: params,
4467
4660
  config: config)
4468
4661
  context[:gem_name] = 'aws-sdk-route53resolver'
4469
- context[:gem_version] = '1.51.0'
4662
+ context[:gem_version] = '1.53.0'
4470
4663
  Seahorse::Client::Request.new(handlers, context)
4471
4664
  end
4472
4665
 
@@ -197,12 +197,15 @@ module Aws::Route53Resolver
197
197
  OutpostResolverStatusMessage = Shapes::StringShape.new(name: 'OutpostResolverStatusMessage')
198
198
  Port = Shapes::IntegerShape.new(name: 'Port')
199
199
  Priority = Shapes::IntegerShape.new(name: 'Priority')
200
+ Protocol = Shapes::StringShape.new(name: 'Protocol')
201
+ ProtocolList = Shapes::ListShape.new(name: 'ProtocolList')
200
202
  PutFirewallRuleGroupPolicyRequest = Shapes::StructureShape.new(name: 'PutFirewallRuleGroupPolicyRequest')
201
203
  PutFirewallRuleGroupPolicyResponse = Shapes::StructureShape.new(name: 'PutFirewallRuleGroupPolicyResponse')
202
204
  PutResolverQueryLogConfigPolicyRequest = Shapes::StructureShape.new(name: 'PutResolverQueryLogConfigPolicyRequest')
203
205
  PutResolverQueryLogConfigPolicyResponse = Shapes::StructureShape.new(name: 'PutResolverQueryLogConfigPolicyResponse')
204
206
  PutResolverRulePolicyRequest = Shapes::StructureShape.new(name: 'PutResolverRulePolicyRequest')
205
207
  PutResolverRulePolicyResponse = Shapes::StructureShape.new(name: 'PutResolverRulePolicyResponse')
208
+ Qtype = Shapes::StringShape.new(name: 'Qtype')
206
209
  ResolverAutodefinedReverseStatus = Shapes::StringShape.new(name: 'ResolverAutodefinedReverseStatus')
207
210
  ResolverConfig = Shapes::StructureShape.new(name: 'ResolverConfig')
208
211
  ResolverConfigList = Shapes::ListShape.new(name: 'ResolverConfigList')
@@ -351,6 +354,7 @@ module Aws::Route53Resolver
351
354
  CreateFirewallRuleRequest.add_member(:block_override_dns_type, Shapes::ShapeRef.new(shape: BlockOverrideDnsType, location_name: "BlockOverrideDnsType", metadata: {"box"=>true}))
352
355
  CreateFirewallRuleRequest.add_member(:block_override_ttl, Shapes::ShapeRef.new(shape: BlockOverrideTtl, location_name: "BlockOverrideTtl", metadata: {"box"=>true}))
353
356
  CreateFirewallRuleRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
357
+ CreateFirewallRuleRequest.add_member(:qtype, Shapes::ShapeRef.new(shape: Qtype, location_name: "Qtype", metadata: {"box"=>true}))
354
358
  CreateFirewallRuleRequest.struct_class = Types::CreateFirewallRuleRequest
355
359
 
356
360
  CreateFirewallRuleResponse.add_member(:firewall_rule, Shapes::ShapeRef.new(shape: FirewallRule, location_name: "FirewallRule"))
@@ -372,10 +376,11 @@ module Aws::Route53Resolver
372
376
  CreateResolverEndpointRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, required: true, location_name: "SecurityGroupIds", metadata: {"box"=>true}))
373
377
  CreateResolverEndpointRequest.add_member(:direction, Shapes::ShapeRef.new(shape: ResolverEndpointDirection, required: true, location_name: "Direction"))
374
378
  CreateResolverEndpointRequest.add_member(:ip_addresses, Shapes::ShapeRef.new(shape: IpAddressesRequest, required: true, location_name: "IpAddresses"))
375
- CreateResolverEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
376
- CreateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box"=>true}))
377
379
  CreateResolverEndpointRequest.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: OutpostArn, location_name: "OutpostArn", metadata: {"box"=>true}))
378
380
  CreateResolverEndpointRequest.add_member(:preferred_instance_type, Shapes::ShapeRef.new(shape: OutpostInstanceType, location_name: "PreferredInstanceType", metadata: {"box"=>true}))
381
+ CreateResolverEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
382
+ CreateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box"=>true}))
383
+ CreateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box"=>true}))
379
384
  CreateResolverEndpointRequest.struct_class = Types::CreateResolverEndpointRequest
380
385
 
381
386
  CreateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
@@ -393,7 +398,7 @@ module Aws::Route53Resolver
393
398
  CreateResolverRuleRequest.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: CreatorRequestId, required: true, location_name: "CreatorRequestId"))
394
399
  CreateResolverRuleRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
395
400
  CreateResolverRuleRequest.add_member(:rule_type, Shapes::ShapeRef.new(shape: RuleTypeOption, required: true, location_name: "RuleType"))
396
- CreateResolverRuleRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
401
+ CreateResolverRuleRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName", metadata: {"box"=>true}))
397
402
  CreateResolverRuleRequest.add_member(:target_ips, Shapes::ShapeRef.new(shape: TargetList, location_name: "TargetIps", metadata: {"box"=>true}))
398
403
  CreateResolverRuleRequest.add_member(:resolver_endpoint_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResolverEndpointId", metadata: {"box"=>true}))
399
404
  CreateResolverRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
@@ -416,6 +421,7 @@ module Aws::Route53Resolver
416
421
 
417
422
  DeleteFirewallRuleRequest.add_member(:firewall_rule_group_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "FirewallRuleGroupId"))
418
423
  DeleteFirewallRuleRequest.add_member(:firewall_domain_list_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "FirewallDomainListId"))
424
+ DeleteFirewallRuleRequest.add_member(:qtype, Shapes::ShapeRef.new(shape: Qtype, location_name: "Qtype"))
419
425
  DeleteFirewallRuleRequest.struct_class = Types::DeleteFirewallRuleRequest
420
426
 
421
427
  DeleteFirewallRuleResponse.add_member(:firewall_rule, Shapes::ShapeRef.new(shape: FirewallRule, location_name: "FirewallRule"))
@@ -523,6 +529,7 @@ module Aws::Route53Resolver
523
529
  FirewallRule.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: CreatorRequestId, location_name: "CreatorRequestId"))
524
530
  FirewallRule.add_member(:creation_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "CreationTime"))
525
531
  FirewallRule.add_member(:modification_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "ModificationTime"))
532
+ FirewallRule.add_member(:qtype, Shapes::ShapeRef.new(shape: Qtype, location_name: "Qtype"))
526
533
  FirewallRule.struct_class = Types::FirewallRule
527
534
 
528
535
  FirewallRuleGroup.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "Id"))
@@ -888,6 +895,8 @@ module Aws::Route53Resolver
888
895
 
889
896
  OutpostResolverList.member = Shapes::ShapeRef.new(shape: OutpostResolver)
890
897
 
898
+ ProtocolList.member = Shapes::ShapeRef.new(shape: Protocol)
899
+
891
900
  PutFirewallRuleGroupPolicyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
892
901
  PutFirewallRuleGroupPolicyRequest.add_member(:firewall_rule_group_policy, Shapes::ShapeRef.new(shape: FirewallRuleGroupPolicy, required: true, location_name: "FirewallRuleGroupPolicy"))
893
902
  PutFirewallRuleGroupPolicyRequest.struct_class = Types::PutFirewallRuleGroupPolicyRequest
@@ -937,9 +946,10 @@ module Aws::Route53Resolver
937
946
  ResolverEndpoint.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
938
947
  ResolverEndpoint.add_member(:creation_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "CreationTime"))
939
948
  ResolverEndpoint.add_member(:modification_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "ModificationTime"))
940
- ResolverEndpoint.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType"))
941
949
  ResolverEndpoint.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: OutpostArn, location_name: "OutpostArn"))
942
950
  ResolverEndpoint.add_member(:preferred_instance_type, Shapes::ShapeRef.new(shape: OutpostInstanceType, location_name: "PreferredInstanceType"))
951
+ ResolverEndpoint.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType"))
952
+ ResolverEndpoint.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
943
953
  ResolverEndpoint.struct_class = Types::ResolverEndpoint
944
954
 
945
955
  ResolverEndpoints.member = Shapes::ShapeRef.new(shape: ResolverEndpoint)
@@ -1040,6 +1050,7 @@ module Aws::Route53Resolver
1040
1050
  TargetAddress.add_member(:ip, Shapes::ShapeRef.new(shape: Ip, location_name: "Ip", metadata: {"box"=>true}))
1041
1051
  TargetAddress.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port", metadata: {"box"=>true}))
1042
1052
  TargetAddress.add_member(:ipv_6, Shapes::ShapeRef.new(shape: Ipv6, location_name: "Ipv6", metadata: {"box"=>true}))
1053
+ TargetAddress.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol", metadata: {"box"=>true}))
1043
1054
  TargetAddress.struct_class = Types::TargetAddress
1044
1055
 
1045
1056
  TargetList.member = Shapes::ShapeRef.new(shape: TargetAddress)
@@ -1092,6 +1103,7 @@ module Aws::Route53Resolver
1092
1103
  UpdateFirewallRuleRequest.add_member(:block_override_dns_type, Shapes::ShapeRef.new(shape: BlockOverrideDnsType, location_name: "BlockOverrideDnsType", metadata: {"box"=>true}))
1093
1104
  UpdateFirewallRuleRequest.add_member(:block_override_ttl, Shapes::ShapeRef.new(shape: BlockOverrideTtl, location_name: "BlockOverrideTtl", metadata: {"box"=>true}))
1094
1105
  UpdateFirewallRuleRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name", metadata: {"box"=>true}))
1106
+ UpdateFirewallRuleRequest.add_member(:qtype, Shapes::ShapeRef.new(shape: Qtype, location_name: "Qtype"))
1095
1107
  UpdateFirewallRuleRequest.struct_class = Types::UpdateFirewallRuleRequest
1096
1108
 
1097
1109
  UpdateFirewallRuleResponse.add_member(:firewall_rule, Shapes::ShapeRef.new(shape: FirewallRule, location_name: "FirewallRule"))
@@ -1130,6 +1142,7 @@ module Aws::Route53Resolver
1130
1142
  UpdateResolverEndpointRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name", metadata: {"box"=>true}))
1131
1143
  UpdateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box"=>true}))
1132
1144
  UpdateResolverEndpointRequest.add_member(:update_ip_addresses, Shapes::ShapeRef.new(shape: UpdateIpAddresses, location_name: "UpdateIpAddresses", metadata: {"box"=>true}))
1145
+ UpdateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box"=>true}))
1133
1146
  UpdateResolverEndpointRequest.struct_class = Types::UpdateResolverEndpointRequest
1134
1147
 
1135
1148
  UpdateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
@@ -1290,6 +1303,7 @@ module Aws::Route53Resolver
1290
1303
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1291
1304
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1292
1305
  o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
1306
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1293
1307
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1294
1308
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
1295
1309
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -1324,6 +1338,7 @@ module Aws::Route53Resolver
1324
1338
  o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
1325
1339
  o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
1326
1340
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
1341
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1327
1342
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1328
1343
  end)
1329
1344
 
@@ -2166,6 +2181,7 @@ module Aws::Route53Resolver
2166
2181
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2167
2182
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2168
2183
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2184
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2169
2185
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
2170
2186
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2171
2187
  end)
@@ -2183,6 +2199,7 @@ module Aws::Route53Resolver
2183
2199
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2184
2200
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
2185
2201
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2202
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2186
2203
  end)
2187
2204
  end
2188
2205
 
@@ -32,7 +32,7 @@ module Aws::Route53Resolver
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  if Aws::Endpoints::Matchers.string_equals?(region, "us-gov-east-1")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://route53resolver.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
38
38
  end
@@ -401,6 +401,39 @@ module Aws::Route53Resolver
401
401
  # A name that lets you identify the rule in the rule group.
402
402
  # @return [String]
403
403
  #
404
+ # @!attribute [rw] qtype
405
+ # The DNS query type you want the rule to evaluate. Allowed values
406
+ # are;
407
+ #
408
+ # * A: Returns an IPv4 address.
409
+ #
410
+ # * AAAA: Returns an Ipv6 address.
411
+ #
412
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
413
+ # domain.
414
+ #
415
+ # * CNAME: Returns another domain name.
416
+ #
417
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
418
+ # zone.
419
+ #
420
+ # * MX: Specifies mail servers.
421
+ #
422
+ # * NAPTR: Regular-expression-based rewriting of domain names.
423
+ #
424
+ # * NS: Authoritative name servers.
425
+ #
426
+ # * PTR: Maps an IP address to a domain name.
427
+ #
428
+ # * SOA: Start of authority record for the zone.
429
+ #
430
+ # * SPF: Lists the servers authorized to send emails from a domain.
431
+ #
432
+ # * SRV: Application specific values that identify servers.
433
+ #
434
+ # * TXT: Verifies email senders and application-specific values.
435
+ # @return [String]
436
+ #
404
437
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateFirewallRuleRequest AWS API Documentation
405
438
  #
406
439
  class CreateFirewallRuleRequest < Struct.new(
@@ -413,7 +446,8 @@ module Aws::Route53Resolver
413
446
  :block_override_domain,
414
447
  :block_override_dns_type,
415
448
  :block_override_ttl,
416
- :name)
449
+ :name,
450
+ :qtype)
417
451
  SENSITIVE = []
418
452
  include Aws::Structure
419
453
  end
@@ -525,8 +559,23 @@ module Aws::Route53Resolver
525
559
  # The subnets and IP addresses in your VPC that DNS queries originate
526
560
  # from (for outbound endpoints) or that you forward DNS queries to
527
561
  # (for inbound endpoints). The subnet ID uniquely identifies a VPC.
562
+ #
563
+ # <note markdown="1"> Even though the minimum is 1, Route 53 requires that you create at
564
+ # least two.
565
+ #
566
+ # </note>
528
567
  # @return [Array<Types::IpAddressRequest>]
529
568
  #
569
+ # @!attribute [rw] outpost_arn
570
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
571
+ # you must also specify a value for the `PreferredInstanceType`.
572
+ # @return [String]
573
+ #
574
+ # @!attribute [rw] preferred_instance_type
575
+ # The instance type. If you specify this, you must also specify a
576
+ # value for the `OutpostArn`.
577
+ # @return [String]
578
+ #
530
579
  # @!attribute [rw] tags
531
580
  # A list of the tag keys and values that you want to associate with
532
581
  # the endpoint.
@@ -539,15 +588,34 @@ module Aws::Route53Resolver
539
588
  # addresses.
540
589
  # @return [String]
541
590
  #
542
- # @!attribute [rw] outpost_arn
543
- # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
544
- # you must also specify a value for the `PreferredInstanceType`.
545
- # @return [String]
591
+ # @!attribute [rw] protocols
592
+ # The protocols you want to use for the endpoint. DoH-FIPS is
593
+ # applicable for inbound endpoints only.
546
594
  #
547
- # @!attribute [rw] preferred_instance_type
548
- # The instance type. If you specify this, you must also specify a
549
- # value for the `OutpostArn`.
550
- # @return [String]
595
+ # For an inbound endpoint you can apply the protocols as follows:
596
+ #
597
+ # * Do53 and DoH in combination.
598
+ #
599
+ # * Do53 and DoH-FIPS in combination.
600
+ #
601
+ # * Do53 alone.
602
+ #
603
+ # * DoH alone.
604
+ #
605
+ # * DoH-FIPS alone.
606
+ #
607
+ # * None, which is treated as Do53.
608
+ #
609
+ # For an outbound endpoint you can apply the protocols as follows:
610
+ #
611
+ # * Do53 and DoH in combination.
612
+ #
613
+ # * Do53 alone.
614
+ #
615
+ # * DoH alone.
616
+ #
617
+ # * None, which is treated as Do53.
618
+ # @return [Array<String>]
551
619
  #
552
620
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
553
621
  #
@@ -557,10 +625,11 @@ module Aws::Route53Resolver
557
625
  :security_group_ids,
558
626
  :direction,
559
627
  :ip_addresses,
628
+ :outpost_arn,
629
+ :preferred_instance_type,
560
630
  :tags,
561
631
  :resolver_endpoint_type,
562
- :outpost_arn,
563
- :preferred_instance_type)
632
+ :protocols)
564
633
  SENSITIVE = []
565
634
  include Aws::Structure
566
635
  end
@@ -787,11 +856,45 @@ module Aws::Route53Resolver
787
856
  # The ID of the domain list that's used in the rule.
788
857
  # @return [String]
789
858
  #
859
+ # @!attribute [rw] qtype
860
+ # The DNS query type that the rule you are deleting evaluates. Allowed
861
+ # values are;
862
+ #
863
+ # * A: Returns an IPv4 address.
864
+ #
865
+ # * AAAA: Returns an Ipv6 address.
866
+ #
867
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
868
+ # domain.
869
+ #
870
+ # * CNAME: Returns another domain name.
871
+ #
872
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
873
+ # zone.
874
+ #
875
+ # * MX: Specifies mail servers.
876
+ #
877
+ # * NAPTR: Regular-expression-based rewriting of domain names.
878
+ #
879
+ # * NS: Authoritative name servers.
880
+ #
881
+ # * PTR: Maps an IP address to a domain name.
882
+ #
883
+ # * SOA: Start of authority record for the zone.
884
+ #
885
+ # * SPF: Lists the servers authorized to send emails from a domain.
886
+ #
887
+ # * SRV: Application specific values that identify servers.
888
+ #
889
+ # * TXT: Verifies email senders and application-specific values.
890
+ # @return [String]
891
+ #
790
892
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteFirewallRuleRequest AWS API Documentation
791
893
  #
792
894
  class DeleteFirewallRuleRequest < Struct.new(
793
895
  :firewall_rule_group_id,
794
- :firewall_domain_list_id)
896
+ :firewall_domain_list_id,
897
+ :qtype)
795
898
  SENSITIVE = []
796
899
  include Aws::Structure
797
900
  end
@@ -1492,6 +1595,39 @@ module Aws::Route53Resolver
1492
1595
  # format and Coordinated Universal Time (UTC).
1493
1596
  # @return [String]
1494
1597
  #
1598
+ # @!attribute [rw] qtype
1599
+ # The DNS query type you want the rule to evaluate. Allowed values
1600
+ # are;
1601
+ #
1602
+ # * A: Returns an IPv4 address.
1603
+ #
1604
+ # * AAAA: Returns an Ipv6 address.
1605
+ #
1606
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
1607
+ # domain.
1608
+ #
1609
+ # * CNAME: Returns another domain name.
1610
+ #
1611
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
1612
+ # zone.
1613
+ #
1614
+ # * MX: Specifies mail servers.
1615
+ #
1616
+ # * NAPTR: Regular-expression-based rewriting of domain names.
1617
+ #
1618
+ # * NS: Authoritative name servers.
1619
+ #
1620
+ # * PTR: Maps an IP address to a domain name.
1621
+ #
1622
+ # * SOA: Start of authority record for the zone.
1623
+ #
1624
+ # * SPF: Lists the servers authorized to send emails from a domain.
1625
+ #
1626
+ # * SRV: Application specific values that identify servers.
1627
+ #
1628
+ # * TXT: Verifies email senders and application-specific values.
1629
+ # @return [String]
1630
+ #
1495
1631
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/FirewallRule AWS API Documentation
1496
1632
  #
1497
1633
  class FirewallRule < Struct.new(
@@ -1506,7 +1642,8 @@ module Aws::Route53Resolver
1506
1642
  :block_override_ttl,
1507
1643
  :creator_request_id,
1508
1644
  :creation_time,
1509
- :modification_time)
1645
+ :modification_time,
1646
+ :qtype)
1510
1647
  SENSITIVE = []
1511
1648
  include Aws::Structure
1512
1649
  end
@@ -2933,7 +3070,8 @@ module Aws::Route53Resolver
2933
3070
  # @!attribute [rw] resolver_dnssec_configs
2934
3071
  # An array that contains one [ResolverDnssecConfig][1] element for
2935
3072
  # each configuration for DNSSEC validation that is associated with the
2936
- # current Amazon Web Services account.
3073
+ # current Amazon Web Services account. It doesn't contain disabled
3074
+ # DNSSEC configurations for the resource.
2937
3075
  #
2938
3076
  #
2939
3077
  #
@@ -3957,10 +4095,6 @@ module Aws::Route53Resolver
3957
4095
  # format and Coordinated Universal Time (UTC).
3958
4096
  # @return [String]
3959
4097
  #
3960
- # @!attribute [rw] resolver_endpoint_type
3961
- # The Resolver endpoint IP address type.
3962
- # @return [String]
3963
- #
3964
4098
  # @!attribute [rw] outpost_arn
3965
4099
  # The ARN (Amazon Resource Name) for the Outpost.
3966
4100
  # @return [String]
@@ -3969,6 +4103,39 @@ module Aws::Route53Resolver
3969
4103
  # The Amazon EC2 instance type.
3970
4104
  # @return [String]
3971
4105
  #
4106
+ # @!attribute [rw] resolver_endpoint_type
4107
+ # The Resolver endpoint IP address type.
4108
+ # @return [String]
4109
+ #
4110
+ # @!attribute [rw] protocols
4111
+ # Protocols used for the endpoint. DoH-FIPS is applicable for inbound
4112
+ # endpoints only.
4113
+ #
4114
+ # For an inbound endpoint you can apply the protocols as follows:
4115
+ #
4116
+ # * Do53 and DoH in combination.
4117
+ #
4118
+ # * Do53 and DoH-FIPS in combination.
4119
+ #
4120
+ # * Do53 alone.
4121
+ #
4122
+ # * DoH alone.
4123
+ #
4124
+ # * DoH-FIPS alone.
4125
+ #
4126
+ # * None, which is treated as Do53.
4127
+ #
4128
+ # For an outbound endpoint you can apply the protocols as follows:
4129
+ #
4130
+ # * Do53 and DoH in combination.
4131
+ #
4132
+ # * Do53 alone.
4133
+ #
4134
+ # * DoH alone.
4135
+ #
4136
+ # * None, which is treated as Do53.
4137
+ # @return [Array<String>]
4138
+ #
3972
4139
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
3973
4140
  #
3974
4141
  class ResolverEndpoint < Struct.new(
@@ -3984,9 +4151,10 @@ module Aws::Route53Resolver
3984
4151
  :status_message,
3985
4152
  :creation_time,
3986
4153
  :modification_time,
3987
- :resolver_endpoint_type,
3988
4154
  :outpost_arn,
3989
- :preferred_instance_type)
4155
+ :preferred_instance_type,
4156
+ :resolver_endpoint_type,
4157
+ :protocols)
3990
4158
  SENSITIVE = []
3991
4159
  include Aws::Structure
3992
4160
  end
@@ -4562,12 +4730,42 @@ module Aws::Route53Resolver
4562
4730
  # One IPv6 address that you want to forward DNS queries to.
4563
4731
  # @return [String]
4564
4732
  #
4733
+ # @!attribute [rw] protocol
4734
+ # The protocols for the Resolver endpoints. DoH-FIPS is applicable for
4735
+ # inbound endpoints only.
4736
+ #
4737
+ # For an inbound endpoint you can apply the protocols as follows:
4738
+ #
4739
+ # * Do53 and DoH in combination.
4740
+ #
4741
+ # * Do53 and DoH-FIPS in combination.
4742
+ #
4743
+ # * Do53 alone.
4744
+ #
4745
+ # * DoH alone.
4746
+ #
4747
+ # * DoH-FIPS alone.
4748
+ #
4749
+ # * None, which is treated as Do53.
4750
+ #
4751
+ # For an outbound endpoint you can apply the protocols as follows:
4752
+ #
4753
+ # * Do53 and DoH in combination.
4754
+ #
4755
+ # * Do53 alone.
4756
+ #
4757
+ # * DoH alone.
4758
+ #
4759
+ # * None, which is treated as Do53.
4760
+ # @return [String]
4761
+ #
4565
4762
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/TargetAddress AWS API Documentation
4566
4763
  #
4567
4764
  class TargetAddress < Struct.new(
4568
4765
  :ip,
4569
4766
  :port,
4570
- :ipv_6)
4767
+ :ipv_6,
4768
+ :protocol)
4571
4769
  SENSITIVE = []
4572
4770
  include Aws::Structure
4573
4771
  end
@@ -4876,6 +5074,39 @@ module Aws::Route53Resolver
4876
5074
  # The name of the rule.
4877
5075
  # @return [String]
4878
5076
  #
5077
+ # @!attribute [rw] qtype
5078
+ # The DNS query type you want the rule to evaluate. Allowed values
5079
+ # are;
5080
+ #
5081
+ # * A: Returns an IPv4 address.
5082
+ #
5083
+ # * AAAA: Returns an Ipv6 address.
5084
+ #
5085
+ # * CAA: Restricts CAs that can create SSL/TLS certifications for the
5086
+ # domain.
5087
+ #
5088
+ # * CNAME: Returns another domain name.
5089
+ #
5090
+ # * DS: Record that identifies the DNSSEC signing key of a delegated
5091
+ # zone.
5092
+ #
5093
+ # * MX: Specifies mail servers.
5094
+ #
5095
+ # * NAPTR: Regular-expression-based rewriting of domain names.
5096
+ #
5097
+ # * NS: Authoritative name servers.
5098
+ #
5099
+ # * PTR: Maps an IP address to a domain name.
5100
+ #
5101
+ # * SOA: Start of authority record for the zone.
5102
+ #
5103
+ # * SPF: Lists the servers authorized to send emails from a domain.
5104
+ #
5105
+ # * SRV: Application specific values that identify servers.
5106
+ #
5107
+ # * TXT: Verifies email senders and application-specific values.
5108
+ # @return [String]
5109
+ #
4879
5110
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateFirewallRuleRequest AWS API Documentation
4880
5111
  #
4881
5112
  class UpdateFirewallRuleRequest < Struct.new(
@@ -4887,7 +5118,8 @@ module Aws::Route53Resolver
4887
5118
  :block_override_domain,
4888
5119
  :block_override_dns_type,
4889
5120
  :block_override_ttl,
4890
- :name)
5121
+ :name,
5122
+ :qtype)
4891
5123
  SENSITIVE = []
4892
5124
  include Aws::Structure
4893
5125
  end
@@ -5073,13 +5305,51 @@ module Aws::Route53Resolver
5073
5305
  # will be automatically chosen from your subnet.
5074
5306
  # @return [Array<Types::UpdateIpAddress>]
5075
5307
  #
5308
+ # @!attribute [rw] protocols
5309
+ # The protocols you want to use for the endpoint. DoH-FIPS is
5310
+ # applicable for inbound endpoints only.
5311
+ #
5312
+ # For an inbound endpoint you can apply the protocols as follows:
5313
+ #
5314
+ # * Do53 and DoH in combination.
5315
+ #
5316
+ # * Do53 and DoH-FIPS in combination.
5317
+ #
5318
+ # * Do53 alone.
5319
+ #
5320
+ # * DoH alone.
5321
+ #
5322
+ # * DoH-FIPS alone.
5323
+ #
5324
+ # * None, which is treated as Do53.
5325
+ #
5326
+ # For an outbound endpoint you can apply the protocols as follows:
5327
+ #
5328
+ # * Do53 and DoH in combination.
5329
+ #
5330
+ # * Do53 alone.
5331
+ #
5332
+ # * DoH alone.
5333
+ #
5334
+ # * None, which is treated as Do53.
5335
+ #
5336
+ # You can't change the protocol of an inbound endpoint directly from
5337
+ # only Do53 to only DoH, or DoH-FIPS. This is to prevent a sudden
5338
+ # disruption to incoming traffic that relies on Do53. To change the
5339
+ # protocol from Do53 to DoH, or DoH-FIPS, you must first enable both
5340
+ # Do53 and DoH, or Do53 and DoH-FIPS, to make sure that all incoming
5341
+ # traffic has transferred to using the DoH protocol, or DoH-FIPS, and
5342
+ # then remove the Do53.
5343
+ # @return [Array<String>]
5344
+ #
5076
5345
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
5077
5346
  #
5078
5347
  class UpdateResolverEndpointRequest < Struct.new(
5079
5348
  :resolver_endpoint_id,
5080
5349
  :name,
5081
5350
  :resolver_endpoint_type,
5082
- :update_ip_addresses)
5351
+ :update_ip_addresses,
5352
+ :protocols)
5083
5353
  SENSITIVE = []
5084
5354
  include Aws::Structure
5085
5355
  end
@@ -5125,8 +5395,9 @@ module Aws::Route53Resolver
5125
5395
  include Aws::Structure
5126
5396
  end
5127
5397
 
5128
- # You have provided an invalid command. Supported values are `ADD`,
5129
- # `REMOVE`, or `REPLACE` a domain.
5398
+ # You have provided an invalid command. If you ran the
5399
+ # `UpdateFirewallDomains` request. supported values are `ADD`, `REMOVE`,
5400
+ # or `REPLACE` a domain.
5130
5401
  #
5131
5402
  # @!attribute [rw] message
5132
5403
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-route53resolver/customizations'
52
52
  # @!group service
53
53
  module Aws::Route53Resolver
54
54
 
55
- GEM_VERSION = '1.51.0'
55
+ GEM_VERSION = '1.53.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53resolver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.51.0
4
+ version: 1.53.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core