aws-sdk-comprehendmedical 1.38.0 → 1.40.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: e5e0d2bac703e5120bfcc330b3bc23d484465eaf2113ce994434e64e777943b6
4
- data.tar.gz: dad8aeec2b3b3caf10ebf29f86a6c413abbf05b008d7d1311fbb477f93e71b26
3
+ metadata.gz: 9db9fc9273938d353a33cdf1bc55a0093273b44e2d5d45df17e960702c236ffa
4
+ data.tar.gz: f8967714a37a05c6b3607757ef057abc4ce615b4f8bf14aa45cfe811994574de
5
5
  SHA512:
6
- metadata.gz: f3454bd2ff411052f0e0a61269c7945c0fc237f1b82936e59d412261da3ba9cef89a94115240620c1bdcbca03d4d1fba240adb4e68ed279c3c95d2ab726eec61
7
- data.tar.gz: 4e6fdfe6a9c895637352e96c91c11b3abb0e559114970bccafe70c9c8dd49edf1df9cbfdbd69c558c4fec588bb379356e1274e4e7d30c5d12321048e742add62
6
+ metadata.gz: 6095894160546572c747a7eac89e1d672d96cdc48f37758b008f364931aab01b40f6f4b52a3b3453fe883e0f4279a2da555d353393ec0ee41c6c675f8569978b
7
+ data.tar.gz: dcfe3673370a2e6ebd10b59ee5df9035b799393bb8bc6c6ae63f6d24846323c26269816046e406f705f63e289f0b75eb40b68b21208f6bbb9db7fc6867ca5f9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.39.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.38.0 (2022-11-16)
5
17
  ------------------
6
18
 
@@ -200,4 +212,4 @@ Unreleased Changes
200
212
  1.0.0 (2018-11-28)
201
213
  ------------------
202
214
 
203
- * Feature - Initial release of `aws-sdk-comprehendmedical`.
215
+ * Feature - Initial release of `aws-sdk-comprehendmedical`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.40.0
@@ -275,6 +275,11 @@ module Aws::ComprehendMedical
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1851,7 +1856,7 @@ module Aws::ComprehendMedical
1851
1856
  params: params,
1852
1857
  config: config)
1853
1858
  context[:gem_name] = 'aws-sdk-comprehendmedical'
1854
- context[:gem_version] = '1.38.0'
1859
+ context[:gem_version] = '1.40.0'
1855
1860
  Seahorse::Client::Request.new(handlers, context)
1856
1861
  end
1857
1862
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ComprehendMedical
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://comprehendmedical-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://comprehendmedical-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://comprehendmedical.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://comprehendmedical.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2NvbXByZWhlbmRtZWRpY2FsLWZpcHMue1Jl
77
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
78
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
79
- In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
80
- dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
81
- IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
82
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
83
- IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
84
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
85
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
86
- UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
87
- dWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMi
88
- Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
89
- L2NvbXByZWhlbmRtZWRpY2FsLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
90
- c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
91
- fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
92
- cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
93
- IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
94
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
95
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
96
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
97
- W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
98
- b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
99
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
100
- cmwiOiJodHRwczovL2NvbXByZWhlbmRtZWRpY2FsLntSZWdpb259LntQYXJ0
101
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
102
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
103
- aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
104
- dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
105
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
106
- InVybCI6Imh0dHBzOi8vY29tcHJlaGVuZG1lZGljYWwue1JlZ2lvbn0ue1Bh
107
- cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
108
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -100,16 +100,6 @@ module Aws::ComprehendMedical
100
100
 
101
101
  # Provides information for filtering a list of detection jobs.
102
102
  #
103
- # @note When making an API call, you may pass ComprehendMedicalAsyncJobFilter
104
- # data as a hash:
105
- #
106
- # {
107
- # job_name: "JobName",
108
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
109
- # submit_time_before: Time.now,
110
- # submit_time_after: Time.now,
111
- # }
112
- #
113
103
  # @!attribute [rw] job_name
114
104
  # Filters on the name of the job.
115
105
  # @return [String]
@@ -234,13 +224,6 @@ module Aws::ComprehendMedical
234
224
  include Aws::Structure
235
225
  end
236
226
 
237
- # @note When making an API call, you may pass DescribeEntitiesDetectionV2JobRequest
238
- # data as a hash:
239
- #
240
- # {
241
- # job_id: "JobId", # required
242
- # }
243
- #
244
227
  # @!attribute [rw] job_id
245
228
  # The identifier that Comprehend Medical; generated for the job. The
246
229
  # `StartEntitiesDetectionV2Job` operation returns this identifier in
@@ -268,13 +251,6 @@ module Aws::ComprehendMedical
268
251
  include Aws::Structure
269
252
  end
270
253
 
271
- # @note When making an API call, you may pass DescribeICD10CMInferenceJobRequest
272
- # data as a hash:
273
- #
274
- # {
275
- # job_id: "JobId", # required
276
- # }
277
- #
278
254
  # @!attribute [rw] job_id
279
255
  # The identifier that Amazon Comprehend Medical generated for the job.
280
256
  # `The StartICD10CMInferenceJob` operation returns this identifier in
@@ -302,13 +278,6 @@ module Aws::ComprehendMedical
302
278
  include Aws::Structure
303
279
  end
304
280
 
305
- # @note When making an API call, you may pass DescribePHIDetectionJobRequest
306
- # data as a hash:
307
- #
308
- # {
309
- # job_id: "JobId", # required
310
- # }
311
- #
312
281
  # @!attribute [rw] job_id
313
282
  # The identifier that Comprehend Medical; generated for the job. The
314
283
  # `StartPHIDetectionJob` operation returns this identifier in its
@@ -336,13 +305,6 @@ module Aws::ComprehendMedical
336
305
  include Aws::Structure
337
306
  end
338
307
 
339
- # @note When making an API call, you may pass DescribeRxNormInferenceJobRequest
340
- # data as a hash:
341
- #
342
- # {
343
- # job_id: "JobId", # required
344
- # }
345
- #
346
308
  # @!attribute [rw] job_id
347
309
  # The identifier that Amazon Comprehend Medical generated for the job.
348
310
  # The StartRxNormInferenceJob operation returns this identifier in its
@@ -370,13 +332,6 @@ module Aws::ComprehendMedical
370
332
  include Aws::Structure
371
333
  end
372
334
 
373
- # @note When making an API call, you may pass DescribeSNOMEDCTInferenceJobRequest
374
- # data as a hash:
375
- #
376
- # {
377
- # job_id: "JobId", # required
378
- # }
379
- #
380
335
  # @!attribute [rw] job_id
381
336
  # The identifier that Amazon Comprehend Medical generated for the job.
382
337
  # The StartSNOMEDCTInferenceJob operation returns this identifier in
@@ -403,13 +358,6 @@ module Aws::ComprehendMedical
403
358
  include Aws::Structure
404
359
  end
405
360
 
406
- # @note When making an API call, you may pass DetectEntitiesRequest
407
- # data as a hash:
408
- #
409
- # {
410
- # text: "BoundedLengthString", # required
411
- # }
412
- #
413
361
  # @!attribute [rw] text
414
362
  # A UTF-8 text string containing the clinical content being examined
415
363
  # for entities. Each string must contain fewer than 20,000 bytes of
@@ -461,13 +409,6 @@ module Aws::ComprehendMedical
461
409
  include Aws::Structure
462
410
  end
463
411
 
464
- # @note When making an API call, you may pass DetectEntitiesV2Request
465
- # data as a hash:
466
- #
467
- # {
468
- # text: "BoundedLengthString", # required
469
- # }
470
- #
471
412
  # @!attribute [rw] text
472
413
  # A UTF-8 string containing the clinical content being examined for
473
414
  # entities. Each string must contain fewer than 20,000 bytes of
@@ -517,13 +458,6 @@ module Aws::ComprehendMedical
517
458
  include Aws::Structure
518
459
  end
519
460
 
520
- # @note When making an API call, you may pass DetectPHIRequest
521
- # data as a hash:
522
- #
523
- # {
524
- # text: "BoundedLengthString", # required
525
- # }
526
- #
527
461
  # @!attribute [rw] text
528
462
  # A UTF-8 text string containing the clinical content being examined
529
463
  # for PHI entities. Each string must contain fewer than 20,000 bytes
@@ -828,13 +762,6 @@ module Aws::ComprehendMedical
828
762
  include Aws::Structure
829
763
  end
830
764
 
831
- # @note When making an API call, you may pass InferICD10CMRequest
832
- # data as a hash:
833
- #
834
- # {
835
- # text: "OntologyLinkingBoundedLengthString", # required
836
- # }
837
- #
838
765
  # @!attribute [rw] text
839
766
  # The input text used for analysis. The input for InferICD10CM is a
840
767
  # string from 1 to 10000 characters.
@@ -876,13 +803,6 @@ module Aws::ComprehendMedical
876
803
  include Aws::Structure
877
804
  end
878
805
 
879
- # @note When making an API call, you may pass InferRxNormRequest
880
- # data as a hash:
881
- #
882
- # {
883
- # text: "OntologyLinkingBoundedLengthString", # required
884
- # }
885
- #
886
806
  # @!attribute [rw] text
887
807
  # The input text used for analysis. The input for InferRxNorm is a
888
808
  # string from 1 to 10000 characters.
@@ -924,13 +844,6 @@ module Aws::ComprehendMedical
924
844
  include Aws::Structure
925
845
  end
926
846
 
927
- # @note When making an API call, you may pass InferSNOMEDCTRequest
928
- # data as a hash:
929
- #
930
- # {
931
- # text: "OntologyLinkingBoundedLengthString", # required
932
- # }
933
- #
934
847
  # @!attribute [rw] text
935
848
  # The input text to be analyzed using InferSNOMEDCT. The text should
936
849
  # be a string with 1 to 10000 characters.
@@ -988,14 +901,6 @@ module Aws::ComprehendMedical
988
901
  # The input properties for an entities detection job. This includes the
989
902
  # name of the S3 bucket and the path to the files to be analyzed.
990
903
  #
991
- # @note When making an API call, you may pass InputDataConfig
992
- # data as a hash:
993
- #
994
- # {
995
- # s3_bucket: "S3Bucket", # required
996
- # s3_key: "S3Key",
997
- # }
998
- #
999
904
  # @!attribute [rw] s3_bucket
1000
905
  # The URI of the S3 bucket that contains the input data. The bucket
1001
906
  # must be in the same region as the API endpoint that you are calling.
@@ -1058,20 +963,6 @@ module Aws::ComprehendMedical
1058
963
  include Aws::Structure
1059
964
  end
1060
965
 
1061
- # @note When making an API call, you may pass ListEntitiesDetectionV2JobsRequest
1062
- # data as a hash:
1063
- #
1064
- # {
1065
- # filter: {
1066
- # job_name: "JobName",
1067
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
1068
- # submit_time_before: Time.now,
1069
- # submit_time_after: Time.now,
1070
- # },
1071
- # next_token: "String",
1072
- # max_results: 1,
1073
- # }
1074
- #
1075
966
  # @!attribute [rw] filter
1076
967
  # Filters the jobs that are returned. You can filter jobs based on
1077
968
  # their names, status, or the date and time that they were submitted.
@@ -1114,20 +1005,6 @@ module Aws::ComprehendMedical
1114
1005
  include Aws::Structure
1115
1006
  end
1116
1007
 
1117
- # @note When making an API call, you may pass ListICD10CMInferenceJobsRequest
1118
- # data as a hash:
1119
- #
1120
- # {
1121
- # filter: {
1122
- # job_name: "JobName",
1123
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
1124
- # submit_time_before: Time.now,
1125
- # submit_time_after: Time.now,
1126
- # },
1127
- # next_token: "String",
1128
- # max_results: 1,
1129
- # }
1130
- #
1131
1008
  # @!attribute [rw] filter
1132
1009
  # Filters the jobs that are returned. You can filter jobs based on
1133
1010
  # their names, status, or the date and time that they were submitted.
@@ -1170,20 +1047,6 @@ module Aws::ComprehendMedical
1170
1047
  include Aws::Structure
1171
1048
  end
1172
1049
 
1173
- # @note When making an API call, you may pass ListPHIDetectionJobsRequest
1174
- # data as a hash:
1175
- #
1176
- # {
1177
- # filter: {
1178
- # job_name: "JobName",
1179
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
1180
- # submit_time_before: Time.now,
1181
- # submit_time_after: Time.now,
1182
- # },
1183
- # next_token: "String",
1184
- # max_results: 1,
1185
- # }
1186
- #
1187
1050
  # @!attribute [rw] filter
1188
1051
  # Filters the jobs that are returned. You can filter jobs based on
1189
1052
  # their names, status, or the date and time that they were submitted.
@@ -1226,20 +1089,6 @@ module Aws::ComprehendMedical
1226
1089
  include Aws::Structure
1227
1090
  end
1228
1091
 
1229
- # @note When making an API call, you may pass ListRxNormInferenceJobsRequest
1230
- # data as a hash:
1231
- #
1232
- # {
1233
- # filter: {
1234
- # job_name: "JobName",
1235
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
1236
- # submit_time_before: Time.now,
1237
- # submit_time_after: Time.now,
1238
- # },
1239
- # next_token: "String",
1240
- # max_results: 1,
1241
- # }
1242
- #
1243
1092
  # @!attribute [rw] filter
1244
1093
  # Filters the jobs that are returned. You can filter jobs based on
1245
1094
  # their names, status, or the date and time that they were submitted.
@@ -1282,20 +1131,6 @@ module Aws::ComprehendMedical
1282
1131
  include Aws::Structure
1283
1132
  end
1284
1133
 
1285
- # @note When making an API call, you may pass ListSNOMEDCTInferenceJobsRequest
1286
- # data as a hash:
1287
- #
1288
- # {
1289
- # filter: {
1290
- # job_name: "JobName",
1291
- # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, PARTIAL_SUCCESS, FAILED, STOP_REQUESTED, STOPPED
1292
- # submit_time_before: Time.now,
1293
- # submit_time_after: Time.now,
1294
- # },
1295
- # next_token: "String",
1296
- # max_results: 1,
1297
- # }
1298
- #
1299
1134
  # @!attribute [rw] filter
1300
1135
  # Provides information for filtering a list of detection jobs.
1301
1136
  # @return [Types::ComprehendMedicalAsyncJobFilter]
@@ -1338,14 +1173,6 @@ module Aws::ComprehendMedical
1338
1173
 
1339
1174
  # The output properties for a detection job.
1340
1175
  #
1341
- # @note When making an API call, you may pass OutputDataConfig
1342
- # data as a hash:
1343
- #
1344
- # {
1345
- # s3_bucket: "S3Bucket", # required
1346
- # s3_key: "S3Key",
1347
- # }
1348
- #
1349
1176
  # @!attribute [rw] s3_bucket
1350
1177
  # When you use the `OutputDataConfig` object with asynchronous
1351
1178
  # operations, you specify the Amazon S3 location where you want to
@@ -1815,25 +1642,6 @@ module Aws::ComprehendMedical
1815
1642
  include Aws::Structure
1816
1643
  end
1817
1644
 
1818
- # @note When making an API call, you may pass StartEntitiesDetectionV2JobRequest
1819
- # data as a hash:
1820
- #
1821
- # {
1822
- # input_data_config: { # required
1823
- # s3_bucket: "S3Bucket", # required
1824
- # s3_key: "S3Key",
1825
- # },
1826
- # output_data_config: { # required
1827
- # s3_bucket: "S3Bucket", # required
1828
- # s3_key: "S3Key",
1829
- # },
1830
- # data_access_role_arn: "IamRoleArn", # required
1831
- # job_name: "JobName",
1832
- # client_request_token: "ClientRequestTokenString",
1833
- # kms_key: "KMSKey",
1834
- # language_code: "en", # required, accepts en
1835
- # }
1836
- #
1837
1645
  # @!attribute [rw] input_data_config
1838
1646
  # The input configuration that specifies the format and location of
1839
1647
  # the input data for the job.
@@ -1906,25 +1714,6 @@ module Aws::ComprehendMedical
1906
1714
  include Aws::Structure
1907
1715
  end
1908
1716
 
1909
- # @note When making an API call, you may pass StartICD10CMInferenceJobRequest
1910
- # data as a hash:
1911
- #
1912
- # {
1913
- # input_data_config: { # required
1914
- # s3_bucket: "S3Bucket", # required
1915
- # s3_key: "S3Key",
1916
- # },
1917
- # output_data_config: { # required
1918
- # s3_bucket: "S3Bucket", # required
1919
- # s3_key: "S3Key",
1920
- # },
1921
- # data_access_role_arn: "IamRoleArn", # required
1922
- # job_name: "JobName",
1923
- # client_request_token: "ClientRequestTokenString",
1924
- # kms_key: "KMSKey",
1925
- # language_code: "en", # required, accepts en
1926
- # }
1927
- #
1928
1717
  # @!attribute [rw] input_data_config
1929
1718
  # Specifies the format and location of the input data for the job.
1930
1719
  # @return [Types::InputDataConfig]
@@ -1993,25 +1782,6 @@ module Aws::ComprehendMedical
1993
1782
  include Aws::Structure
1994
1783
  end
1995
1784
 
1996
- # @note When making an API call, you may pass StartPHIDetectionJobRequest
1997
- # data as a hash:
1998
- #
1999
- # {
2000
- # input_data_config: { # required
2001
- # s3_bucket: "S3Bucket", # required
2002
- # s3_key: "S3Key",
2003
- # },
2004
- # output_data_config: { # required
2005
- # s3_bucket: "S3Bucket", # required
2006
- # s3_key: "S3Key",
2007
- # },
2008
- # data_access_role_arn: "IamRoleArn", # required
2009
- # job_name: "JobName",
2010
- # client_request_token: "ClientRequestTokenString",
2011
- # kms_key: "KMSKey",
2012
- # language_code: "en", # required, accepts en
2013
- # }
2014
- #
2015
1785
  # @!attribute [rw] input_data_config
2016
1786
  # Specifies the format and location of the input data for the job.
2017
1787
  # @return [Types::InputDataConfig]
@@ -2080,25 +1850,6 @@ module Aws::ComprehendMedical
2080
1850
  include Aws::Structure
2081
1851
  end
2082
1852
 
2083
- # @note When making an API call, you may pass StartRxNormInferenceJobRequest
2084
- # data as a hash:
2085
- #
2086
- # {
2087
- # input_data_config: { # required
2088
- # s3_bucket: "S3Bucket", # required
2089
- # s3_key: "S3Key",
2090
- # },
2091
- # output_data_config: { # required
2092
- # s3_bucket: "S3Bucket", # required
2093
- # s3_key: "S3Key",
2094
- # },
2095
- # data_access_role_arn: "IamRoleArn", # required
2096
- # job_name: "JobName",
2097
- # client_request_token: "ClientRequestTokenString",
2098
- # kms_key: "KMSKey",
2099
- # language_code: "en", # required, accepts en
2100
- # }
2101
- #
2102
1853
  # @!attribute [rw] input_data_config
2103
1854
  # Specifies the format and location of the input data for the job.
2104
1855
  # @return [Types::InputDataConfig]
@@ -2166,25 +1917,6 @@ module Aws::ComprehendMedical
2166
1917
  include Aws::Structure
2167
1918
  end
2168
1919
 
2169
- # @note When making an API call, you may pass StartSNOMEDCTInferenceJobRequest
2170
- # data as a hash:
2171
- #
2172
- # {
2173
- # input_data_config: { # required
2174
- # s3_bucket: "S3Bucket", # required
2175
- # s3_key: "S3Key",
2176
- # },
2177
- # output_data_config: { # required
2178
- # s3_bucket: "S3Bucket", # required
2179
- # s3_key: "S3Key",
2180
- # },
2181
- # data_access_role_arn: "IamRoleArn", # required
2182
- # job_name: "JobName",
2183
- # client_request_token: "ClientRequestTokenString",
2184
- # kms_key: "KMSKey",
2185
- # language_code: "en", # required, accepts en
2186
- # }
2187
- #
2188
1920
  # @!attribute [rw] input_data_config
2189
1921
  # The input properties for an entities detection job. This includes
2190
1922
  # the name of the S3 bucket and the path to the files to be analyzed.
@@ -2249,13 +1981,6 @@ module Aws::ComprehendMedical
2249
1981
  include Aws::Structure
2250
1982
  end
2251
1983
 
2252
- # @note When making an API call, you may pass StopEntitiesDetectionV2JobRequest
2253
- # data as a hash:
2254
- #
2255
- # {
2256
- # job_id: "JobId", # required
2257
- # }
2258
- #
2259
1984
  # @!attribute [rw] job_id
2260
1985
  # The identifier of the medical entities job to stop.
2261
1986
  # @return [String]
@@ -2281,13 +2006,6 @@ module Aws::ComprehendMedical
2281
2006
  include Aws::Structure
2282
2007
  end
2283
2008
 
2284
- # @note When making an API call, you may pass StopICD10CMInferenceJobRequest
2285
- # data as a hash:
2286
- #
2287
- # {
2288
- # job_id: "JobId", # required
2289
- # }
2290
- #
2291
2009
  # @!attribute [rw] job_id
2292
2010
  # The identifier of the job.
2293
2011
  # @return [String]
@@ -2313,13 +2031,6 @@ module Aws::ComprehendMedical
2313
2031
  include Aws::Structure
2314
2032
  end
2315
2033
 
2316
- # @note When making an API call, you may pass StopPHIDetectionJobRequest
2317
- # data as a hash:
2318
- #
2319
- # {
2320
- # job_id: "JobId", # required
2321
- # }
2322
- #
2323
2034
  # @!attribute [rw] job_id
2324
2035
  # The identifier of the PHI detection job to stop.
2325
2036
  # @return [String]
@@ -2344,13 +2055,6 @@ module Aws::ComprehendMedical
2344
2055
  include Aws::Structure
2345
2056
  end
2346
2057
 
2347
- # @note When making an API call, you may pass StopRxNormInferenceJobRequest
2348
- # data as a hash:
2349
- #
2350
- # {
2351
- # job_id: "JobId", # required
2352
- # }
2353
- #
2354
2058
  # @!attribute [rw] job_id
2355
2059
  # The identifier of the job.
2356
2060
  # @return [String]
@@ -2376,13 +2080,6 @@ module Aws::ComprehendMedical
2376
2080
  include Aws::Structure
2377
2081
  end
2378
2082
 
2379
- # @note When making an API call, you may pass StopSNOMEDCTInferenceJobRequest
2380
- # data as a hash:
2381
- #
2382
- # {
2383
- # job_id: "JobId", # required
2384
- # }
2385
- #
2386
2083
  # @!attribute [rw] job_id
2387
2084
  # The job id of the asynchronous InferSNOMEDCT job to be stopped.
2388
2085
  # @return [String]
@@ -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.38.0'
55
+ GEM_VERSION = '1.40.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.38.0
4
+ version: 1.40.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: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement