aws-sdk-comprehendmedical 1.43.0 → 1.45.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: 9155786258b367c6de8f572056ccadade47457e7b4f0f7b871b1154f132f84c1
4
- data.tar.gz: afc56cab3dd5f05bbb8f5b320c9ebaf1bcd36ea297efd05ed6ab9dbbb273be55
3
+ metadata.gz: ce20d02d063487a4c193f5f374c0449d5bbc6a504ed570d3eddce5a6342fcf31
4
+ data.tar.gz: 938147a01e015a40cf0a81e221fe85b868f82a2ff5e290dc9c2bc1a5bb672e35
5
5
  SHA512:
6
- metadata.gz: f2867a050e4f7dec7a6e117f764a83e1bf3aadb85505beaaf3226ac434fd89e1161ce756a44c60d238b85c90d533015b91740675bb74826ba7c3bef8f7d89c92
7
- data.tar.gz: 41701284198ff31ffd69da4ff7fcb18e56408616f7371ae887ba2065b57604136fd7fb363d84d4df3876252da7f9037c53452cbd2143ab9a7d3dd3eb245607ec
6
+ metadata.gz: 23421e78abb3138914b94884c4858c6767f871209ab5159332e7d396667caee88f93b34ffbc27fb8d3eced5ab7104cdb977d648ae6690e46c360c45607e26e37
7
+ data.tar.gz: 5638e6dd72a037b32b3fabb425c21eda18acefb01b13aae9290a651a34be9cfd168c183b47ee28e1a5c5097123e8ac8083a806d99ed52f0608f7cd697b8694f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2023-07-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.44.0 (2023-07-05)
10
+ ------------------
11
+
12
+ * Feature - Update to Amazon Comprehend Medical documentation.
13
+
4
14
  1.43.0 (2023-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.45.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
30
  require 'aws-sdk-core/plugins/checksum_algorithm.rb'
31
+ require 'aws-sdk-core/plugins/request_compression.rb'
31
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
33
34
  require 'aws-sdk-core/plugins/sign.rb'
@@ -77,6 +78,7 @@ module Aws::ComprehendMedical
77
78
  add_plugin(Aws::Plugins::TransferEncoding)
78
79
  add_plugin(Aws::Plugins::HttpChecksum)
79
80
  add_plugin(Aws::Plugins::ChecksumAlgorithm)
81
+ add_plugin(Aws::Plugins::RequestCompression)
80
82
  add_plugin(Aws::Plugins::DefaultsMode)
81
83
  add_plugin(Aws::Plugins::RecursionDetection)
82
84
  add_plugin(Aws::Plugins::Sign)
@@ -190,6 +192,10 @@ module Aws::ComprehendMedical
190
192
  # Set to true to disable SDK automatically adding host prefix
191
193
  # to default service endpoint when available.
192
194
  #
195
+ # @option options [Boolean] :disable_request_compression (false)
196
+ # When set to 'true' the request body will not be compressed
197
+ # for supported operations.
198
+ #
193
199
  # @option options [String] :endpoint
194
200
  # The client endpoint is normally constructed from the `:region`
195
201
  # option. You should only configure an `:endpoint` when connecting
@@ -230,6 +236,11 @@ module Aws::ComprehendMedical
230
236
  # Used when loading credentials from the shared credentials file
231
237
  # at HOME/.aws/credentials. When not specified, 'default' is used.
232
238
  #
239
+ # @option options [Integer] :request_min_compression_size_bytes (10240)
240
+ # The minimum size in bytes that triggers compression for request
241
+ # bodies. The value must be non-negative integer value between 0
242
+ # and 10485780 bytes inclusive.
243
+ #
233
244
  # @option options [Proc] :retry_backoff
234
245
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
235
246
  # This option is only used in the `legacy` retry mode.
@@ -387,9 +398,9 @@ module Aws::ComprehendMedical
387
398
  # Use this operation to get the status of a detection job.
388
399
  #
389
400
  # @option params [required, String] :job_id
390
- # The identifier that Comprehend Medical; generated for the job. The
391
- # `StartEntitiesDetectionV2Job` operation returns this identifier in its
392
- # response.
401
+ # The identifier that Amazon Comprehend Medical generated for the job.
402
+ # The `StartEntitiesDetectionV2Job` operation returns this identifier in
403
+ # its response.
393
404
  #
394
405
  # @return [Types::DescribeEntitiesDetectionV2JobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
395
406
  #
@@ -480,8 +491,8 @@ module Aws::ComprehendMedical
480
491
  # detection job.
481
492
  #
482
493
  # @option params [required, String] :job_id
483
- # The identifier that Comprehend Medical; generated for the job. The
484
- # `StartPHIDetectionJob` operation returns this identifier in its
494
+ # The identifier that Amazon Comprehend Medical generated for the job.
495
+ # The `StartPHIDetectionJob` operation returns this identifier in its
485
496
  # response.
486
497
  #
487
498
  # @return [Types::DescribePHIDetectionJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -619,12 +630,11 @@ module Aws::ComprehendMedical
619
630
  #
620
631
  # Inspects the clinical text for a variety of medical entities and
621
632
  # returns specific information about them such as entity category,
622
- # location, and confidence score on that information .
633
+ # location, and confidence score on that information.
623
634
  #
624
635
  # @option params [required, String] :text
625
636
  # A UTF-8 text string containing the clinical content being examined for
626
- # entities. Each string must contain fewer than 20,000 bytes of
627
- # characters.
637
+ # entities.
628
638
  #
629
639
  # @return [Types::DetectEntitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
630
640
  #
@@ -707,8 +717,7 @@ module Aws::ComprehendMedical
707
717
  #
708
718
  # @option params [required, String] :text
709
719
  # A UTF-8 string containing the clinical content being examined for
710
- # entities. Each string must contain fewer than 20,000 bytes of
711
- # characters.
720
+ # entities.
712
721
  #
713
722
  # @return [Types::DetectEntitiesV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
714
723
  #
@@ -782,8 +791,7 @@ module Aws::ComprehendMedical
782
791
  #
783
792
  # @option params [required, String] :text
784
793
  # A UTF-8 text string containing the clinical content being examined for
785
- # PHI entities. Each string must contain fewer than 20,000 bytes of
786
- # characters.
794
+ # PHI entities.
787
795
  #
788
796
  # @return [Types::DetectPHIResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
789
797
  #
@@ -842,8 +850,7 @@ module Aws::ComprehendMedical
842
850
  # entities in English language texts.
843
851
  #
844
852
  # @option params [required, String] :text
845
- # The input text used for analysis. The input for InferICD10CM is a
846
- # string from 1 to 10000 characters.
853
+ # The input text used for analysis.
847
854
  #
848
855
  # @return [Types::InferICD10CMResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
849
856
  #
@@ -905,8 +912,7 @@ module Aws::ComprehendMedical
905
912
  # detects medical entities in English language texts.
906
913
  #
907
914
  # @option params [required, String] :text
908
- # The input text used for analysis. The input for InferRxNorm is a
909
- # string from 1 to 10000 characters.
915
+ # The input text used for analysis.
910
916
  #
911
917
  # @return [Types::InferRxNormResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
912
918
  #
@@ -965,8 +971,7 @@ module Aws::ComprehendMedical
965
971
  # Terms (SNOMED-CT) ontology
966
972
  #
967
973
  # @option params [required, String] :text
968
- # The input text to be analyzed using InferSNOMEDCT. The text should be
969
- # a string with 1 to 10000 characters.
974
+ # The input text to be analyzed using InferSNOMEDCT.
970
975
  #
971
976
  # @return [Types::InferSNOMEDCTResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
972
977
  #
@@ -1156,8 +1161,8 @@ module Aws::ComprehendMedical
1156
1161
  req.send_request(options)
1157
1162
  end
1158
1163
 
1159
- # Gets a list of protected health information (PHI) detection jobs that
1160
- # you have submitted.
1164
+ # Gets a list of protected health information (PHI) detection jobs you
1165
+ # have submitted.
1161
1166
  #
1162
1167
  # @option params [Types::ComprehendMedicalAsyncJobFilter] :filter
1163
1168
  # Filters the jobs that are returned. You can filter jobs based on their
@@ -1354,9 +1359,9 @@ module Aws::ComprehendMedical
1354
1359
  #
1355
1360
  # @option params [required, String] :data_access_role_arn
1356
1361
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1357
- # Management (IAM) role that grants Comprehend Medical; read access to
1358
- # your input data. For more information, see [ Role-Based Permissions
1359
- # Required for Asynchronous Operations][1].
1362
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1363
+ # access to your input data. For more information, see [Role-Based
1364
+ # Permissions Required for Asynchronous Operations][1].
1360
1365
  #
1361
1366
  #
1362
1367
  #
@@ -1367,7 +1372,7 @@ module Aws::ComprehendMedical
1367
1372
  #
1368
1373
  # @option params [String] :client_request_token
1369
1374
  # A unique identifier for the request. If you don't set the client
1370
- # request token, Comprehend Medical; generates one for you.
1375
+ # request token, Amazon Comprehend Medical generates one for you.
1371
1376
  #
1372
1377
  # **A suitable default value is auto-generated.** You should normally
1373
1378
  # not need to pass this option.**
@@ -1378,7 +1383,8 @@ module Aws::ComprehendMedical
1378
1383
  #
1379
1384
  # @option params [required, String] :language_code
1380
1385
  # The language of the input documents. All documents must be in the same
1381
- # language. Comprehend Medical; processes files in US English (en).
1386
+ # language. Amazon Comprehend Medical processes files in US English
1387
+ # (en).
1382
1388
  #
1383
1389
  # @return [Types::StartEntitiesDetectionV2JobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1384
1390
  #
@@ -1427,9 +1433,9 @@ module Aws::ComprehendMedical
1427
1433
  #
1428
1434
  # @option params [required, String] :data_access_role_arn
1429
1435
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1430
- # Management (IAM) role that grants Comprehend Medical; read access to
1431
- # your input data. For more information, see [ Role-Based Permissions
1432
- # Required for Asynchronous Operations][1].
1436
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1437
+ # access to your input data. For more information, see [ Role-Based
1438
+ # Permissions Required for Asynchronous Operations][1].
1433
1439
  #
1434
1440
  #
1435
1441
  #
@@ -1440,7 +1446,7 @@ module Aws::ComprehendMedical
1440
1446
  #
1441
1447
  # @option params [String] :client_request_token
1442
1448
  # A unique identifier for the request. If you don't set the client
1443
- # request token, Comprehend Medical; generates one.
1449
+ # request token, Amazon Comprehend Medical generates one.
1444
1450
  #
1445
1451
  # **A suitable default value is auto-generated.** You should normally
1446
1452
  # not need to pass this option.**
@@ -1500,9 +1506,9 @@ module Aws::ComprehendMedical
1500
1506
  #
1501
1507
  # @option params [required, String] :data_access_role_arn
1502
1508
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1503
- # Management (IAM) role that grants Comprehend Medical; read access to
1504
- # your input data. For more information, see [ Role-Based Permissions
1505
- # Required for Asynchronous Operations][1].
1509
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1510
+ # access to your input data. For more information, see [ Role-Based
1511
+ # Permissions Required for Asynchronous Operations][1].
1506
1512
  #
1507
1513
  #
1508
1514
  #
@@ -1513,7 +1519,7 @@ module Aws::ComprehendMedical
1513
1519
  #
1514
1520
  # @option params [String] :client_request_token
1515
1521
  # A unique identifier for the request. If you don't set the client
1516
- # request token, Comprehend Medical; generates one.
1522
+ # request token, Amazon Comprehend Medical generates one.
1517
1523
  #
1518
1524
  # **A suitable default value is auto-generated.** You should normally
1519
1525
  # not need to pass this option.**
@@ -1573,9 +1579,9 @@ module Aws::ComprehendMedical
1573
1579
  #
1574
1580
  # @option params [required, String] :data_access_role_arn
1575
1581
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1576
- # Management (IAM) role that grants Comprehend Medical; read access to
1577
- # your input data. For more information, see [ Role-Based Permissions
1578
- # Required for Asynchronous Operations][1].
1582
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1583
+ # access to your input data. For more information, see [ Role-Based
1584
+ # Permissions Required for Asynchronous Operations][1].
1579
1585
  #
1580
1586
  #
1581
1587
  #
@@ -1586,7 +1592,7 @@ module Aws::ComprehendMedical
1586
1592
  #
1587
1593
  # @option params [String] :client_request_token
1588
1594
  # A unique identifier for the request. If you don't set the client
1589
- # request token, Comprehend Medical; generates one.
1595
+ # request token, Amazon Comprehend Medical generates one.
1590
1596
  #
1591
1597
  # **A suitable default value is auto-generated.** You should normally
1592
1598
  # not need to pass this option.**
@@ -1856,7 +1862,7 @@ module Aws::ComprehendMedical
1856
1862
  params: params,
1857
1863
  config: config)
