@aws-sdk/client-healthlake 3.1087.0 → 3.1089.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.
Files changed (113) hide show
  1. package/README.md +113 -3
  2. package/dist-cjs/index.js +733 -31
  3. package/dist-es/HealthLake.js +30 -0
  4. package/dist-es/commands/CreateDataTransformationProfileCommand.js +4 -0
  5. package/dist-es/commands/DeleteDataTransformationProfileCommand.js +4 -0
  6. package/dist-es/commands/DescribeDataTransformationJobCommand.js +4 -0
  7. package/dist-es/commands/GetDataTransformationProfileCommand.js +4 -0
  8. package/dist-es/commands/ListDataTransformationJobsCommand.js +4 -0
  9. package/dist-es/commands/ListDataTransformationProfileVersionsCommand.js +4 -0
  10. package/dist-es/commands/ListDataTransformationProfilesCommand.js +4 -0
  11. package/dist-es/commands/PublishDataTransformationProfileCommand.js +4 -0
  12. package/dist-es/commands/StartDataTransformationJobCommand.js +4 -0
  13. package/dist-es/commands/UpdateDataTransformationProfileCommand.js +4 -0
  14. package/dist-es/commands/UpdateProfileWithAgentCommand.js +4 -0
  15. package/dist-es/commands/index.js +11 -0
  16. package/dist-es/models/enums.js +28 -0
  17. package/dist-es/models/errors.js +114 -16
  18. package/dist-es/pagination/ListDataTransformationJobsPaginator.js +4 -0
  19. package/dist-es/pagination/ListDataTransformationProfileVersionsPaginator.js +4 -0
  20. package/dist-es/pagination/ListDataTransformationProfilesPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +3 -0
  22. package/dist-es/schemas/schemas_0.js +405 -15
  23. package/dist-es/waiters/index.js +1 -0
  24. package/dist-es/waiters/waitForDataTransformationJobCompleted.js +52 -0
  25. package/dist-types/HealthLake.d.ts +106 -3
  26. package/dist-types/HealthLakeClient.d.ts +14 -5
  27. package/dist-types/commands/CreateDataTransformationProfileCommand.d.ts +121 -0
  28. package/dist-types/commands/CreateFHIRDatastoreCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteDataTransformationProfileCommand.d.ts +88 -0
  30. package/dist-types/commands/DeleteFHIRDatastoreCommand.d.ts +1 -2
  31. package/dist-types/commands/DescribeDataTransformationJobCommand.d.ts +115 -0
  32. package/dist-types/commands/DescribeFHIRDatastoreCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeFHIRImportJobCommand.d.ts +9 -0
  34. package/dist-types/commands/GetDataTransformationProfileCommand.d.ts +97 -0
  35. package/dist-types/commands/ListDataTransformationJobsCommand.d.ts +98 -0
  36. package/dist-types/commands/ListDataTransformationProfileVersionsCommand.d.ts +99 -0
  37. package/dist-types/commands/ListDataTransformationProfilesCommand.d.ts +96 -0
  38. package/dist-types/commands/ListFHIRDatastoresCommand.d.ts +2 -3
  39. package/dist-types/commands/ListFHIRImportJobsCommand.d.ts +9 -0
  40. package/dist-types/commands/PublishDataTransformationProfileCommand.d.ts +97 -0
  41. package/dist-types/commands/StartDataTransformationJobCommand.d.ts +102 -0
  42. package/dist-types/commands/StartFHIRExportJobCommand.d.ts +3 -0
  43. package/dist-types/commands/StartFHIRImportJobCommand.d.ts +7 -3
  44. package/dist-types/commands/UpdateDataTransformationProfileCommand.d.ts +94 -0
  45. package/dist-types/commands/UpdateFHIRDatastoreCommand.d.ts +5 -6
  46. package/dist-types/commands/UpdateProfileWithAgentCommand.d.ts +114 -0
  47. package/dist-types/commands/index.d.ts +11 -0
  48. package/dist-types/index.d.ts +1 -3
  49. package/dist-types/models/enums.d.ts +68 -0
  50. package/dist-types/models/errors.d.ts +137 -15
  51. package/dist-types/models/models_0.d.ts +1066 -93
  52. package/dist-types/pagination/ListDataTransformationJobsPaginator.d.ts +7 -0
  53. package/dist-types/pagination/ListDataTransformationProfileVersionsPaginator.d.ts +7 -0
  54. package/dist-types/pagination/ListDataTransformationProfilesPaginator.d.ts +7 -0
  55. package/dist-types/pagination/index.d.ts +3 -0
  56. package/dist-types/schemas/schemas_0.d.ts +55 -0
  57. package/dist-types/ts3.4/HealthLake.d.ts +269 -56
  58. package/dist-types/ts3.4/HealthLakeClient.d.ts +74 -20
  59. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  60. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  61. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  62. package/dist-types/ts3.4/commands/CreateDataTransformationProfileCommand.d.ts +42 -0
  63. package/dist-types/ts3.4/commands/CreateFHIRDatastoreCommand.d.ts +5 -10
  64. package/dist-types/ts3.4/commands/DeleteDataTransformationProfileCommand.d.ts +42 -0
  65. package/dist-types/ts3.4/commands/DeleteFHIRDatastoreCommand.d.ts +5 -10
  66. package/dist-types/ts3.4/commands/DescribeDataTransformationJobCommand.d.ts +42 -0
  67. package/dist-types/ts3.4/commands/DescribeFHIRDatastoreCommand.d.ts +5 -10
  68. package/dist-types/ts3.4/commands/DescribeFHIRExportJobCommand.d.ts +5 -10
  69. package/dist-types/ts3.4/commands/DescribeFHIRImportJobCommand.d.ts +5 -10
  70. package/dist-types/ts3.4/commands/GetDataTransformationProfileCommand.d.ts +42 -0
  71. package/dist-types/ts3.4/commands/ListDataTransformationJobsCommand.d.ts +42 -0
  72. package/dist-types/ts3.4/commands/ListDataTransformationProfileVersionsCommand.d.ts +42 -0
  73. package/dist-types/ts3.4/commands/ListDataTransformationProfilesCommand.d.ts +42 -0
  74. package/dist-types/ts3.4/commands/ListFHIRDatastoresCommand.d.ts +4 -9
  75. package/dist-types/ts3.4/commands/ListFHIRExportJobsCommand.d.ts +5 -10
  76. package/dist-types/ts3.4/commands/ListFHIRImportJobsCommand.d.ts +5 -10
  77. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  78. package/dist-types/ts3.4/commands/PublishDataTransformationProfileCommand.d.ts +42 -0
  79. package/dist-types/ts3.4/commands/StartDataTransformationJobCommand.d.ts +42 -0
  80. package/dist-types/ts3.4/commands/StartFHIRExportJobCommand.d.ts +5 -10
  81. package/dist-types/ts3.4/commands/StartFHIRImportJobCommand.d.ts +5 -10
  82. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  83. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  84. package/dist-types/ts3.4/commands/UpdateDataTransformationProfileCommand.d.ts +42 -0
  85. package/dist-types/ts3.4/commands/UpdateFHIRDatastoreCommand.d.ts +5 -10
  86. package/dist-types/ts3.4/commands/UpdateProfileWithAgentCommand.d.ts +39 -0
  87. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  88. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  89. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  90. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  91. package/dist-types/ts3.4/models/enums.d.ts +40 -8
  92. package/dist-types/ts3.4/models/errors.d.ts +55 -23
  93. package/dist-types/ts3.4/models/models_0.d.ts +277 -4
  94. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  95. package/dist-types/ts3.4/pagination/ListDataTransformationJobsPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/ListDataTransformationProfileVersionsPaginator.d.ts +11 -0
  97. package/dist-types/ts3.4/pagination/ListDataTransformationProfilesPaginator.d.ts +11 -0
  98. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  99. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  100. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  101. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  102. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  103. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  104. package/dist-types/ts3.4/schemas/schemas_0.d.ts +55 -0
  105. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  106. package/dist-types/ts3.4/waiters/waitForDataTransformationJobCompleted.d.ts +15 -0
  107. package/dist-types/ts3.4/waiters/waitForFHIRDatastoreActive.d.ts +3 -5
  108. package/dist-types/ts3.4/waiters/waitForFHIRDatastoreDeleted.d.ts +3 -5
  109. package/dist-types/ts3.4/waiters/waitForFHIRExportJobCompleted.d.ts +3 -5
  110. package/dist-types/ts3.4/waiters/waitForFHIRImportJobCompleted.d.ts +3 -5
  111. package/dist-types/waiters/index.d.ts +1 -0
  112. package/dist-types/waiters/waitForDataTransformationJobCompleted.d.ts +15 -0
  113. package/package.json +38 -38
package/README.md CHANGED
@@ -6,9 +6,7 @@
6
6
 
7
7
  AWS SDK for JavaScript HealthLake Client for Node.js, Browser and React Native.
8
8
 
9
- <p>This is the <i>AWS HealthLake API Reference</i>. For an introduction to
10
- the service, see <a href="https://docs.aws.amazon.com/healthlake/latest/devguide/what-is.html">What is AWS HealthLake?</a> in the <i>AWS HealthLake Developer
11
- Guide</i>.</p>
9
+ <p>This is the <i>AWS HealthLake API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/healthlake/latest/devguide/what-is.html">What is AWS HealthLake?</a> in the <i>AWS HealthLake Developer Guide</i>.</p>
12
10
 
13
11
  ## Installing
14
12
 
@@ -181,6 +179,48 @@ see LICENSE for more information.
181
179
 
182
180
  ## Client Commands (Operations List)
183
181
 
182
+ <details>
183
+ <summary>
184
+ ListTagsForResource
185
+ </summary>
186
+
187
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListTagsForResourceCommandOutput/)
188
+ </details>
189
+ <details>
190
+ <summary>
191
+ TagResource
192
+ </summary>
193
+
194
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/TagResourceCommandOutput/)
195
+ </details>
196
+ <details>
197
+ <summary>
198
+ TransformData
199
+ </summary>
200
+
201
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/TransformDataCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/TransformDataCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/TransformDataCommandOutput/)
202
+ </details>
203
+ <details>
204
+ <summary>
205
+ UntagResource
206
+ </summary>
207
+
208
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UntagResourceCommandOutput/)
209
+ </details>
210
+ <details>
211
+ <summary>
212
+ ValidateSource
213
+ </summary>
214
+
215
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/ValidateSourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ValidateSourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ValidateSourceCommandOutput/)
216
+ </details>
217
+ <details>
218
+ <summary>
219
+ CreateDataTransformationProfile
220
+ </summary>
221
+
222
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/CreateDataTransformationProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/CreateDataTransformationProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/CreateDataTransformationProfileCommandOutput/)
223
+ </details>
184
224
  <details>
