aws-sdk-route53resolver 1.51.0 → 1.52.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: 2d5a98651b3531cafa45212a8cd7d50cd04bb4de53ff3fa779531ce3b4b6c88e
4
+ data.tar.gz: 5442089f8b439efe058edb70da81a90259b52c694421f13e2507f82169129b6f
5
5
  SHA512:
6
- metadata.gz: 92100a5a81a289577be65ace5a312d37d0c8b07367382aecb0345339568ad685a570c5f3fa6cc69460bb404c08607f0f6f3f6dd737d13af3e8522ad7b5f3dcde
7
- data.tar.gz: aa7384ec4fd5fdc7258d1b051cb39727c10ef3f378deb3bd1fc0338c80f1295d254ecac6c60d3f94d207bc20e90dd075e624b851bad071f2a928ce905bb15e7a
6
+ metadata.gz: 1ce45c125ecb6c6b62c8069bc5af82bb7ee8e784a7edf8c52e28eae76997d94e48a0be5960f895e3399c908f9839b15ae25daa18b632d151d48838dbccd91d64
7
+ data.tar.gz: f82c04c30a70c423cc4a5d489b283f593ef2c150da1b617cc872e7f1e99d1fc87274ab50581298f43ccaf41774cf3669ccb764e58d1eade0dba95e6b655cdaab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2023-12-18)
5
+ ------------------
6
+
7
+ * Feature - Add DOH protocols in resolver endpoints.
8
+
4
9
  1.51.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.52.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
  #
@@ -913,7 +915,7 @@ module Aws::Route53Resolver
913
915
  req.send_request(options)
914
916
  end
915
917
 
916
- # Creates an Route 53 Resolver on an Outpost.
918
+ # Creates a Route 53 Resolver on an Outpost.
917
919
  #
918
920
  # @option params [required, String] :creator_request_id
919
921
  # A unique string that identifies the request and that allows failed
@@ -1027,6 +1029,19 @@ module Aws::Route53Resolver
1027
1029
  # from (for outbound endpoints) or that you forward DNS queries to (for
1028
1030
  # inbound endpoints). The subnet ID uniquely identifies a VPC.
1029
1031
  #
1032
+ # <note markdown="1"> Even though the minimum is 1, Route 53 requires that you create at
1033
+ # least two.
1034
+ #
1035
+ # </note>
1036
+ #
1037
+ # @option params [String] :outpost_arn
1038
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
1039
+ # you must also specify a value for the `PreferredInstanceType`.
1040
+ #
1041
+ # @option params [String] :preferred_instance_type
1042
+ # The instance type. If you specify this, you must also specify a value
1043
+ # for the `OutpostArn`.
1044
+ #
1030
1045
  # @option params [Array<Types::Tag>] :tags
1031
1046
  # A list of the tag keys and values that you want to associate with the
1032
1047
  # endpoint.
@@ -1036,13 +1051,33 @@ module Aws::Route53Resolver
1036
1051
  # A dual-stack endpoint means that it will resolve via both IPv4 and
1037
1052
  # IPv6. This endpoint type is applied to all IP addresses.
1038
1053
  #
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`.
1054
+ # @option params [Array<String>] :protocols
1055
+ # The protocols you want to use for the endpoint. DoH-FIPS is applicable
1056
+ # for inbound endpoints only.
1042
1057
  #
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`.
1058
+ # For an inbound endpoint you can apply the protocols as follows:
1059
+ #
1060
+ # * Do53 and DoH in combination.
1061
+ #
1062
+ # * Do53 and DoH-FIPS in combination.
1063
+ #
1064
+ # * Do53 alone.
1065
+ #
1066
+ # * DoH alone.
1067
+ #
1068
+ # * DoH-FIPS alone.
1069
+ #
1070
+ # * None, which is treated as Do53.
1071
+ #
1072
+ # For an outbound endpoint you can apply the protocols as follows:
1073
+ #
1074
+ # * Do53 and DoH in combination.
1075
+ #
1076
+ # * Do53 alone.
1077
+ #
1078
+ # * DoH alone.
1079
+ #
1080
+ # * None, which is treated as Do53.
1046
1081
  #
1047
1082
  # @return [Types::CreateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1048
1083
  #