1858
1864
  context[:gem_name] = 'aws-sdk-comprehendmedical'
1859
- context[:gem_version] = '1.43.0'
1865
+ context[:gem_version] = '1.45.0'
1860
1866
  Seahorse::Client::Request.new(handlers, context)
1861
1867
  end
1862
1868
 
@@ -21,12 +21,12 @@ module Aws::ComprehendMedical
21
21
  # @return [String]
22
22
  #
23
23
  # @!attribute [rw] score
24
- # The level of confidence that Comprehend Medical; has that the
24
+ # The level of confidence that Amazon Comprehend Medical has that the
25
25
  # segment of text is correctly recognized as an attribute.
26
26
  # @return [Float]
27
27
  #
28
28
  # @!attribute [rw] relationship_score
29
- # The level of confidence that Comprehend Medical; has that this
29
+ # The level of confidence that Amazon Comprehend Medical has that this
30
30
  # attribute is correctly related to this entity.
31
31
  # @return [Float]
32
32
  #
@@ -87,7 +87,7 @@ module Aws::ComprehendMedical
87
87
  #
88
88
  # @!attribute [rw] original_text_characters
89
89
  # The number of characters present in the input text document as
90
- # processed by Comprehend Medical.
90
+ # processed by Amazon Comprehend Medical.
91
91
  # @return [Integer]
