aws-sdk-route53resolver 1.70.0 → 1.71.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae1d735c737c9c94b38a2cf4b2e564ace10fe211cd11fcc2b3cc16961022f652
4
- data.tar.gz: c18e3840cb79cefce8312db96993f5d815c27186da78778130f5cc3393bc7d0e
3
+ metadata.gz: e263b48ed0d14f6355ada97a6a27aba189708f14b4611b175b134834f9b7c8dd
4
+ data.tar.gz: fdf4165cf09419193022a3396ed35f53a10076a8bad618c2eeca2b001d23eb87
5
5
  SHA512:
6
- metadata.gz: ee184d8259012211659fdfd7e5d2e974c84803061351e29b8594366cd5bd124428381f9e285b8acf677dd0fc67f58d5986d1269b21212fabaec902d60c512bd6
7
- data.tar.gz: 0f0885e4be79fc4445bb7ceb67aac2e3514c16185c83aa7974f0f6281547606db52b8928e6ab1822aadda435cd11c5bb831c1bd7ad67ce47318d9280a24c4090
6
+ metadata.gz: 6c365925a4d9d91da87170a860cf98b3a5b341fc1377b2942c5de823d9f8390efd6744580f1011a0be1ada6307640edf53569d112c74880dcb7c27f7236de4e9
7
+ data.tar.gz: cf7520f36c088a73104960756815f7e3902f44dfadb08f64dd87b9226fcfaf9279c17fc51732d5de985625e77add698319cf3c2893d044eba4b81f3c17b29df5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2024-10-10)
5
+ ------------------
6
+
7
+ * Feature - Route 53 Resolver Forwarding Rules can now include a server name indication (SNI) in the target address for rules that use the DNS-over-HTTPS (DoH) protocol. When a DoH-enabled Outbound Resolver Endpoint forwards a request to a DoH server, it will provide the SNI in the TLS handshake.
8
+
4
9
  1.70.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -1294,11 +1294,11 @@ module Aws::Route53Resolver
1294
1294
  #
1295
1295
  # * **S3 bucket**:
1296
1296
  #
1297
- # `arn:aws:s3:::examplebucket`
1297
+ # `arn:aws:s3:::amzn-s3-demo-bucket`
1298
1298
  #
1299
1299
  # You can optionally append a file prefix to the end of the ARN.
1300
1300
  #
1301
- # `arn:aws:s3:::examplebucket/development/`
1301
+ # `arn:aws:s3:::amzn-s3-demo-bucket/development/`
1302
1302
  #
1303
1303
  # * **CloudWatch Logs log group**:
1304
1304
  #
@@ -1432,6 +1432,7 @@ module Aws::Route53Resolver
1432
1432
  # port: 1,
1433
1433
  # ipv_6: "Ipv6",
1434
1434
  # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
1435
+ # server_name_indication: "ServerNameIndication",
1435
1436
  # },
1436
1437
  # ],
1437
1438
  # resolver_endpoint_id: "ResourceId",
@@ -1458,6 +1459,7 @@ module Aws::Route53Resolver
1458
1459
  # resp.resolver_rule.target_ips[0].port #=> Integer
1459
1460
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1460
1461
  # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1462
+ # resp.resolver_rule.target_ips[0].server_name_indication #=> String
1461
1463
  # resp.resolver_rule.resolver_endpoint_id #=> String
1462
1464
  # resp.resolver_rule.owner_id #=> String
1463
1465
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -1823,6 +1825,7 @@ module Aws::Route53Resolver
1823
1825
  # resp.resolver_rule.target_ips[0].port #=> Integer
1824
1826
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
1825
1827
  # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
1828
+ # resp.resolver_rule.target_ips[0].server_name_indication #=> String
1826
1829
  # resp.resolver_rule.resolver_endpoint_id #=> String
1827
1830
  # resp.resolver_rule.owner_id #=> String
1828
1831
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -2514,6 +2517,7 @@ module Aws::Route53Resolver
2514
2517
  # resp.resolver_rule.target_ips[0].port #=> Integer
2515
2518
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
2516
2519
  # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
2520
+ # resp.resolver_rule.target_ips[0].server_name_indication #=> String
2517
2521
  # resp.resolver_rule.resolver_endpoint_id #=> String