@@ -1062,6 +1097,8 @@ module Aws::Route53Resolver
1062
1097
  # ipv_6: "Ipv6",
1063
1098
  # },
1064
1099
  # ],
1100
+ # outpost_arn: "OutpostArn",
1101
+ # preferred_instance_type: "OutpostInstanceType",
1065
1102
  # tags: [
1066
1103
  # {
1067
1104
  # key: "TagKey", # required
@@ -1069,8 +1106,7 @@ module Aws::Route53Resolver
1069
1106
  # },
1070
1107
  # ],
1071
1108
  # resolver_endpoint_type: "IPV6", # accepts IPV6, IPV4, DUALSTACK
1072
- # outpost_arn: "OutpostArn",
1073
- # preferred_instance_type: "OutpostInstanceType",
1109
+ # protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
1074
1110
  # })
1075
1111
  #
1076
1112
  # @example Response structure
@@ -1088,9 +1124,11 @@ module Aws::Route53Resolver
1088
1124
  # resp.resolver_endpoint.status_message #=> String
1089
1125
  # resp.resolver_endpoint.creation_time #=> String
1090
1126
  # resp.resolver_endpoint.modification_time #=> String
1091
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1092
1127
  # resp.resolver_endpoint.outpost_arn #=> String
1093
1128
  # resp.resolver_endpoint.preferred_instance_type #=> String
1129
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1130
+ # resp.resolver_endpoint.protocols #=> Array
1131
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1094
1132
  #
1095
1133
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpoint AWS API Documentation
1096
1134
  #
@@ -1230,7 +1268,7 @@ module Aws::Route53Resolver
1230
1268
  # Currently, only Resolver can create rules that have a value of
1231
1269
  # `RECURSIVE` for `RuleType`.
1232
1270
  #
1233
- # @option params [required, String] :domain_name
1271
+ # @option params [String] :domain_name
1234
1272
  # DNS queries for this domain name are forwarded to the IP addresses
1235
1273
  # that you specify in `TargetIps`. If a query matches multiple Resolver
1236
1274
  # rules (example.com and www.example.com), outbound DNS queries are
@@ -1263,12 +1301,13 @@ module Aws::Route53Resolver
1263
1301
  # creator_request_id: "CreatorRequestId", # required
1264
1302
  # name: "Name",
1265
1303
  # rule_type: "FORWARD", # required, accepts FORWARD, SYSTEM, RECURSIVE
1266
- # domain_name: "DomainName", # required
1304
+ # domain_name: "DomainName",
1267
1305
  # target_ips: [
1268
1306
  # {
1269
1307
  # ip: "Ip",
1270
1308
  # port: 1,
1271
1309
  # ipv_6: "Ipv6",
1310
+ # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
1272
1311
  # },
1273
1312
  # ],
1274
1313
  # resolver_endpoint_id: "ResourceId",
@@ -1294,6 +1333,7 @@ module Aws::Route53Resolver
1294
1333
  # resp.resolver_rule.target_ips[0].ip #=> String
1295
1334
  # resp.resolver_rule.target_ips[0].port #=> Integer
1296
1335
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1336
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1297
1337
  # resp.resolver_rule.resolver_endpoint_id #=> String
1298
1338
  # resp.resolver_rule.owner_id #=> String
1299
1339
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1505,9 +1545,11 @@ module Aws::Route53Resolver
1505
1545
  # resp.resolver_endpoint.status_message #=> String
1506
1546
  # resp.resolver_endpoint.creation_time #=> String
1507
1547
  # resp.resolver_endpoint.modification_time #=> String
1508
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1509
1548
  # resp.resolver_endpoint.outpost_arn #=> String
1510
1549
  # resp.resolver_endpoint.preferred_instance_type #=> String
1550
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1551
+ # resp.resolver_endpoint.protocols #=> Array
1552
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1511
1553
  #
1512
1554
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DeleteResolverEndpoint AWS API Documentation
1513
1555
  #
@@ -1612,6 +1654,7 @@ module Aws::Route53Resolver
1612
1654
  # resp.resolver_rule.target_ips[0].ip #=> String
1613
1655
  # resp.resolver_rule.target_ips[0].port #=> Integer
1614
1656
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1657
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1615
1658
  # resp.resolver_rule.resolver_endpoint_id #=> String
