aws-sdk-core 2.11.501 → 2.11.502
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/apis/codestar-connections/2019-12-01/api-2.json +127 -6
- data/apis/comprehendmedical/2018-10-30/api-2.json +254 -0
- data/endpoints.json +20 -6
- data/lib/aws-sdk-core/version.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: 2611012fd7268fd2b3061f357fc6788106cd38a3d27fcc55689881ed830c50ae
|
|
4
|
+
data.tar.gz: 3638c93a02dbb3daf9fdb3de572fd5a83ac277b06b9daa453ff8028aad74dbdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f5bf386fcf362cf7765b9f724c5c898dd6f23acbad754aabf377329d3581ae1c55c2a276d0bc9f658509286c598c904172d088e0842a64b2753e5c2240339ce
|
|
7
|
+
data.tar.gz: 44d45a53b71f48af72d9e55c9d5dbea8f559b62a259c49c770af3232ebea474bc57f7d5714c5295bd50125e46ace7295c92102bcb3bb53ad08941087b70d0564
|
|
@@ -57,6 +57,43 @@
|
|
|
57
57
|
},
|
|
58
58
|
"input":{"shape":"ListConnectionsInput"},
|
|
59
59
|
"output":{"shape":"ListConnectionsOutput"}
|
|
60
|
+
},
|
|
61
|
+
"ListTagsForResource":{
|
|
62
|
+
"name":"ListTagsForResource",
|
|
63
|
+
"http":{
|
|
64
|
+
"method":"POST",
|
|
65
|
+
"requestUri":"/"
|
|
66
|
+
},
|
|
67
|
+
"input":{"shape":"ListTagsForResourceInput"},
|
|
68
|
+
"output":{"shape":"ListTagsForResourceOutput"},
|
|
69
|
+
"errors":[
|
|
70
|
+
{"shape":"ResourceNotFoundException"}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"TagResource":{
|
|
74
|
+
"name":"TagResource",
|
|
75
|
+
"http":{
|
|
76
|
+
"method":"POST",
|
|
77
|
+
"requestUri":"/"
|
|
78
|
+
},
|
|
79
|
+
"input":{"shape":"TagResourceInput"},
|
|
80
|
+
"output":{"shape":"TagResourceOutput"},
|
|
81
|
+
"errors":[
|
|
82
|
+
{"shape":"ResourceNotFoundException"},
|
|
83
|
+
{"shape":"LimitExceededException"}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"UntagResource":{
|
|
87
|
+
"name":"UntagResource",
|
|
88
|
+
"http":{
|
|
89
|
+
"method":"POST",
|
|
90
|
+
"requestUri":"/"
|
|
91
|
+
},
|
|
92
|
+
"input":{"shape":"UntagResourceInput"},
|
|
93
|
+
"output":{"shape":"UntagResourceOutput"},
|
|
94
|
+
"errors":[
|
|
95
|
+
{"shape":"ResourceNotFoundException"}
|
|
96
|
+
]
|
|
60
97
|
}
|
|
61
98
|
},
|
|
62
99
|
"shapes":{
|
|
@@ -66,6 +103,11 @@
|
|
|
66
103
|
"min":12,
|
|
67
104
|
"pattern":"[0-9]{12}"
|
|
68
105
|
},
|
|
106
|
+
"AmazonResourceName":{
|
|
107
|
+
"type":"string",
|
|
108
|
+
"max":1011,
|
|
109
|
+
"min":1
|
|
110
|
+
},
|
|
69
111
|
"Connection":{
|
|
70
112
|
"type":"structure",
|
|
71
113
|
"members":{
|
|
@@ -107,14 +149,16 @@
|
|
|
107
149
|
],
|
|
108
150
|
"members":{
|
|
109
151
|
"ProviderType":{"shape":"ProviderType"},
|
|
110
|
-
"ConnectionName":{"shape":"ConnectionName"}
|
|
152
|
+
"ConnectionName":{"shape":"ConnectionName"},
|
|
153
|
+
"Tags":{"shape":"TagList"}
|
|
111
154
|
}
|
|
112
155
|
},
|
|
113
156
|
"CreateConnectionOutput":{
|
|
114
157
|
"type":"structure",
|
|
115
158
|
"required":["ConnectionArn"],
|
|
116
159
|
"members":{
|
|
117
|
-
"ConnectionArn":{"shape":"ConnectionArn"}
|
|
160
|
+
"ConnectionArn":{"shape":"ConnectionArn"},
|
|
161
|
+
"Tags":{"shape":"TagList"}
|
|
118
162
|
}
|
|
119
163
|
},
|
|
120
164
|
"DeleteConnectionInput":{
|
|
@@ -168,16 +212,28 @@
|
|
|
168
212
|
"NextToken":{"shape":"NextToken"}
|
|
169
213
|
}
|
|
170
214
|
},
|
|
215
|
+
"ListTagsForResourceInput":{
|
|
216
|
+
"type":"structure",
|
|
217
|
+
"required":["ResourceArn"],
|
|
218
|
+
"members":{
|
|
219
|
+
"ResourceArn":{"shape":"AmazonResourceName"}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"ListTagsForResourceOutput":{
|
|
223
|
+
"type":"structure",
|
|
224
|
+
"members":{
|
|
225
|
+
"Tags":{"shape":"TagList"}
|
|
226
|
+
}
|
|
227
|
+
},
|
|
171
228
|
"MaxResults":{
|
|
172
229
|
"type":"integer",
|
|
173
|
-
"max":
|
|
174
|
-
"min":
|
|
230
|
+
"max":5000,
|
|
231
|
+
"min":0
|
|
175
232
|
},
|
|
176
233
|
"NextToken":{
|
|
177
234
|
"type":"string",
|
|
178
235
|
"max":1024,
|
|
179
|
-
"min":1
|
|
180
|
-
"pattern":"[a-zA-Z0-9=\\-\\\\/]+"
|
|
236
|
+
"min":1
|
|
181
237
|
},
|
|
182
238
|
"ProviderType":{
|
|
183
239
|
"type":"string",
|
|
@@ -189,6 +245,71 @@
|
|
|
189
245
|
"Message":{"shape":"ErrorMessage"}
|
|
190
246
|
},
|
|
191
247
|
"exception":true
|
|
248
|
+
},
|
|
249
|
+
"Tag":{
|
|
250
|
+
"type":"structure",
|
|
251
|
+
"required":[
|
|
252
|
+
"Key",
|
|
253
|
+
"Value"
|
|
254
|
+
],
|
|
255
|
+
"members":{
|
|
256
|
+
"Key":{"shape":"TagKey"},
|
|
257
|
+
"Value":{"shape":"TagValue"}
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"TagKey":{
|
|
261
|
+
"type":"string",
|
|
262
|
+
"max":128,
|
|
263
|
+
"min":1
|
|
264
|
+
},
|
|
265
|
+
"TagKeyList":{
|
|
266
|
+
"type":"list",
|
|
267
|
+
"member":{"shape":"TagKey"},
|
|
268
|
+
"max":200,
|
|
269
|
+
"min":0
|
|
270
|
+
},
|
|
271
|
+
"TagList":{
|
|
272
|
+
"type":"list",
|
|
273
|
+
"member":{"shape":"Tag"},
|
|
274
|
+
"max":200,
|
|
275
|
+
"min":0
|
|
276
|
+
},
|
|
277
|
+
"TagResourceInput":{
|
|
278
|
+
"type":"structure",
|
|
279
|
+
"required":[
|
|
280
|
+
"ResourceArn",
|
|
281
|
+
"Tags"
|
|
282
|
+
],
|
|
283
|
+
"members":{
|
|
284
|
+
"ResourceArn":{"shape":"AmazonResourceName"},
|
|
285
|
+
"Tags":{"shape":"TagList"}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"TagResourceOutput":{
|
|
289
|
+
"type":"structure",
|
|
290
|
+
"members":{
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"TagValue":{
|
|
294
|
+
"type":"string",
|
|
295
|
+
"max":256,
|
|
296
|
+
"min":0
|
|
297
|
+
},
|
|
298
|
+
"UntagResourceInput":{
|
|
299
|
+
"type":"structure",
|
|
300
|
+
"required":[
|
|
301
|
+
"ResourceArn",
|
|
302
|
+
"TagKeys"
|
|
303
|
+
],
|
|
304
|
+
"members":{
|
|
305
|
+
"ResourceArn":{"shape":"AmazonResourceName"},
|
|
306
|
+
"TagKeys":{"shape":"TagKeyList"}
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"UntagResourceOutput":{
|
|
310
|
+
"type":"structure",
|
|
311
|
+
"members":{
|
|
312
|
+
}
|
|
192
313
|
}
|
|
193
314
|
}
|
|
194
315
|
}
|
|
@@ -29,6 +29,21 @@
|
|
|
29
29
|
{"shape":"InternalServerException"}
|
|
30
30
|
]
|
|
31
31
|
},
|
|
32
|
+
"DescribeICD10CMInferenceJob":{
|
|
33
|
+
"name":"DescribeICD10CMInferenceJob",
|
|
34
|
+
"http":{
|
|
35
|
+
"method":"POST",
|
|
36
|
+
"requestUri":"/"
|
|
37
|
+
},
|
|
38
|
+
"input":{"shape":"DescribeICD10CMInferenceJobRequest"},
|
|
39
|
+
"output":{"shape":"DescribeICD10CMInferenceJobResponse"},
|
|
40
|
+
"errors":[
|
|
41
|
+
{"shape":"InvalidRequestException"},
|
|
42
|
+
{"shape":"TooManyRequestsException"},
|
|
43
|
+
{"shape":"ResourceNotFoundException"},
|
|
44
|
+
{"shape":"InternalServerException"}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
32
47
|
"DescribePHIDetectionJob":{
|
|
33
48
|
"name":"DescribePHIDetectionJob",
|
|
34
49
|
"http":{
|
|
@@ -44,6 +59,21 @@
|
|
|
44
59
|
{"shape":"InternalServerException"}
|
|
45
60
|
]
|
|
46
61
|
},
|
|
62
|
+
"DescribeRxNormInferenceJob":{
|
|
63
|
+
"name":"DescribeRxNormInferenceJob",
|
|
64
|
+
"http":{
|
|
65
|
+
"method":"POST",
|
|
66
|
+
"requestUri":"/"
|
|
67
|
+
},
|
|
68
|
+
"input":{"shape":"DescribeRxNormInferenceJobRequest"},
|
|
69
|
+
"output":{"shape":"DescribeRxNormInferenceJobResponse"},
|
|
70
|
+
"errors":[
|
|
71
|
+
{"shape":"InvalidRequestException"},
|
|
72
|
+
{"shape":"TooManyRequestsException"},
|
|
73
|
+
{"shape":"ResourceNotFoundException"},
|
|
74
|
+
{"shape":"InternalServerException"}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
47
77
|
"DetectEntities":{
|
|
48
78
|
"name":"DetectEntities",
|
|
49
79
|
"http":{
|
|
@@ -146,6 +176,21 @@
|
|
|
146
176
|
{"shape":"InternalServerException"}
|
|
147
177
|
]
|
|
148
178
|
},
|
|
179
|
+
"ListICD10CMInferenceJobs":{
|
|
180
|
+
"name":"ListICD10CMInferenceJobs",
|
|
181
|
+
"http":{
|
|
182
|
+
"method":"POST",
|
|
183
|
+
"requestUri":"/"
|
|
184
|
+
},
|
|
185
|
+
"input":{"shape":"ListICD10CMInferenceJobsRequest"},
|
|
186
|
+
"output":{"shape":"ListICD10CMInferenceJobsResponse"},
|
|
187
|
+
"errors":[
|
|
188
|
+
{"shape":"InvalidRequestException"},
|
|
189
|
+
{"shape":"ValidationException"},
|
|
190
|
+
{"shape":"TooManyRequestsException"},
|
|
191
|
+
{"shape":"InternalServerException"}
|
|
192
|
+
]
|
|
193
|
+
},
|
|
149
194
|
"ListPHIDetectionJobs":{
|
|
150
195
|
"name":"ListPHIDetectionJobs",
|
|
151
196
|
"http":{
|
|
@@ -161,6 +206,21 @@
|
|
|
161
206
|
{"shape":"InternalServerException"}
|
|
162
207
|
]
|
|
163
208
|
},
|
|
209
|
+
"ListRxNormInferenceJobs":{
|
|
210
|
+
"name":"ListRxNormInferenceJobs",
|
|
211
|
+
"http":{
|
|
212
|
+
"method":"POST",
|
|
213
|
+
"requestUri":"/"
|
|
214
|
+
},
|
|
215
|
+
"input":{"shape":"ListRxNormInferenceJobsRequest"},
|
|
216
|
+
"output":{"shape":"ListRxNormInferenceJobsResponse"},
|
|
217
|
+
"errors":[
|
|
218
|
+
{"shape":"InvalidRequestException"},
|
|
219
|
+
{"shape":"ValidationException"},
|
|
220
|
+
{"shape":"TooManyRequestsException"},
|
|
221
|
+
{"shape":"InternalServerException"}
|
|
222
|
+
]
|
|
223
|
+
},
|
|
164
224
|
"StartEntitiesDetectionV2Job":{
|
|
165
225
|
"name":"StartEntitiesDetectionV2Job",
|
|
166
226
|
"http":{
|
|
@@ -176,6 +236,21 @@
|
|
|
176
236
|
{"shape":"InternalServerException"}
|
|
177
237
|
]
|
|
178
238
|
},
|
|
239
|
+
"StartICD10CMInferenceJob":{
|
|
240
|
+
"name":"StartICD10CMInferenceJob",
|
|
241
|
+
"http":{
|
|
242
|
+
"method":"POST",
|
|
243
|
+
"requestUri":"/"
|
|
244
|
+
},
|
|
245
|
+
"input":{"shape":"StartICD10CMInferenceJobRequest"},
|
|
246
|
+
"output":{"shape":"StartICD10CMInferenceJobResponse"},
|
|
247
|
+
"errors":[
|
|
248
|
+
{"shape":"InvalidRequestException"},
|
|
249
|
+
{"shape":"TooManyRequestsException"},
|
|
250
|
+
{"shape":"ResourceNotFoundException"},
|
|
251
|
+
{"shape":"InternalServerException"}
|
|
252
|
+
]
|
|
253
|
+
},
|
|
179
254
|
"StartPHIDetectionJob":{
|
|
180
255
|
"name":"StartPHIDetectionJob",
|
|
181
256
|
"http":{
|
|
@@ -191,6 +266,21 @@
|
|
|
191
266
|
{"shape":"InternalServerException"}
|
|
192
267
|
]
|
|
193
268
|
},
|
|
269
|
+
"StartRxNormInferenceJob":{
|
|
270
|
+
"name":"StartRxNormInferenceJob",
|
|
271
|
+
"http":{
|
|
272
|
+
"method":"POST",
|
|
273
|
+
"requestUri":"/"
|
|
274
|
+
},
|
|
275
|
+
"input":{"shape":"StartRxNormInferenceJobRequest"},
|
|
276
|
+
"output":{"shape":"StartRxNormInferenceJobResponse"},
|
|
277
|
+
"errors":[
|
|
278
|
+
{"shape":"InvalidRequestException"},
|
|
279
|
+
{"shape":"TooManyRequestsException"},
|
|
280
|
+
{"shape":"ResourceNotFoundException"},
|
|
281
|
+
{"shape":"InternalServerException"}
|
|
282
|
+
]
|
|
283
|
+
},
|
|
194
284
|
"StopEntitiesDetectionV2Job":{
|
|
195
285
|
"name":"StopEntitiesDetectionV2Job",
|
|
196
286
|
"http":{
|
|
@@ -205,6 +295,20 @@
|
|
|
205
295
|
{"shape":"InternalServerException"}
|
|
206
296
|
]
|
|
207
297
|
},
|
|
298
|
+
"StopICD10CMInferenceJob":{
|
|
299
|
+
"name":"StopICD10CMInferenceJob",
|
|
300
|
+
"http":{
|
|
301
|
+
"method":"POST",
|
|
302
|
+
"requestUri":"/"
|
|
303
|
+
},
|
|
304
|
+
"input":{"shape":"StopICD10CMInferenceJobRequest"},
|
|
305
|
+
"output":{"shape":"StopICD10CMInferenceJobResponse"},
|
|
306
|
+
"errors":[
|
|
307
|
+
{"shape":"InvalidRequestException"},
|
|
308
|
+
{"shape":"ResourceNotFoundException"},
|
|
309
|
+
{"shape":"InternalServerException"}
|
|
310
|
+
]
|
|
311
|
+
},
|
|
208
312
|
"StopPHIDetectionJob":{
|
|
209
313
|
"name":"StopPHIDetectionJob",
|
|
210
314
|
"http":{
|
|
@@ -218,6 +322,20 @@
|
|
|
218
322
|
{"shape":"ResourceNotFoundException"},
|
|
219
323
|
{"shape":"InternalServerException"}
|
|
220
324
|
]
|
|
325
|
+
},
|
|
326
|
+
"StopRxNormInferenceJob":{
|
|
327
|
+
"name":"StopRxNormInferenceJob",
|
|
328
|
+
"http":{
|
|
329
|
+
"method":"POST",
|
|
330
|
+
"requestUri":"/"
|
|
331
|
+
},
|
|
332
|
+
"input":{"shape":"StopRxNormInferenceJobRequest"},
|
|
333
|
+
"output":{"shape":"StopRxNormInferenceJobResponse"},
|
|
334
|
+
"errors":[
|
|
335
|
+
{"shape":"InvalidRequestException"},
|
|
336
|
+
{"shape":"ResourceNotFoundException"},
|
|
337
|
+
{"shape":"InternalServerException"}
|
|
338
|
+
]
|
|
221
339
|
}
|
|
222
340
|
},
|
|
223
341
|
"shapes":{
|
|
@@ -306,6 +424,19 @@
|
|
|
306
424
|
"ComprehendMedicalAsyncJobProperties":{"shape":"ComprehendMedicalAsyncJobProperties"}
|
|
307
425
|
}
|
|
308
426
|
},
|
|
427
|
+
"DescribeICD10CMInferenceJobRequest":{
|
|
428
|
+
"type":"structure",
|
|
429
|
+
"required":["JobId"],
|
|
430
|
+
"members":{
|
|
431
|
+
"JobId":{"shape":"JobId"}
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"DescribeICD10CMInferenceJobResponse":{
|
|
435
|
+
"type":"structure",
|
|
436
|
+
"members":{
|
|
437
|
+
"ComprehendMedicalAsyncJobProperties":{"shape":"ComprehendMedicalAsyncJobProperties"}
|
|
438
|
+
}
|
|
439
|
+
},
|
|
309
440
|
"DescribePHIDetectionJobRequest":{
|
|
310
441
|
"type":"structure",
|
|
311
442
|
"required":["JobId"],
|
|
@@ -319,6 +450,19 @@
|
|
|
319
450
|
"ComprehendMedicalAsyncJobProperties":{"shape":"ComprehendMedicalAsyncJobProperties"}
|
|
320
451
|
}
|
|
321
452
|
},
|
|
453
|
+
"DescribeRxNormInferenceJobRequest":{
|
|
454
|
+
"type":"structure",
|
|
455
|
+
"required":["JobId"],
|
|
456
|
+
"members":{
|
|
457
|
+
"JobId":{"shape":"JobId"}
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"DescribeRxNormInferenceJobResponse":{
|
|
461
|
+
"type":"structure",
|
|
462
|
+
"members":{
|
|
463
|
+
"ComprehendMedicalAsyncJobProperties":{"shape":"ComprehendMedicalAsyncJobProperties"}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
322
466
|
"DetectEntitiesRequest":{
|
|
323
467
|
"type":"structure",
|
|
324
468
|
"required":["Text"],
|
|
@@ -651,6 +795,21 @@
|
|
|
651
795
|
"NextToken":{"shape":"String"}
|
|
652
796
|
}
|
|
653
797
|
},
|
|
798
|
+
"ListICD10CMInferenceJobsRequest":{
|
|
799
|
+
"type":"structure",
|
|
800
|
+
"members":{
|
|
801
|
+
"Filter":{"shape":"ComprehendMedicalAsyncJobFilter"},
|
|
802
|
+
"NextToken":{"shape":"String"},
|
|
803
|
+
"MaxResults":{"shape":"MaxResultsInteger"}
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"ListICD10CMInferenceJobsResponse":{
|
|
807
|
+
"type":"structure",
|
|
808
|
+
"members":{
|
|
809
|
+
"ComprehendMedicalAsyncJobPropertiesList":{"shape":"ComprehendMedicalAsyncJobPropertiesList"},
|
|
810
|
+
"NextToken":{"shape":"String"}
|
|
811
|
+
}
|
|
812
|
+
},
|
|
654
813
|
"ListPHIDetectionJobsRequest":{
|
|
655
814
|
"type":"structure",
|
|
656
815
|
"members":{
|
|
@@ -666,6 +825,21 @@
|
|
|
666
825
|
"NextToken":{"shape":"String"}
|
|
667
826
|
}
|
|
668
827
|
},
|
|
828
|
+
"ListRxNormInferenceJobsRequest":{
|
|
829
|
+
"type":"structure",
|
|
830
|
+
"members":{
|
|
831
|
+
"Filter":{"shape":"ComprehendMedicalAsyncJobFilter"},
|
|
832
|
+
"NextToken":{"shape":"String"},
|
|
833
|
+
"MaxResults":{"shape":"MaxResultsInteger"}
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"ListRxNormInferenceJobsResponse":{
|
|
837
|
+
"type":"structure",
|
|
838
|
+
"members":{
|
|
839
|
+
"ComprehendMedicalAsyncJobPropertiesList":{"shape":"ComprehendMedicalAsyncJobPropertiesList"},
|
|
840
|
+
"NextToken":{"shape":"String"}
|
|
841
|
+
}
|
|
842
|
+
},
|
|
669
843
|
"ManifestFilePath":{
|
|
670
844
|
"type":"string",
|
|
671
845
|
"max":4096,
|
|
@@ -850,6 +1024,33 @@
|
|
|
850
1024
|
"JobId":{"shape":"JobId"}
|
|
851
1025
|
}
|
|
852
1026
|
},
|
|
1027
|
+
"StartICD10CMInferenceJobRequest":{
|
|
1028
|
+
"type":"structure",
|
|
1029
|
+
"required":[
|
|
1030
|
+
"InputDataConfig",
|
|
1031
|
+
"OutputDataConfig",
|
|
1032
|
+
"DataAccessRoleArn",
|
|
1033
|
+
"LanguageCode"
|
|
1034
|
+
],
|
|
1035
|
+
"members":{
|
|
1036
|
+
"InputDataConfig":{"shape":"InputDataConfig"},
|
|
1037
|
+
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
|
1038
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"},
|
|
1039
|
+
"JobName":{"shape":"JobName"},
|
|
1040
|
+
"ClientRequestToken":{
|
|
1041
|
+
"shape":"ClientRequestTokenString",
|
|
1042
|
+
"idempotencyToken":true
|
|
1043
|
+
},
|
|
1044
|
+
"KMSKey":{"shape":"KMSKey"},
|
|
1045
|
+
"LanguageCode":{"shape":"LanguageCode"}
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
"StartICD10CMInferenceJobResponse":{
|
|
1049
|
+
"type":"structure",
|
|
1050
|
+
"members":{
|
|
1051
|
+
"JobId":{"shape":"JobId"}
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
853
1054
|
"StartPHIDetectionJobRequest":{
|
|
854
1055
|
"type":"structure",
|
|
855
1056
|
"required":[
|
|
@@ -877,6 +1078,33 @@
|
|
|
877
1078
|
"JobId":{"shape":"JobId"}
|
|
878
1079
|
}
|
|
879
1080
|
},
|
|
1081
|
+
"StartRxNormInferenceJobRequest":{
|
|
1082
|
+
"type":"structure",
|
|
1083
|
+
"required":[
|
|
1084
|
+
"InputDataConfig",
|
|
1085
|
+
"OutputDataConfig",
|
|
1086
|
+
"DataAccessRoleArn",
|
|
1087
|
+
"LanguageCode"
|
|
1088
|
+
],
|
|
1089
|
+
"members":{
|
|
1090
|
+
"InputDataConfig":{"shape":"InputDataConfig"},
|
|
1091
|
+
"OutputDataConfig":{"shape":"OutputDataConfig"},
|
|
1092
|
+
"DataAccessRoleArn":{"shape":"IamRoleArn"},
|
|
1093
|
+
"JobName":{"shape":"JobName"},
|
|
1094
|
+
"ClientRequestToken":{
|
|
1095
|
+
"shape":"ClientRequestTokenString",
|
|
1096
|
+
"idempotencyToken":true
|
|
1097
|
+
},
|
|
1098
|
+
"KMSKey":{"shape":"KMSKey"},
|
|
1099
|
+
"LanguageCode":{"shape":"LanguageCode"}
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"StartRxNormInferenceJobResponse":{
|
|
1103
|
+
"type":"structure",
|
|
1104
|
+
"members":{
|
|
1105
|
+
"JobId":{"shape":"JobId"}
|
|
1106
|
+
}
|
|
1107
|
+
},
|
|
880
1108
|
"StopEntitiesDetectionV2JobRequest":{
|
|
881
1109
|
"type":"structure",
|
|
882
1110
|
"required":["JobId"],
|
|
@@ -890,6 +1118,19 @@
|
|
|
890
1118
|
"JobId":{"shape":"JobId"}
|
|
891
1119
|
}
|
|
892
1120
|
},
|
|
1121
|
+
"StopICD10CMInferenceJobRequest":{
|
|
1122
|
+
"type":"structure",
|
|
1123
|
+
"required":["JobId"],
|
|
1124
|
+
"members":{
|
|
1125
|
+
"JobId":{"shape":"JobId"}
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
"StopICD10CMInferenceJobResponse":{
|
|
1129
|
+
"type":"structure",
|
|
1130
|
+
"members":{
|
|
1131
|
+
"JobId":{"shape":"JobId"}
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
893
1134
|
"StopPHIDetectionJobRequest":{
|
|
894
1135
|
"type":"structure",
|
|
895
1136
|
"required":["JobId"],
|
|
@@ -903,6 +1144,19 @@
|
|
|
903
1144
|
"JobId":{"shape":"JobId"}
|
|
904
1145
|
}
|
|
905
1146
|
},
|
|
1147
|
+
"StopRxNormInferenceJobRequest":{
|
|
1148
|
+
"type":"structure",
|
|
1149
|
+
"required":["JobId"],
|
|
1150
|
+
"members":{
|
|
1151
|
+
"JobId":{"shape":"JobId"}
|
|
1152
|
+
}
|
|
1153
|
+
},
|
|
1154
|
+
"StopRxNormInferenceJobResponse":{
|
|
1155
|
+
"type":"structure",
|
|
1156
|
+
"members":{
|
|
1157
|
+
"JobId":{"shape":"JobId"}
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
906
1160
|
"String":{
|
|
907
1161
|
"type":"string",
|
|
908
1162
|
"min":1
|
data/endpoints.json
CHANGED
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
"description" : "Canada (Central)"
|
|
36
36
|
},
|
|
37
37
|
"eu-central-1" : {
|
|
38
|
-
"description" : "
|
|
38
|
+
"description" : "Europe (Frankfurt)"
|
|
39
39
|
},
|
|
40
40
|
"eu-north-1" : {
|
|
41
|
-
"description" : "
|
|
41
|
+
"description" : "Europe (Stockholm)"
|
|
42
42
|
},
|
|
43
43
|
"eu-south-1" : {
|
|
44
44
|
"description" : "Europe (Milan)"
|
|
45
45
|
},
|
|
46
46
|
"eu-west-1" : {
|
|
47
|
-
"description" : "
|
|
47
|
+
"description" : "Europe (Ireland)"
|
|
48
48
|
},
|
|
49
49
|
"eu-west-2" : {
|
|
50
|
-
"description" : "
|
|
50
|
+
"description" : "Europe (London)"
|
|
51
51
|
},
|
|
52
52
|
"eu-west-3" : {
|
|
53
|
-
"description" : "
|
|
53
|
+
"description" : "Europe (Paris)"
|
|
54
54
|
},
|
|
55
55
|
"me-south-1" : {
|
|
56
56
|
"description" : "Middle East (Bahrain)"
|
|
@@ -4431,6 +4431,7 @@
|
|
|
4431
4431
|
},
|
|
4432
4432
|
"secretsmanager" : {
|
|
4433
4433
|
"endpoints" : {
|
|
4434
|
+
"af-south-1" : { },
|
|
4434
4435
|
"ap-east-1" : { },
|
|
4435
4436
|
"ap-northeast-1" : { },
|
|
4436
4437
|
"ap-northeast-2" : { },
|
|
@@ -4440,6 +4441,7 @@
|
|
|
4440
4441
|
"ca-central-1" : { },
|
|
4441
4442
|
"eu-central-1" : { },
|
|
4442
4443
|
"eu-north-1" : { },
|
|
4444
|
+
"eu-south-1" : { },
|
|
4443
4445
|
"eu-west-1" : { },
|
|
4444
4446
|
"eu-west-2" : { },
|
|
4445
4447
|
"eu-west-3" : { },
|
|
@@ -6312,7 +6314,7 @@
|
|
|
6312
6314
|
"description" : "AWS GovCloud (US-East)"
|
|
6313
6315
|
},
|
|
6314
6316
|
"us-gov-west-1" : {
|
|
6315
|
-
"description" : "AWS GovCloud (US)"
|
|
6317
|
+
"description" : "AWS GovCloud (US-West)"
|
|
6316
6318
|
}
|
|
6317
6319
|
},
|
|
6318
6320
|
"services" : {
|
|
@@ -6767,6 +6769,18 @@
|
|
|
6767
6769
|
},
|
|
6768
6770
|
"elasticmapreduce" : {
|
|
6769
6771
|
"endpoints" : {
|
|
6772
|
+
"fips-us-gov-east-1" : {
|
|
6773
|
+
"credentialScope" : {
|
|
6774
|
+
"region" : "us-gov-east-1"
|
|
6775
|
+
},
|
|
6776
|
+
"hostname" : "elasticmapreduce.us-gov-east-1.amazonaws.com"
|
|
6777
|
+
},
|
|
6778
|
+
"fips-us-gov-west-1" : {
|
|
6779
|
+
"credentialScope" : {
|
|
6780
|
+
"region" : "us-gov-west-1"
|
|
6781
|
+
},
|
|
6782
|
+
"hostname" : "elasticmapreduce.us-gov-west-1.amazonaws.com"
|
|
6783
|
+
},
|
|
6770
6784
|
"us-gov-east-1" : { },
|
|
6771
6785
|
"us-gov-west-1" : {
|
|
6772
6786
|
"protocols" : [ "https" ]
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.11.
|
|
4
|
+
version: 2.11.502
|
|
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: 2020-05-
|
|
11
|
+
date: 2020-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|