2518
2522
  # resp.resolver_rule.owner_id #=> String
2519
2523
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -3810,6 +3814,7 @@ module Aws::Route53Resolver
3810
3814
  # resp.resolver_rules[0].target_ips[0].port #=> Integer
3811
3815
  # resp.resolver_rules[0].target_ips[0].ipv_6 #=> String
3812
3816
  # resp.resolver_rules[0].target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
3817
+ # resp.resolver_rules[0].target_ips[0].server_name_indication #=> String
3813
3818
  # resp.resolver_rules[0].resolver_endpoint_id #=> String
3814
3819
  # resp.resolver_rules[0].owner_id #=> String
3815
3820
  # resp.resolver_rules[0].share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4342,6 +4347,12 @@ module Aws::Route53Resolver
4342
4347
  # be 1-65334, for example, TYPE28. For more information, see [List of
4343
4348
  # DNS record types][1].
4344
4349
  #
4350
+ # <note markdown="1"> If you set up a firewall BLOCK rule with action NXDOMAIN on query
4351
+ # type equals AAAA, this action will not be applied to synthetic IPv6
4352
+ # addresses generated when DNS64 is enabled.
4353
+ #
4354
+ # </note>
4355
+ #
4345
4356
  #
4346
4357
  #
4347
4358
  # [1]: https://en.wikipedia.org/wiki/List_of_DNS_record_types
@@ -4735,6 +4746,7 @@ module Aws::Route53Resolver
4735
4746
  # port: 1,
4736
4747
  # ipv_6: "Ipv6",
4737
4748
  # protocol: "DoH", # accepts DoH, Do53, DoH-FIPS
4749
+ # server_name_indication: "ServerNameIndication",
4738
4750
  # },
4739
4751
  # ],
4740
4752
  # resolver_endpoint_id: "ResourceId",
@@ -4756,6 +4768,7 @@ module Aws::Route53Resolver
4756
4768
  # resp.resolver_rule.target_ips[0].port #=> Integer
4757
4769
  # resp.resolver_rule.target_ips[0].ipv_6 #=> String
4758
4770
  # resp.resolver_rule.target_ips[0].protocol #=> String, one of "DoH", "Do53", "DoH-FIPS"
4771
+ # resp.resolver_rule.target_ips[0].server_name_indication #=> String
4759
4772
  # resp.resolver_rule.resolver_endpoint_id #=> String
4760
4773
  # resp.resolver_rule.owner_id #=> String
4761
4774
  # resp.resolver_rule.share_status #=> String, one of "NOT_SHARED", "SHARED_WITH_ME", "SHARED_BY_ME"
@@ -4789,7 +4802,7 @@ module Aws::Route53Resolver
4789
4802
  tracer: tracer
4790
4803
  )
4791
4804
  context[:gem_name] = 'aws-sdk-route53resolver'
4792
- context[:gem_version] = '1.70.0'
4805
+ context[:gem_version] = '1.71.0'
4793
4806
  Seahorse::Client::Request.new(handlers, context)
4794
4807
  end
4795
4808
 
@@ -245,6 +245,7 @@ module Aws::Route53Resolver
245
245
  Rfc3339TimeString = Shapes::StringShape.new(name: 'Rfc3339TimeString')
246
246
  RuleTypeOption = Shapes::StringShape.new(name: 'RuleTypeOption')
247
247
  SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
248
+ ServerNameIndication = Shapes::StringShape.new(name: 'ServerNameIndication')
248
249
  ServicePrinciple = Shapes::StringShape.new(name: 'ServicePrinciple')
249
250
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
250
251
  ShareStatus = Shapes::StringShape.new(name: 'ShareStatus')
@@ -1055,6 +1056,7 @@ module Aws::Route53Resolver
1055
1056
  TargetAddress.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "Port", metadata: {"box"=>true}))
1056
1057
  TargetAddress.add_member(:ipv_6, Shapes::ShapeRef.new(shape: Ipv6, location_name: "Ipv6", metadata: {"box"=>true}))
1057
1058
  TargetAddress.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol", metadata: {"box"=>true}))
1059
+ TargetAddress.add_member(:server_name_indication, Shapes::ShapeRef.new(shape: ServerNameIndication, location_name: "ServerNameIndication", metadata: {"box"=>true}))
1058
1060
  TargetAddress.struct_class = Types::TargetAddress