92
92
  #
93
93
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/Characters AWS API Documentation
@@ -184,8 +184,8 @@ module Aws::ComprehendMedical
184
184
  # @return [String]
185
185
  #
186
186
  # @!attribute [rw] data_access_role_arn
187
- # The Amazon Resource Name (ARN) that gives Comprehend Medical; read
188
- # access to your input data.
187
+ # The Amazon Resource Name (ARN) that gives Amazon Comprehend Medical
188
+ # read access to your input data.
189
189
  # @return [String]
190
190
  #
191
191
  # @!attribute [rw] manifest_file_path
@@ -225,9 +225,9 @@ module Aws::ComprehendMedical
225
225
  end
226
226
 
227
227
  # @!attribute [rw] job_id
228
- # The identifier that Comprehend Medical; generated for the job. The
229
- # `StartEntitiesDetectionV2Job` operation returns this identifier in
230
- # its response.
228
+ # The identifier that Amazon Comprehend Medical generated for the job.
229
+ # The `StartEntitiesDetectionV2Job` operation returns this identifier
230
+ # in its response.
231
231
  # @return [String]
232
232
  #
233
233
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/DescribeEntitiesDetectionV2JobRequest AWS API Documentation
@@ -279,8 +279,8 @@ module Aws::ComprehendMedical
279
279
  end