1616
1659
  # resp.resolver_rule.owner_id #=> String
1617
1660
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1717,9 +1760,11 @@ module Aws::Route53Resolver
1717
1760
  # resp.resolver_endpoint.status_message #=> String
1718
1761
  # resp.resolver_endpoint.creation_time #=> String
1719
1762
  # resp.resolver_endpoint.modification_time #=> String
1720
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1721
1763
  # resp.resolver_endpoint.outpost_arn #=> String
1722
1764
  # resp.resolver_endpoint.preferred_instance_type #=> String
1765
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
1766
+ # resp.resolver_endpoint.protocols #=> Array
1767
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
1723
1768
  #
1724
1769
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/DisassociateResolverEndpointIpAddress AWS API Documentation
1725
1770
  #
@@ -2145,9 +2190,11 @@ module Aws::Route53Resolver
2145
2190
  # resp.resolver_endpoint.status_message #=> String
2146
2191
  # resp.resolver_endpoint.creation_time #=> String
2147
2192
  # resp.resolver_endpoint.modification_time #=> String
2148
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2149
2193
  # resp.resolver_endpoint.outpost_arn #=> String
2150
2194
  # resp.resolver_endpoint.preferred_instance_type #=> String
2195
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
2196
+ # resp.resolver_endpoint.protocols #=> Array
2197
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
2151
2198
  #
2152
2199
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/GetResolverEndpoint AWS API Documentation
2153
2200
  #
@@ -2298,6 +2345,7 @@ module Aws::Route53Resolver
2298
2345
  # resp.resolver_rule.target_ips[0].ip #=> String
2299
2346
  # resp.resolver_rule.target_ips[0].port #=> Integer
2300
2347
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
2348
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
2301
2349
  # resp.resolver_rule.resolver_endpoint_id #=> String
2302
2350
  # resp.resolver_rule.owner_id #=> String
2303
2351
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -3155,9 +3203,11 @@ module Aws::Route53Resolver
3155
3203
  # resp.resolver_endpoints[0].status_message #=> String
3156
3204
  # resp.resolver_endpoints[0].creation_time #=> String
3157
3205
  # resp.resolver_endpoints[0].modification_time #=> String
3158
- # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3159
3206
  # resp.resolver_endpoints[0].outpost_arn #=> String
3160
3207
  # resp.resolver_endpoints[0].preferred_instance_type #=> String
3208
+ # resp.resolver_endpoints[0].resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
3209
+ # resp.resolver_endpoints[0].protocols #=> Array
3210
+ # resp.resolver_endpoints[0].protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
3161
3211
  #
3162
3212
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ListResolverEndpoints AWS API Documentation
3163
3213
  #
@@ -3589,6 +3639,7 @@ module Aws::Route53Resolver
3589
3639
  # resp.resolver_rules[0].target_ips[0].ip #=> String
3590
3640
  # resp.resolver_rules[0].target_ips[0].port #=> Integer
3591
3641
  # resp.resolver_rules[0].target_ips[0].ipv_6 #=> String
3642
+ # resp.resolver_rules[0].target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
3592
3643
  # resp.resolver_rules[0].resolver_endpoint_id #=> String
3593
3644
  # resp.resolver_rules[0].owner_id #=> String
3594
3645
  # resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4326,7 +4377,7 @@ module Aws::Route53Resolver
4326
4377
  req.send_request(options)
4327
4378
  end
4328
4379
 
4329
- # Updates the name, or enpoint type for an inbound or an outbound
4380
+ # Updates the name, or endpoint type for an inbound or an outbound
4330
4381
  # Resolver endpoint. You can only update between IPV4 and DUALSTACK,
4331
4382
  # IPV6 endpoint type can't be updated to other type.
4332
4383
  #
@@ -4347,6 +4398,42 @@ module Aws::Route53Resolver
4347
4398
  # IPv4 to dual-stack. If you don't specify an IPv6 address, one will be
4348
4399
  # automatically chosen from your subnet.
4349
4400
  #