1059
1061
 
1060
1062
  TargetList.member = Shapes::ShapeRef.new(shape: TargetAddress)
@@ -697,11 +697,11 @@ module Aws::Route53Resolver
697
697
  #
698
698
  # * **S3 bucket**:
699
699
  #
700
- # `arn:aws:s3:::examplebucket`
700
+ # `arn:aws:s3:::amzn-s3-demo-bucket`
701
701
  #
702
702
  # You can optionally append a file prefix to the end of the ARN.
703
703
  #
704
- # `arn:aws:s3:::examplebucket/development/`
704
+ # `arn:aws:s3:::amzn-s3-demo-bucket/development/`
705
705
  #
706
706
  # * **CloudWatch Logs log group**:
707
707
  #
@@ -4829,13 +4829,20 @@ module Aws::Route53Resolver
4829
4829
  # * None, which is treated as Do53.
4830
4830
  # @return [String]
4831
4831
  #
4832
+ # @!attribute [rw] server_name_indication
4833
+ # The Server Name Indication of the DoH server that you want to
4834
+ # forward queries to. This is only used if the Protocol of the
4835
+ # `TargetAddress` is `DoH`.
4836
+ # @return [String]
4837
+ #
4832
4838
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53resolver-2018-04-01/TargetAddress AWS API Documentation
4833
4839
  #
4834
4840
  class TargetAddress < Struct.new(
4835
4841
  :ip,
4836
4842
  :port,
4837
4843
  :ipv_6,
4838
- :protocol)
4844
+ :protocol,
4845
+ :server_name_indication)
4839
4846
  SENSITIVE = []
4840
4847
  include Aws::Structure
4841
4848
  end
@@ -5194,6 +5201,12 @@ module Aws::Route53Resolver
5194
5201
  # NUMBER can be 1-65334, for example, TYPE28. For more information,
5195
5202
  # see [List of DNS record types][1].
5196
5203
  #
5204
+ # <note markdown="1"> If you set up a firewall BLOCK rule with action NXDOMAIN on query
5205
+ # type equals AAAA, this action will not be applied to synthetic
5206
+ # IPv6 addresses generated when DNS64 is enabled.
5207
+ #
5208
+ # </note>
5209
+ #
5197
5210
  #
5198
5211
  #
5199
5212
  # [1]: https://en.wikipedia.org/wiki/List_of_DNS_record_types
@@ -54,7 +54,7 @@ module Aws::Route53Resolver
54
54
  autoload :EndpointProvider, 'aws-sdk-route53resolver/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-route53resolver/endpoints'
56
56
 
57
- GEM_VERSION = '1.70.0'
57
+ GEM_VERSION = '1.71.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -274,7 +274,8 @@ module Aws
274
274
  ip: ::String?,
275
275
  port: ::Integer?,
276
276
  ipv_6: ::String?,
277
- protocol: ("DoH" | "Do53" | "DoH-FIPS")?
277
+ protocol: ("DoH" | "Do53" | "DoH-FIPS")?,
278
+ server_name_indication: ::String?
278
279
  },
279
280
  ],
280
281
  ?resolver_endpoint_id: ::String,
@@ -1008,7 +1009,8 @@ module Aws
1008
1009
  ip: ::String?,
1009
1010
  port: ::Integer?,
1010
1011
  ipv_6: ::String?,
1011
- protocol: ("DoH" | "Do53" | "DoH-FIPS")?
1012
+ protocol: ("DoH" | "Do53" | "DoH-FIPS")?,
1013
+ server_name_indication: ::String?
1012
1014
  },
1013
1015
  ]?,
1014
1016
  resolver_endpoint_id: ::String?
data/sig/types.rbs CHANGED
@@ -1031,6 +1031,7 @@ module Aws::Route53Resolver
1031
1031
  attr_accessor port: ::Integer
1032
1032
  attr_accessor ipv_6: ::String
1033
1033
  attr_accessor protocol: ("DoH" | "Do53" | "DoH-FIPS")
1034
+ attr_accessor server_name_indication: ::String
1034
1035
  SENSITIVE: []
1035
1036
  end
1036
1037
 
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.70.0
4
+ version: 1.71.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2024-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core