280
280
 
281
281
  # @!attribute [rw] job_id
282
- # The identifier that Comprehend Medical; generated for the job. The
283
- # `StartPHIDetectionJob` operation returns this identifier in its
282
+ # The identifier that Amazon Comprehend Medical generated for the job.
283
+ # The `StartPHIDetectionJob` operation returns this identifier in its
284
284
  # response.
285
285
  # @return [String]
286
286
  #
@@ -360,8 +360,7 @@ module Aws::ComprehendMedical
360
360
 
361
361
  # @!attribute [rw] text
362
362
  # A UTF-8 text string containing the clinical content being examined
363
- # for entities. Each string must contain fewer than 20,000 bytes of
364
- # characters.
363
+ # for entities.
365
364
  # @return [String]
366
365
  #
367
366
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/DetectEntitiesRequest AWS API Documentation
@@ -376,9 +375,9 @@ module Aws::ComprehendMedical
376
375
  # The collection of medical entities extracted from the input text and
377
376
  # their associated information. For each entity, the response provides
378
377
  # the entity text, the entity category, where the entity text begins
379
- # and ends, and the level of confidence that Comprehend Medical; has
380
- # in the detection and analysis. Attributes and traits of the entity
381
- # are also returned.
378
+ # and ends, and the level of confidence that Amazon Comprehend Medical
379
+ # has in the detection and analysis. Attributes and traits of the
380
+ # entity are also returned.
382
381
  # @return [Array<Types::Entity>]