4401
+ # @option params [Array<String>] :protocols
4402
+ # The protocols you want to use for the endpoint. DoH-FIPS is applicable
4403
+ # for inbound endpoints only.
4404
+ #
4405
+ # For an inbound endpoint you can apply the protocols as follows:
4406
+ #
4407
+ # * Do53 and DoH in combination.
4408
+ #
4409
+ # * Do53 and DoH-FIPS in combination.
4410
+ #
4411
+ # * Do53 alone.
4412
+ #
4413
+ # * DoH alone.
4414
+ #
4415
+ # * DoH-FIPS alone.
4416
+ #
4417
+ # * None, which is treated as Do53.
4418
+ #
4419
+ # For an outbound endpoint you can apply the protocols as follows:
4420
+ #
4421
+ # * Do53 and DoH in combination.
4422
+ #
4423
+ # * Do53 alone.
4424
+ #
4425
+ # * DoH alone.
4426
+ #
4427
+ # * None, which is treated as Do53.
4428
+ #
4429
+ # You can't change the protocol of an inbound endpoint directly from
4430
+ # only Do53 to only DoH, or DoH-FIPS. This is to prevent a sudden
4431
+ # disruption to incoming traffic that relies on Do53. To change the
4432
+ # protocol from Do53 to DoH, or DoH-FIPS, you must first enable both
4433
+ # Do53 and DoH, or Do53 and DoH-FIPS, to make sure that all incoming
4434
+ # traffic has transferred to using the DoH protocol, or DoH-FIPS, and
4435
+ # then remove the Do53.
4436
+ #
4350
4437
  # @return [Types::UpdateResolverEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4351
4438
  #
4352
4439
  # * {Types::UpdateResolverEndpointResponse#resolver_endpoint #resolver_endpoint} => Types::ResolverEndpoint
@@ -4363,6 +4450,7 @@ module Aws::Route53Resolver
4363
4450
  # ipv_6: "Ipv6", # required
4364
4451
  # },
4365
4452
  # ],
4453
+ # protocols: ["DoH"], # accepts DoH, Do53, DoH-FIPS
4366
4454
  # })
4367
4455
  #
4368
4456
  # @example Response structure
@@ -4380,9 +4468,11 @@ module Aws::Route53Resolver
4380
4468
  # resp.resolver_endpoint.status_message #=> String
4381
4469
  # resp.resolver_endpoint.creation_time #=> String
4382
4470
  # resp.resolver_endpoint.modification_time #=> String
4383
- # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4384
4471
  # resp.resolver_endpoint.outpost_arn #=> String
4385
4472
  # resp.resolver_endpoint.preferred_instance_type #=> String
4473
+ # resp.resolver_endpoint.resolver_endpoint_type #=> String, one of "IPV6", "IPV4", "DUALSTACK"
4474
+ # resp.resolver_endpoint.protocols #=> Array
4475
+ # resp.resolver_endpoint.protocols[0] #=> String, one of "DoH", "Do53", "DoH-FIPS"
4386
4476
  #
4387
4477
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpoint AWS API Documentation
4388
4478
  #
@@ -4418,6 +4508,7 @@ module Aws::Route53Resolver
4418
4508
  # ip: "Ip",
4419
4509
  # port: 1,
4420
4510
  # ipv_6: "Ipv6",
4511
+ # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
4421
4512
  # },
4422
4513
  # ],
4423
4514
  # resolver_endpoint_id: "ResourceId",
@@ -4438,6 +4529,7 @@ module Aws::Route53Resolver
4438
4529
  # resp.resolver_rule.target_ips[0].ip #=> String
4439
4530
  # resp.resolver_rule.target_ips[0].port #=> Integer
4440
4531
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
4532
+ # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
4441
4533
  # resp.resolver_rule.resolver_endpoint_id #=> String
4442
4534
  # resp.resolver_rule.owner_id #=> String
4443
4535
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4466,7 +4558,7 @@ module Aws::Route53Resolver
4466
4558
  params: params,
4467
4559
  config: config)
4468
4560
  context[:gem_name] = 'aws-sdk-route53resolver'
4469
- context[:gem_version] = '1.51.0'
4561
+ context[:gem_version] = '1.52.0'
4470
4562
  Seahorse::Client::Request.new(handlers, context)
4471
4563
  end
4472
4564
 
@@ -197,6 +197,8 @@ 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')
@@ -372,10 +374,11 @@ module Aws::Route53Resolver
372
374
  CreateResolverEndpointRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, required: true, location_name: "SecurityGroupIds", metadata: {"box"=>true}))
373
375
  CreateResolverEndpointRequest.add_member(:direction, Shapes::ShapeRef.new(shape: ResolverEndpointDirection, required: true, location_name: "Direction"))
374
376
  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
377
  CreateResolverEndpointRequest.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: OutpostArn, location_name: "OutpostArn", metadata: {"box"=>true}))
378
378
  CreateResolverEndpointRequest.add_member(:preferred_instance_type, Shapes::ShapeRef.new(shape: OutpostInstanceType, location_name: "PreferredInstanceType", metadata: {"box"=>true}))
379
+ CreateResolverEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
380
+ CreateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box"=>true}))
381
+ CreateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box"=>true}))
379
382
  CreateResolverEndpointRequest.struct_class = Types::CreateResolverEndpointRequest
380
383
 
381
384
  CreateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
@@ -393,7 +396,7 @@ module Aws::Route53Resolver
393
396
  CreateResolverRuleRequest.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: CreatorRequestId, required: true, location_name: "CreatorRequestId"))
394
397
  CreateResolverRuleRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
395
398
  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"))
399
+ CreateResolverRuleRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName", metadata: {"box"=>true}))
397
400
  CreateResolverRuleRequest.add_member(:target_ips, Shapes::ShapeRef.new(shape: TargetList, location_name: "TargetIps", metadata: {"box"=>true}))
398
401
  CreateResolverRuleRequest.add_member(:resolver_endpoint_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResolverEndpointId", metadata: {"box"=>true}))
399
402
  CreateResolverRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags", metadata: {"box"=>true}))
@@ -888,6 +891,8 @@ module Aws::Route53Resolver
888
891
 
889
892
  OutpostResolverList.member = Shapes::ShapeRef.new(shape: OutpostResolver)
890
893
 
894
+ ProtocolList.member = Shapes::ShapeRef.new(shape: Protocol)
895
+
891
896
  PutFirewallRuleGroupPolicyRequest.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
892
897
  PutFirewallRuleGroupPolicyRequest.add_member(:firewall_rule_group_policy, Shapes::ShapeRef.new(shape: FirewallRuleGroupPolicy, required: true, location_name: "FirewallRuleGroupPolicy"))
893
898
  PutFirewallRuleGroupPolicyRequest.struct_class = Types::PutFirewallRuleGroupPolicyRequest
@@ -937,9 +942,10 @@ module Aws::Route53Resolver
937
942
  ResolverEndpoint.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
938
943
  ResolverEndpoint.add_member(:creation_time, Shapes::ShapeRef.new(shape: Rfc3339TimeString, location_name: "CreationTime"))
939
944
  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
945
  ResolverEndpoint.add_member(:outpost_arn, Shapes::ShapeRef.new(shape: OutpostArn, location_name: "OutpostArn"))
942
946
  ResolverEndpoint.add_member(:preferred_instance_type, Shapes::ShapeRef.new(shape: OutpostInstanceType, location_name: "PreferredInstanceType"))
947
+ ResolverEndpoint.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType"))
948
+ ResolverEndpoint.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols"))
943
949
  ResolverEndpoint.struct_class = Types::ResolverEndpoint
944
950
 
945
951
  ResolverEndpoints.member = Shapes::ShapeRef.new(shape: ResolverEndpoint)
@@ -1040,6 +1046,7 @@ module Aws::Route53Resolver
1040
1046
  TargetAddress.add_member(:ip, Shapes::ShapeRef.new(shape: Ip, location_name: "Ip", metadata: {"box"=>true}))
1041
1047
  TargetAddress.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port", metadata: {"box"=>true}))
1042
1048
  TargetAddress.add_member(:ipv_6, Shapes::ShapeRef.new(shape: Ipv6, location_name: "Ipv6", metadata: {"box"=>true}))
1049
+ TargetAddress.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol", metadata: {"box"=>true}))
1043
1050
  TargetAddress.struct_class = Types::TargetAddress
1044
1051
 
1045
1052
  TargetList.member = Shapes::ShapeRef.new(shape: TargetAddress)
@@ -1130,6 +1137,7 @@ module Aws::Route53Resolver
1130
1137
  UpdateResolverEndpointRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name", metadata: {"box"=>true}))
1131
1138
  UpdateResolverEndpointRequest.add_member(:resolver_endpoint_type, Shapes::ShapeRef.new(shape: ResolverEndpointType, location_name: "ResolverEndpointType", metadata: {"box"=>true}))
1132
1139
  UpdateResolverEndpointRequest.add_member(:update_ip_addresses, Shapes::ShapeRef.new(shape: UpdateIpAddresses, location_name: "UpdateIpAddresses", metadata: {"box"=>true}))
1140
+ UpdateResolverEndpointRequest.add_member(:protocols, Shapes::ShapeRef.new(shape: ProtocolList, location_name: "Protocols", metadata: {"box"=>true}))
1133
1141
  UpdateResolverEndpointRequest.struct_class = Types::UpdateResolverEndpointRequest
1134
1142
 
1135
1143
  UpdateResolverEndpointResponse.add_member(:resolver_endpoint, Shapes::ShapeRef.new(shape: ResolverEndpoint, location_name: "ResolverEndpoint"))
@@ -1290,6 +1298,7 @@ module Aws::Route53Resolver
1290
1298
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1291
1299
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1292
1300
  o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
1301
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1293
1302
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1294
1303
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
1295
1304
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
@@ -1324,6 +1333,7 @@ module Aws::Route53Resolver
1324
1333
  o.errors << Shapes::ShapeRef.new(shape: ResourceExistsException)
1325
1334
  o.errors << Shapes::ShapeRef.new(shape: ResourceUnavailableException)
1326
1335
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
1336
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1327
1337
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1328
1338
  end)
1329
1339
 
@@ -2166,6 +2176,7 @@ module Aws::Route53Resolver
2166
2176
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2167
2177
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2168
2178
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2179
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2169
2180
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
2170
2181
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2171
2182
  end)
@@ -2183,6 +2194,7 @@ module Aws::Route53Resolver
2183
2194
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2184
2195
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceErrorException)
2185
2196
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2197
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2186
2198
  end)
2187
2199
  end
2188
2200
 
@@ -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
@@ -525,8 +525,23 @@ module Aws::Route53Resolver
525
525
  # The subnets and IP addresses in your VPC that DNS queries originate
526
526
  # from (for outbound endpoints) or that you forward DNS queries to
527
527
  # (for inbound endpoints). The subnet ID uniquely identifies a VPC.
528
+ #
529
+ # <note markdown="1"> Even though the minimum is 1, Route 53 requires that you create at
530
+ # least two.
531
+ #
532
+ # </note>
528
533
  # @return [Array<Types::IpAddressRequest>]
529
534
  #
535
+ # @!attribute [rw] outpost_arn
536
+ # The Amazon Resource Name (ARN) of the Outpost. If you specify this,
537
+ # you must also specify a value for the `PreferredInstanceType`.
538
+ # @return [String]
539
+ #
540
+ # @!attribute [rw] preferred_instance_type
541
+ # The instance type. If you specify this, you must also specify a
542
+ # value for the `OutpostArn`.
543
+ # @return [String]
544
+ #
530
545
  # @!attribute [rw] tags
531
546
  # A list of the tag keys and values that you want to associate with
532
547
  # the endpoint.
@@ -539,15 +554,34 @@ module Aws::Route53Resolver
539
554
  # addresses.
540
555
  # @return [String]
541
556
  #
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]
557
+ # @!attribute [rw] protocols
558
+ # The protocols you want to use for the endpoint. DoH-FIPS is
559
+ # applicable for inbound endpoints only.
546
560
  #
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]
561
+ # For an inbound endpoint you can apply the protocols as follows:
562
+ #
563
+ # * Do53 and DoH in combination.
564
+ #
565
+ # * Do53 and DoH-FIPS in combination.
566
+ #
567
+ # * Do53 alone.
568
+ #
569
+ # * DoH alone.
570
+ #
571
+ # * DoH-FIPS alone.
572
+ #
573
+ # * None, which is treated as Do53.
574
+ #
575
+ # For an outbound endpoint you can apply the protocols as follows:
576
+ #
577
+ # * Do53 and DoH in combination.
578
+ #
579
+ # * Do53 alone.
580
+ #
581
+ # * DoH alone.
582
+ #
583
+ # * None, which is treated as Do53.
584
+ # @return [Array<String>]
551
585
  #
