aws-sdk-textract 1.94.0 → 1.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-textract/client.rb +15 -1
- data/lib/aws-sdk-textract/types.rb +36 -3
- data/lib/aws-sdk-textract.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3cfc3289c024a14d5f2d6005d3d070d4d9247644061adf6b2751a728944fedb7
|
|
4
|
+
data.tar.gz: ae6bdbc47c0ea2c11271c1d22a3dcfc7bddba5f41f6bd9dbe9f76ced7512d18e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5e7844dee202303caf49e06761ca4100bf1923d0aec04673c73a5b7a15509d7b489e29029a82e21c3455954ea3277b0fb91402c614d5f89be4f05839f9d8716
|
|
7
|
+
data.tar.gz: ed1f7ca0994292cb4038a0686ed8c4d8ca72b5537c8641558974baf21dcc6db2b59a8ba9ccf450b7326e158964f37b67e9f3b4222c0246e4557812f32a9ad815
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.95.0 (2026-08-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon A2I entered maintenance mode in July 2026 and now rejects StartHumanLoop requests from accounts that it does not recognize as existing customers. This update adds a corresponding note to the HumanLoopConfig parameter documentation so that the API Reference and SDK docs explain this behavior.
|
|
8
|
+
|
|
4
9
|
1.94.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.95.0
|
|
@@ -554,6 +554,20 @@ module Aws::Textract
|
|
|
554
554
|
# Sets the configuration for the human in the loop workflow for
|
|
555
555
|
# analyzing documents.
|
|
556
556
|
#
|
|
557
|
+
# <note markdown="1"> Amazon Textract uses Amazon Augmented AI (A2I) to run the human review
|
|
558
|
+
# workflows that you specify in `HumanLoopConfig`. A2I entered
|
|
559
|
+
# maintenance mode in July 2026 and no longer accepts new customers. If
|
|
560
|
+
# your account is not an existing A2I customer, requests fail with an
|
|
561
|
+
# `InvalidParameterException`. For more information, see [AWS service
|
|
562
|
+
# availability][1]. If you're an existing A2I customer but receive this
|
|
563
|
+
# error, contact AWS Support and request assistance from the A2I team.
|
|
564
|
+
#
|
|
565
|
+
# </note>
|
|
566
|
+
#
|
|
567
|
+
#
|
|
568
|
+
#
|
|
569
|
+
# [1]: https://aws.amazon.com/about-aws/whats-new/2026/06/aws-service-availability/
|
|
570
|
+
#
|
|
557
571
|
# @option params [Types::QueriesConfig] :queries_config
|
|
558
572
|
# Contains Queries and the alias for those Queries, as determined by the
|
|
559
573
|
# input.
|
|
@@ -2843,7 +2857,7 @@ module Aws::Textract
|
|
|
2843
2857
|
tracer: tracer
|
|
2844
2858
|
)
|
|
2845
2859
|
context[:gem_name] = 'aws-sdk-textract'
|
|
2846
|
-
context[:gem_version] = '1.
|
|
2860
|
+
context[:gem_version] = '1.95.0'
|
|
2847
2861
|
Seahorse::Client::Request.new(handlers, context)
|
|
2848
2862
|
end
|
|
2849
2863
|
|
|
@@ -218,6 +218,21 @@ module Aws::Textract
|
|
|
218
218
|
# @!attribute [rw] human_loop_config
|
|
219
219
|
# Sets the configuration for the human in the loop workflow for
|
|
220
220
|
# analyzing documents.
|
|
221
|
+
#
|
|
222
|
+
# <note markdown="1"> Amazon Textract uses Amazon Augmented AI (A2I) to run the human
|
|
223
|
+
# review workflows that you specify in `HumanLoopConfig`. A2I entered
|
|
224
|
+
# maintenance mode in July 2026 and no longer accepts new customers.
|
|
225
|
+
# If your account is not an existing A2I customer, requests fail with
|
|
226
|
+
# an `InvalidParameterException`. For more information, see [AWS
|
|
227
|
+
# service availability][1]. If you're an existing A2I customer but
|
|
228
|
+
# receive this error, contact AWS Support and request assistance from
|
|
229
|
+
# the A2I team.
|
|
230
|
+
#
|
|
231
|
+
# </note>
|
|
232
|
+
#
|
|
233
|
+
#
|
|
234
|
+
#
|
|
235
|
+
# [1]: https://aws.amazon.com/about-aws/whats-new/2026/06/aws-service-availability/
|
|
221
236
|
# @return [Types::HumanLoopConfig]
|
|
222
237
|
#
|
|
223
238
|
# @!attribute [rw] queries_config
|
|
@@ -383,7 +398,11 @@ module Aws::Textract
|
|
|
383
398
|
end
|
|
384
399
|
|
|
385
400
|
# Amazon Textract isn't able to read the document. For more information
|
|
386
|
-
# on the document limits in Amazon Textract, see limits.
|
|
401
|
+
# on the document limits in Amazon Textract, see [Hard limits][1].
|
|
402
|
+
#
|
|
403
|
+
#
|
|
404
|
+
#
|
|
405
|
+
# [1]: https://docs.aws.amazon.com/textract/latest/dg/limits.html
|
|
387
406
|
#
|
|
388
407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/textract-2018-06-27/BadDocumentException AWS API Documentation
|
|
389
408
|
#
|
|
@@ -1316,8 +1335,8 @@ module Aws::Textract
|
|
|
1316
1335
|
# @return [Array<Types::Point>]
|
|
1317
1336
|
#
|
|
1318
1337
|
# @!attribute [rw] rotation_angle
|
|
1319
|
-
# Provides a numerical value corresponding to the rotation of the
|
|
1320
|
-
#
|
|
1338
|
+
# Provides a numerical value corresponding to the rotation of the WORD
|
|
1339
|
+
# block. Possible values are 0, 90, 180, and 270.
|
|
1321
1340
|
# @return [Float]
|
|
1322
1341
|
#
|
|
1323
1342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/textract-2018-06-27/Geometry AWS API Documentation
|
|
@@ -1893,6 +1912,20 @@ module Aws::Textract
|
|
|
1893
1912
|
# of the conditions is met. You can also set certain attributes of the
|
|
1894
1913
|
# image before review.
|
|
1895
1914
|
#
|
|
1915
|
+
# <note markdown="1"> Amazon Textract uses Amazon Augmented AI (A2I) to run the human review
|
|
1916
|
+
# workflows that you specify in `HumanLoopConfig`. A2I entered
|
|
1917
|
+
# maintenance mode in July 2026 and no longer accepts new customers. If
|
|
1918
|
+
# your account is not an existing A2I customer, requests fail with an
|
|
1919
|
+
# `InvalidParameterException`. For more information, see [AWS service
|
|
1920
|
+
# availability][1]. If you're an existing A2I customer but receive this
|
|
1921
|
+
# error, contact AWS Support and request assistance from the A2I team.
|
|
1922
|
+
#
|
|
1923
|
+
# </note>
|
|
1924
|
+
#
|
|
1925
|
+
#
|
|
1926
|
+
#
|
|
1927
|
+
# [1]: https://aws.amazon.com/about-aws/whats-new/2026/06/aws-service-availability/
|
|
1928
|
+
#
|
|
1896
1929
|
# @!attribute [rw] human_loop_name
|
|
1897
1930
|
# The name of the human workflow used for this image. This should be
|
|
1898
1931
|
# kept unique within a region.
|
data/lib/aws-sdk-textract.rb
CHANGED