383
382
  #
384
383
  # @!attribute [rw] unmapped_attributes
@@ -411,8 +410,7 @@ module Aws::ComprehendMedical
411
410
 
412
411
  # @!attribute [rw] text
413
412
  # A UTF-8 string containing the clinical content being examined for
414
- # entities. Each string must contain fewer than 20,000 bytes of
415
- # characters.
413
+ # entities.
416
414
  # @return [String]
417
415
  #
418
416
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/DetectEntitiesV2Request AWS API Documentation
@@ -460,8 +458,7 @@ module Aws::ComprehendMedical
460
458
 
461
459
  # @!attribute [rw] text
462
460
  # A UTF-8 text string containing the clinical content being examined
463
- # for PHI entities. Each string must contain fewer than 20,000 bytes
464
- # of characters.
461
+ # for PHI entities.
465
462
  # @return [String]
466
463
  #
467
464
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/DetectPHIRequest AWS API Documentation
@@ -476,8 +473,8 @@ module Aws::ComprehendMedical
476
473
  # The collection of PHI entities extracted from the input text and
477
474
  # their associated information. For each entity, the response provides
478
475
  # the entity text, the entity category, where the entity text begins
479
- # and ends, and the level of confidence that Comprehend Medical; has
480
- # in its detection.
476
+ # and ends, and the level of confidence that Amazon Comprehend Medical
477
+ # has in its detection.
481
478
  # @return [Array<Types::Entity>]
482
479
  #
483
480
  # @!attribute [rw] pagination_token
@@ -522,8 +519,8 @@ module Aws::ComprehendMedical
522
519
  # @return [Integer]
523
520
  #
524
521
  # @!attribute [rw] score
525
- # The level of confidence that Comprehend Medical; has in the accuracy
526
- # of the detection.
522
+ # The level of confidence that Amazon Comprehend Medical has in the
523
+ # accuracy of the detection.
527
524
  # @return [Float]
528
525
  #
529
526
  # @!attribute [rw] text
@@ -749,7 +746,7 @@ module Aws::ComprehendMedical
749
746
  # @return [String]
750
747
  #
751
748
  # @!attribute [rw] score
752
- # The level of confidence that Comprehend Medical; has that the
749
+ # The level of confidence that Amazon Comprehend Medical has that the
753
750
  # segment of text is correctly recognized as a trait.
754
751
  # @return [Float]
755
752
  #
@@ -763,8 +760,7 @@ module Aws::ComprehendMedical
763
760
  end
764
761
 
765
762
  # @!attribute [rw] text
766
- # The input text used for analysis. The input for InferICD10CM is a
767
- # string from 1 to 10000 characters.
763
+ # The input text used for analysis.
768
764
  # @return [String]
769
765
  #
770
766
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/InferICD10CMRequest AWS API Documentation
@@ -804,8 +800,7 @@ module Aws::ComprehendMedical
804
800
  end
805
801
 
806
802
  # @!attribute [rw] text
807
- # The input text used for analysis. The input for InferRxNorm is a
808
- # string from 1 to 10000 characters.
803
+ # The input text used for analysis.
809
804
  # @return [String]
810
805
  #
811
806
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/InferRxNormRequest AWS API Documentation
@@ -845,8 +840,7 @@ module Aws::ComprehendMedical
845
840
  end
846
841
 
847
842
  # @!attribute [rw] text
848
- # The input text to be analyzed using InferSNOMEDCT. The text should
849
- # be a string with 1 to 10000 characters.
843
+ # The input text to be analyzed using InferSNOMEDCT.
850
844
  # @return [String]
851
845
  #
852
846
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/InferSNOMEDCTRequest AWS API Documentation
@@ -861,9 +855,9 @@ module Aws::ComprehendMedical
861
855
  # The collection of medical concept entities extracted from the input