552
586
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/CreateResolverEndpointRequest AWS API Documentation
553
587
  #
@@ -557,10 +591,11 @@ module Aws::Route53Resolver
557
591
  :security_group_ids,
558
592
  :direction,
559
593
  :ip_addresses,
594
+ :outpost_arn,
595
+ :preferred_instance_type,
560
596
  :tags,
561
597
  :resolver_endpoint_type,
562
- :outpost_arn,
563
- :preferred_instance_type)
598
+ :protocols)
564
599
  SENSITIVE = []
565
600
  include Aws::Structure
566
601
  end
@@ -2933,7 +2968,8 @@ module Aws::Route53Resolver
2933
2968
  # @!attribute [rw] resolver_dnssec_configs
2934
2969
  # An array that contains one [ResolverDnssecConfig][1] element for
2935
2970
  # each configuration for DNSSEC validation that is associated with the
2936
- # current Amazon Web Services account.
2971
+ # current Amazon Web Services account. It doesn't contain disabled
2972
+ # DNSSEC configurations for the resource.
2937
2973
  #
2938
2974
  #
2939
2975
  #
@@ -3957,10 +3993,6 @@ module Aws::Route53Resolver
3957
3993
  # format and Coordinated Universal Time (UTC).
3958
3994
  # @return [String]
3959
3995
  #
3960
- # @!attribute [rw] resolver_endpoint_type
3961
- # The Resolver endpoint IP address type.
3962
- # @return [String]
3963
- #
3964
3996
  # @!attribute [rw] outpost_arn
3965
3997
  # The ARN (Amazon Resource Name) for the Outpost.
3966
3998
  # @return [String]
@@ -3969,6 +4001,39 @@ module Aws::Route53Resolver
3969
4001
  # The Amazon EC2 instance type.
3970
4002
  # @return [String]
3971
4003
  #
4004
+ # @!attribute [rw] resolver_endpoint_type
4005
+ # The Resolver endpoint IP address type.
4006
+ # @return [String]
4007
+ #
4008
+ # @!attribute [rw] protocols
4009
+ # Protocols used for the endpoint. DoH-FIPS is applicable for inbound
4010
+ # endpoints only.
4011
+ #
4012
+ # For an inbound endpoint you can apply the protocols as follows:
4013
+ #
4014
+ # * Do53 and DoH in combination.
4015
+ #
4016
+ # * Do53 and DoH-FIPS in combination.
4017
+ #
4018
+ # * Do53 alone.
4019
+ #
4020
+ # * DoH alone.
4021
+ #
4022
+ # * DoH-FIPS alone.
4023
+ #
4024
+ # * None, which is treated as Do53.
4025
+ #
4026
+ # For an outbound endpoint you can apply the protocols as follows:
4027
+ #
4028
+ # * Do53 and DoH in combination.
4029
+ #
4030
+ # * Do53 alone.
4031
+ #
4032
+ # * DoH alone.
4033
+ #
4034
+ # * None, which is treated as Do53.
4035
+ # @return [Array<String>]
4036
+ #
3972
4037
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/ResolverEndpoint AWS API Documentation
3973
4038
  #
3974
4039
  class ResolverEndpoint < Struct.new(
@@ -3984,9 +4049,10 @@ module Aws::Route53Resolver
3984
4049
  :status_message,
3985
4050
  :creation_time,
3986
4051
  :modification_time,
3987
- :resolver_endpoint_type,
3988
4052
  :outpost_arn,
3989
- :preferred_instance_type)
4053
+ :preferred_instance_type,
4054
+ :resolver_endpoint_type,
4055
+ :protocols)
3990
4056
  SENSITIVE = []
3991
4057
  include Aws::Structure
3992
4058
  end
@@ -4562,12 +4628,42 @@ module Aws::Route53Resolver
4562
4628
  # One IPv6 address that you want to forward DNS queries to.
4563
4629
  # @return [String]
4564
4630
  #
4631
+ # @!attribute [rw] protocol
4632
+ # The protocols for the Resolver endpoints. DoH-FIPS is applicable for
4633
+ # inbound endpoints only.
4634
+ #
4635
+ # For an inbound endpoint you can apply the protocols as follows:
4636
+ #
4637
+ # * Do53 and DoH in combination.
4638
+ #
4639
+ # * Do53 and DoH-FIPS in combination.
4640
+ #
4641
+ # * Do53 alone.
4642
+ #
4643
+ # * DoH alone.
4644
+ #
4645
+ # * DoH-FIPS alone.
4646
+ #
4647
+ # * None, which is treated as Do53.
4648
+ #
4649
+ # For an outbound endpoint you can apply the protocols as follows:
4650
+ #
4651
+ # * Do53 and DoH in combination.
4652
+ #
4653
+ # * Do53 alone.
4654
+ #
4655
+ # * DoH alone.
4656
+ #
4657
+ # * None, which is treated as Do53.
4658
+ # @return [String]
4659
+ #
4565
4660
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/TargetAddress AWS API Documentation
4566
4661
  #
4567
4662
  class TargetAddress < Struct.new(
4568
4663
  :ip,
4569
4664
  :port,
4570
- :ipv_6)
4665
+ :ipv_6,
4666
+ :protocol)
4571
4667
  SENSITIVE = []
4572
4668
  include Aws::Structure
4573
4669
  end
@@ -5073,13 +5169,51 @@ module Aws::Route53Resolver
5073
5169
  # will be automatically chosen from your subnet.
5074
5170
  # @return [Array<Types::UpdateIpAddress>]
5075
5171
  #
5172
+ # @!attribute [rw] protocols
5173
+ # The protocols you want to use for the endpoint. DoH-FIPS is
5174
+ # applicable for inbound endpoints only.
5175
+ #
5176
+ # For an inbound endpoint you can apply the protocols as follows:
5177
+ #
5178
+ # * Do53 and DoH in combination.
5179
+ #
5180
+ # * Do53 and DoH-FIPS in combination.
5181
+ #
5182
+ # * Do53 alone.
5183
+ #
5184
+ # * DoH alone.
5185
+ #
5186
+ # * DoH-FIPS alone.
5187
+ #
5188
+ # * None, which is treated as Do53.
5189
+ #
5190
+ # For an outbound endpoint you can apply the protocols as follows:
5191
+ #
5192
+ # * Do53 and DoH in combination.
5193
+ #
5194
+ # * Do53 alone.
5195
+ #
5196
+ # * DoH alone.
5197
+ #
5198
+ # * None, which is treated as Do53.
5199
+ #
5200
+ # You can't change the protocol of an inbound endpoint directly from
5201
+ # only Do53 to only DoH, or DoH-FIPS. This is to prevent a sudden
5202
+ # disruption to incoming traffic that relies on Do53. To change the
5203
+ # protocol from Do53 to DoH, or DoH-FIPS, you must first enable both
5204
+ # Do53 and DoH, or Do53 and DoH-FIPS, to make sure that all incoming
5205
+ # traffic has transferred to using the DoH protocol, or DoH-FIPS, and
5206
+ # then remove the Do53.
5207
+ # @return [Array<String>]
5208
+ #
5076
5209
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/UpdateResolverEndpointRequest AWS API Documentation
5077
5210
  #
5078
5211
  class UpdateResolverEndpointRequest < Struct.new(
5079
5212
  :resolver_endpoint_id,
5080
5213
  :name,
5081
5214
  :resolver_endpoint_type,
5082
- :update_ip_addresses)
5215
+ :update_ip_addresses,
5216
+ :protocols)
5083
5217
  SENSITIVE = []
5084
5218
  include Aws::Structure
5085
5219
  end
@@ -5125,8 +5259,9 @@ module Aws::Route53Resolver
5125
5259
  include Aws::Structure
5126
5260
  end
5127
5261
 
5128
- # You have provided an invalid command. Supported values are `ADD`,
5129
- # `REMOVE`, or `REPLACE` a domain.
5262
+ # You have provided an invalid command. If you ran the
5263
+ # `UpdateFirewallDomains` request. supported values are `ADD`, `REMOVE`,
5264
+ # or `REPLACE` a domain.
5130
5265
  #
5131
5266
  # @!attribute [rw] message
5132
5267
  # @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.52.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.52.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: 2023-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core