aws-sdk-comprehendmedical 1.38.0 → 1.39.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-comprehendmedical/client.rb +1 -1
- data/lib/aws-sdk-comprehendmedical/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-comprehendmedical/types.rb +0 -303
- data/lib/aws-sdk-comprehendmedical.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b455e3e1c042106ebe37cf171177bdab864138e0cc83ede42c495e190288cc1
|
4
|
+
data.tar.gz: cc3fa345ae649d6d59ea14ac357cf88ab09b7ad1f43dfccc278640a2ba4c85ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d9bf8726f4130b5eba1c961e7cdb6301a895d347ca3449b573533f13c5be707fed35382f263fb36eec19d5da294e138ca934a90d80e6e8085f74f7d12a8ea6f
|
7
|
+
data.tar.gz: 4c56d918c33990433a30d1b848e786f34067ab403f35680428489415c24c3253711c6bb8eeb54eec3e8ce5eb59e7c36f73506751b8c74b0baa37f3b73d56ccbf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.38.0 (2022-11-16)
|
5
12
|
------------------
|
6
13
|
|
@@ -200,4 +207,4 @@ Unreleased Changes
|
|
200
207
|
1.0.0 (2018-11-28)
|
201
208
|
------------------
|
202
209
|
|
203
|
-
* Feature - Initial release of `aws-sdk-comprehendmedical`.
|
210
|
+
* Feature - Initial release of `aws-sdk-comprehendmedical`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -1851,7 +1851,7 @@ module Aws::ComprehendMedical
|
|
1851
1851
|
params: params,
|
1852
1852
|
config: config)
|
1853
1853
|
context[:gem_name] = 'aws-sdk-comprehendmedical'
|
1854
|
-
context[:gem_version] = '1.
|
1854
|
+
context[:gem_version] = '1.39.0'
|
1855
1855
|
Seahorse::Client::Request.new(handlers, context)
|
1856
1856
|
end
|
1857
1857
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::ComprehendMedical
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
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
|
-
|
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]
|
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.
|
4
|
+
version: 1.39.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:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|