862
856
  # text and their associated information. For each entity, the response
863
857
  # provides the entity text, the entity category, where the entity text
864
- # begins and ends, and the level of confidence that Comprehend Medical
865
- # has in the detection and analysis. Attributes and traits of the
866
- # entity are also returned.
858
+ # begins and ends, and the level of confidence that Amazon Comprehend
859
+ # Medical has in the detection and analysis. Attributes and traits of
860
+ # the entity are also returned.
867
861
  # @return [Array<Types::SNOMEDCTEntity>]
868
862
  #
869
863
  # @!attribute [rw] pagination_token
@@ -904,9 +898,6 @@ module Aws::ComprehendMedical
904
898
  # @!attribute [rw] s3_bucket
905
899
  # The URI of the S3 bucket that contains the input data. The bucket
906
900
  # must be in the same region as the API endpoint that you are calling.
907
- #
908
- # Each file in the document collection must be less than 40 KB. You
909
- # can store a maximum of 30 GB in the bucket.
910
901
  # @return [String]
911
902
  #
912
903
  # @!attribute [rw] s3_key
@@ -1182,9 +1173,10 @@ module Aws::ComprehendMedical
1182
1173
  # @return [String]
1183
1174
  #
1184
1175
  # @!attribute [rw] s3_key
1185
- # The path to the output data files in the S3 bucket. Comprehend
1186
- # Medical; creates an output directory using the job ID so that the
1187
- # output from one job does not overwrite the output of another.
1176
+ # The path to the output data files in the S3 bucket. Amazon
1177
+ # Comprehend Medical creates an output directory using the job ID so
1178
+ # that the output from one job does not overwrite the output of
1179
+ # another.
1188
1180
  # @return [String]
1189
1181
  #
1190
1182
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/OutputDataConfig AWS API Documentation
@@ -1220,8 +1212,8 @@ module Aws::ComprehendMedical
1220
1212
  # @return [String]
1221
1213
  #
1222
1214
  # @!attribute [rw] score
1223
- # The level of confidence that Comprehend Medical has that the segment
1224
- # of text is correctly recognized as an attribute.
1215
+ # The level of confidence that Amazon Comprehend Medical has that the
1216
+ # segment of text is correctly recognized as an attribute.
1225
1217
  # @return [Float]
1226
1218
  #
1227
1219
  # @!attribute [rw] relationship_score
@@ -1413,12 +1405,12 @@ module Aws::ComprehendMedical
1413
1405
  # @return [String]
1414
1406
  #
1415
1407
  # @!attribute [rw] score
1416
- # The level of confidence that Comprehend Medical has that the segment
1417
- # of text is correctly recognized as an attribute.
1408
+ # The level of confidence that Amazon Comprehend Medical has that the
1409
+ # segment of text is correctly recognized as an attribute.
1418
1410
  # @return [Float]
1419
1411
  #
1420
1412
  # @!attribute [rw] relationship_score
1421
- # The level of confidence that Comprehend Medical has that this
1413
+ # The level of confidence that Amazon Comprehend Medical has that this
1422
1414
  # attribute is correctly related to this entity.
1423
1415
  # @return [Float]
1424
1416
  #
@@ -1489,8 +1481,8 @@ module Aws::ComprehendMedical
1489
1481
  # @return [String]
1490
1482
  #
1491
1483
  # @!attribute [rw] score
1492
- # The level of confidence Comprehend Medical has that the entity
1493
- # should be linked to the identified SNOMED-CT concept.
1484
+ # The level of confidence Amazon Comprehend Medical has that the
1485
+ # entity should be linked to the identified SNOMED-CT concept.
1494
1486
  # @return [Float]
1495
1487
  #
1496
1488
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/SNOMEDCTConcept AWS API Documentation
@@ -1534,9 +1526,9 @@ module Aws::ComprehendMedical
1534
1526
  # The collection of medical entities extracted from the input text and
1535
1527
  # their associated information. For each entity, the response provides
1536
1528
  # the entity text, the entity category, where the entity text begins and