185
225
  <summary>
186
226
  CreateFHIRDatastore
@@ -190,6 +230,13 @@ CreateFHIRDatastore
190
230
  </details>
191
231
  <details>
192
232
  <summary>
233
+ DeleteDataTransformationProfile
234
+ </summary>
235
+
236
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/DeleteDataTransformationProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/DeleteDataTransformationProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/DeleteDataTransformationProfileCommandOutput/)
237
+ </details>
238
+ <details>
239
+ <summary>
193
240
  DeleteFHIRDatastore
194
241
  </summary>
195
242
 
@@ -197,6 +244,13 @@ DeleteFHIRDatastore
197
244
  </details>
198
245
  <details>
199
246
  <summary>
247
+ DescribeDataTransformationJob
248
+ </summary>
249
+
250
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/DescribeDataTransformationJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/DescribeDataTransformationJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/DescribeDataTransformationJobCommandOutput/)
251
+ </details>
252
+ <details>
253
+ <summary>
200
254
  DescribeFHIRDatastore
201
255
  </summary>
202
256
 
@@ -218,6 +272,34 @@ DescribeFHIRImportJob
218
272
  </details>
219
273
  <details>
220
274
  <summary>
275
+ GetDataTransformationProfile
276
+ </summary>
277
+
278
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/GetDataTransformationProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/GetDataTransformationProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/GetDataTransformationProfileCommandOutput/)
279
+ </details>
280
+ <details>
281
+ <summary>
282
+ ListDataTransformationJobs
283
+ </summary>
284
+
285
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/ListDataTransformationJobsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationJobsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationJobsCommandOutput/)
286
+ </details>
287
+ <details>
288
+ <summary>
289
+ ListDataTransformationProfiles
290
+ </summary>
291
+
292
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/ListDataTransformationProfilesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationProfilesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationProfilesCommandOutput/)
293
+ </details>
294
+ <details>
295
+ <summary>
296
+ ListDataTransformationProfileVersions
297
+ </summary>
298
+
299
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/ListDataTransformationProfileVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationProfileVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/ListDataTransformationProfileVersionsCommandOutput/)
300
+ </details>
301
+ <details>
302
+ <summary>
221
303
  ListFHIRDatastores
222
304
  </summary>
223
305
 
@@ -246,6 +328,20 @@ ListTagsForResource
246
328
  </details>
247
329
  <details>
248
330
  <summary>
331
+ PublishDataTransformationProfile
332
+ </summary>
333
+
334
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/PublishDataTransformationProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/PublishDataTransformationProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/PublishDataTransformationProfileCommandOutput/)
335
+ </details>
336
+ <details>
337
+ <summary>
338
+ StartDataTransformationJob
339
+ </summary>
340
+
341
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/StartDataTransformationJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/StartDataTransformationJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/StartDataTransformationJobCommandOutput/)
342
+ </details>
343
+ <details>
344
+ <summary>
249
345
  StartFHIRExportJob
250
346
  </summary>
251
347
 
@@ -274,8 +370,22 @@ UntagResource
274
370
  </details>
275
371
  <details>
276
372
  <summary>
373
+ UpdateDataTransformationProfile
374
+ </summary>
375
+
376
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UpdateDataTransformationProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateDataTransformationProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateDataTransformationProfileCommandOutput/)
377
+ </details>
378
+ <details>
379
+ <summary>
277
380
  UpdateFHIRDatastore
278
381
  </summary>
279
382
 
280
383
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UpdateFHIRDatastoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateFHIRDatastoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateFHIRDatastoreCommandOutput/)
281
384
  </details>
385
+ <details>
386
+ <summary>
387
+ UpdateProfileWithAgent
388
+ </summary>
389
+
390
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/healthlake/command/UpdateProfileWithAgentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateProfileWithAgentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-healthlake/Interface/UpdateProfileWithAgentCommandOutput/)
391
+ </details>