1537
- # ends, and the level of confidence that Comprehend Medical has in the
1538
- # detection and analysis. Attributes and traits of the entity are also
1539
- # returned.
1529
+ # ends, and the level of confidence that Amazon Comprehend Medical has
1530
+ # in the detection and analysis. Attributes and traits of the entity are
1531
+ # also returned.
1540
1532
  #
1541
1533
  # @!attribute [rw] id
1542
1534
  # The numeric identifier for the entity. This is a monotonically
@@ -1561,8 +1553,8 @@ module Aws::ComprehendMedical
1561
1553
  # @return [String]
1562
1554
  #
1563
1555
  # @!attribute [rw] score
1564
- # The level of confidence that Comprehend Medical has in the accuracy
1565
- # of the detected entity.
1556
+ # The level of confidence that Amazon Comprehend Medical has in the
1557
+ # accuracy of the detected entity.
1566
1558
  # @return [Float]
1567
1559
  #
1568
1560
  # @!attribute [rw] begin_offset
@@ -1615,8 +1607,8 @@ module Aws::ComprehendMedical
1615
1607
  # @return [String]
1616
1608
  #
1617
1609
  # @!attribute [rw] score
1618
- # The level of confidence that Comprehend Medical has in the accuracy
1619
- # of a detected trait.
1610
+ # The level of confidence that Amazon Comprehend Medical has in the
1611
+ # accuracy of a detected trait.
1620
1612
  # @return [Float]
1621
1613
  #
1622
1614
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/SNOMEDCTTrait AWS API Documentation
@@ -1628,8 +1620,8 @@ module Aws::ComprehendMedical
1628
1620
  include Aws::Structure
1629
1621
  end
1630
1622
 
1631
- # The Comprehend Medical; service is temporarily unavailable. Please
1632
- # wait and then retry your request.
1623
+ # The Amazon Comprehend Medical service is temporarily unavailable.
1624
+ # Please wait and then retry your request.
1633
1625
  #
1634
1626
  # @!attribute [rw] message
1635
1627
  # @return [String]
@@ -1654,9 +1646,9 @@ module Aws::ComprehendMedical
1654
1646
  #
1655
1647
  # @!attribute [rw] data_access_role_arn
1656
1648
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1657
- # Management (IAM) role that grants Comprehend Medical; read access to
1658
- # your input data. For more information, see [ Role-Based Permissions
1659
- # Required for Asynchronous Operations][1].
1649
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1650
+ # access to your input data. For more information, see [Role-Based
1651
+ # Permissions Required for Asynchronous Operations][1].
1660
1652
  #
1661
1653
  #
1662
1654
  #
@@ -1669,7 +1661,7 @@ module Aws::ComprehendMedical
1669
1661
  #
1670
1662
  # @!attribute [rw] client_request_token
1671
1663
  # A unique identifier for the request. If you don't set the client
1672
- # request token, Comprehend Medical; generates one for you.
1664
+ # request token, Amazon Comprehend Medical generates one for you.
1673
1665
  #
1674
1666
  # **A suitable default value is auto-generated.** You should normally
1675
1667
  # not need to pass this option.
@@ -1682,8 +1674,8 @@ module Aws::ComprehendMedical
1682
1674
  #
1683
1675
  # @!attribute [rw] language_code
1684
1676
  # The language of the input documents. All documents must be in the
1685
- # same language. Comprehend Medical; processes files in US English
1686
- # (en).
1677
+ # same language. Amazon Comprehend Medical processes files in US
1678
+ # English (en).
1687
1679
  # @return [String]
1688
1680
  #
1689
1681
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/StartEntitiesDetectionV2JobRequest AWS API Documentation
@@ -1724,9 +1716,9 @@ module Aws::ComprehendMedical
1724
1716
  #
1725
1717
  # @!attribute [rw] data_access_role_arn
1726
1718
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1727
- # Management (IAM) role that grants Comprehend Medical; read access to
1728
- # your input data. For more information, see [ Role-Based Permissions
1729
- # Required for Asynchronous Operations][1].
1719
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1720
+ # access to your input data. For more information, see [ Role-Based
1721
+ # Permissions Required for Asynchronous Operations][1].
1730
1722
  #
1731
1723
  #
1732
1724
  #
@@ -1739,7 +1731,7 @@ module Aws::ComprehendMedical
1739
1731
  #
1740
1732
  # @!attribute [rw] client_request_token
1741
1733
  # A unique identifier for the request. If you don't set the client
1742
- # request token, Comprehend Medical; generates one.
1734
+ # request token, Amazon Comprehend Medical generates one.
1743
1735
  #
1744
1736
  # **A suitable default value is auto-generated.** You should normally
1745
1737
  # not need to pass this option.
@@ -1792,9 +1784,9 @@ module Aws::ComprehendMedical
1792
1784
  #
1793
1785
  # @!attribute [rw] data_access_role_arn
1794
1786
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1795
- # Management (IAM) role that grants Comprehend Medical; read access to
1796
- # your input data. For more information, see [ Role-Based Permissions
1797
- # Required for Asynchronous Operations][1].
1787
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1788
+ # access to your input data. For more information, see [ Role-Based
1789
+ # Permissions Required for Asynchronous Operations][1].
1798
1790
  #
1799
1791
  #
1800
1792
  #
@@ -1807,7 +1799,7 @@ module Aws::ComprehendMedical
1807
1799
  #
1808
1800
  # @!attribute [rw] client_request_token
1809
1801
  # A unique identifier for the request. If you don't set the client
1810
- # request token, Comprehend Medical; generates one.
1802
+ # request token, Amazon Comprehend Medical generates one.
1811
1803
  #
1812
1804
  # **A suitable default value is auto-generated.** You should normally
1813
1805
  # not need to pass this option.
@@ -1860,9 +1852,9 @@ module Aws::ComprehendMedical
1860
1852
  #
1861
1853
  # @!attribute [rw] data_access_role_arn
1862
1854
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
1863
- # Management (IAM) role that grants Comprehend Medical; read access to
1864
- # your input data. For more information, see [ Role-Based Permissions
1865
- # Required for Asynchronous Operations][1].
1855
+ # Management (IAM) role that grants Amazon Comprehend Medical read
1856
+ # access to your input data. For more information, see [ Role-Based
1857
+ # Permissions Required for Asynchronous Operations][1].
1866
1858
  #
1867
1859
  #
1868
1860
  #
@@ -1875,7 +1867,7 @@ module Aws::ComprehendMedical
1875
1867
  #
1876
1868
  # @!attribute [rw] client_request_token
1877
1869
  # A unique identifier for the request. If you don't set the client
1878
- # request token, Comprehend Medical; generates one.
1870
+ # request token, Amazon Comprehend Medical generates one.
1879
1871
  #
1880
1872
  # **A suitable default value is auto-generated.** You should normally
1881
1873
  # not need to pass this option.
@@ -2142,8 +2134,8 @@ module Aws::ComprehendMedical
2142
2134
  # @return [String]
2143
2135
  #
2144
2136
  # @!attribute [rw] score
2145
- # The level of confidence that Comprehend Medical; has in the accuracy
2146
- # of this trait.
2137
+ # The level of confidence that Amazon Comprehend Medical has in the
2138
+ # accuracy of this trait.
2147
2139
  # @return [Float]
2148
2140
  #
2149
2141
  # @see http://docs.aws.amazon.com/goto/WebAPI/comprehendmedical-2018-10-30/Trait AWS API Documentation
@@ -2155,8 +2147,8 @@ module Aws::ComprehendMedical
2155
2147
  include Aws::Structure
2156
2148
  end
2157
2149
 
2158
- # An attribute that was extracted, but Comprehend Medical; was unable to
2159
- # relate to an entity.
2150
+ # An attribute that was extracted, but Amazon Comprehend Medical was
2151
+ # unable to relate to an entity.
2160
2152
  #
2161
2153
  # @!attribute [rw] type
2162
2154
  # The type of the unmapped attribute, could be one of the following
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-comprehendmedical/customizations'
52
52
  # @!group service
53
53
  module Aws::ComprehendMedical
54
54
 
55
- GEM_VERSION = '1.43.0'
55
+ GEM_VERSION = '1.45.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-comprehendmedical
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.45.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-06-28 00:00:00.000000000 Z
11
+ date: 2023-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.176.0
22
+ version: 3.177.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.176.0
32
+ version: 3.177.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement