@aws-sdk/client-healthlake 3.47.1 → 3.50.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 (32) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +39 -33
  3. package/dist-types/ts3.4/HealthLake.d.ts +0 -70
  4. package/dist-types/ts3.4/HealthLakeClient.d.ts +0 -86
  5. package/dist-types/ts3.4/commands/CreateFHIRDatastoreCommand.d.ts +0 -17
  6. package/dist-types/ts3.4/commands/DeleteFHIRDatastoreCommand.d.ts +0 -17
  7. package/dist-types/ts3.4/commands/DescribeFHIRDatastoreCommand.d.ts +0 -17
  8. package/dist-types/ts3.4/commands/DescribeFHIRExportJobCommand.d.ts +0 -17
  9. package/dist-types/ts3.4/commands/DescribeFHIRImportJobCommand.d.ts +0 -17
  10. package/dist-types/ts3.4/commands/ListFHIRDatastoresCommand.d.ts +0 -17
  11. package/dist-types/ts3.4/commands/ListFHIRExportJobsCommand.d.ts +0 -17
  12. package/dist-types/ts3.4/commands/ListFHIRImportJobsCommand.d.ts +0 -17
  13. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
  14. package/dist-types/ts3.4/commands/StartFHIRExportJobCommand.d.ts +0 -17
  15. package/dist-types/ts3.4/commands/StartFHIRImportJobCommand.d.ts +0 -17
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
  17. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +0 -13
  19. package/dist-types/ts3.4/endpoints.d.ts +0 -2
  20. package/dist-types/ts3.4/index.d.ts +0 -5
  21. package/dist-types/ts3.4/models/index.d.ts +0 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +0 -543
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
  24. package/dist-types/ts3.4/pagination/ListFHIRDatastoresPaginator.d.ts +0 -4
  25. package/dist-types/ts3.4/pagination/ListFHIRExportJobsPaginator.d.ts +0 -4
  26. package/dist-types/ts3.4/pagination/ListFHIRImportJobsPaginator.d.ts +0 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +0 -4
  28. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
@@ -1,543 +0,0 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
-
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- Message?: string;
7
- }
8
- export declare enum CmkType {
9
- AO_CMK = "AWS_OWNED_KMS_KEY",
10
- CM_CMK = "CUSTOMER_MANAGED_KMS_KEY"
11
- }
12
-
13
- export interface ConflictException extends __SmithyException, $MetadataBearer {
14
- name: "ConflictException";
15
- $fault: "client";
16
- Message?: string;
17
- }
18
- export declare enum FHIRVersion {
19
- R4 = "R4"
20
- }
21
- export declare enum PreloadDataType {
22
- SYNTHEA = "SYNTHEA"
23
- }
24
-
25
- export interface PreloadDataConfig {
26
-
27
- PreloadDataType: PreloadDataType | string | undefined;
28
- }
29
- export declare namespace PreloadDataConfig {
30
-
31
- const filterSensitiveLog: (obj: PreloadDataConfig) => any;
32
- }
33
-
34
- export interface KmsEncryptionConfig {
35
-
36
- CmkType: CmkType | string | undefined;
37
-
38
- KmsKeyId?: string;
39
- }
40
- export declare namespace KmsEncryptionConfig {
41
-
42
- const filterSensitiveLog: (obj: KmsEncryptionConfig) => any;
43
- }
44
-
45
- export interface SseConfiguration {
46
-
47
- KmsEncryptionConfig: KmsEncryptionConfig | undefined;
48
- }
49
- export declare namespace SseConfiguration {
50
-
51
- const filterSensitiveLog: (obj: SseConfiguration) => any;
52
- }
53
-
54
- export interface Tag {
55
-
56
- Key: string | undefined;
57
-
58
- Value: string | undefined;
59
- }
60
- export declare namespace Tag {
61
-
62
- const filterSensitiveLog: (obj: Tag) => any;
63
- }
64
- export interface CreateFHIRDatastoreRequest {
65
-
66
- DatastoreName?: string;
67
-
68
- DatastoreTypeVersion: FHIRVersion | string | undefined;
69
-
70
- SseConfiguration?: SseConfiguration;
71
-
72
- PreloadDataConfig?: PreloadDataConfig;
73
-
74
- ClientToken?: string;
75
-
76
- Tags?: Tag[];
77
- }
78
- export declare namespace CreateFHIRDatastoreRequest {
79
-
80
- const filterSensitiveLog: (obj: CreateFHIRDatastoreRequest) => any;
81
- }
82
- export declare enum DatastoreStatus {
83
- ACTIVE = "ACTIVE",
84
- CREATING = "CREATING",
85
- DELETED = "DELETED",
86
- DELETING = "DELETING"
87
- }
88
- export interface CreateFHIRDatastoreResponse {
89
-
90
- DatastoreId: string | undefined;
91
-
92
- DatastoreArn: string | undefined;
93
-
94
- DatastoreStatus: DatastoreStatus | string | undefined;
95
-
96
- DatastoreEndpoint: string | undefined;
97
- }
98
- export declare namespace CreateFHIRDatastoreResponse {
99
-
100
- const filterSensitiveLog: (obj: CreateFHIRDatastoreResponse) => any;
101
- }
102
-
103
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
104
- name: "InternalServerException";
105
- $fault: "server";
106
- Message?: string;
107
- }
108
-
109
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
110
- name: "ThrottlingException";
111
- $fault: "client";
112
- Message?: string;
113
- }
114
-
115
- export interface ValidationException extends __SmithyException, $MetadataBearer {
116
- name: "ValidationException";
117
- $fault: "client";
118
- Message?: string;
119
- }
120
-
121
- export interface DatastoreFilter {
122
-
123
- DatastoreName?: string;
124
-
125
- DatastoreStatus?: DatastoreStatus | string;
126
-
127
- CreatedBefore?: Date;
128
-
129
- CreatedAfter?: Date;
130
- }
131
- export declare namespace DatastoreFilter {
132
-
133
- const filterSensitiveLog: (obj: DatastoreFilter) => any;
134
- }
135
-
136
- export interface DatastoreProperties {
137
-
138
- DatastoreId: string | undefined;
139
-
140
- DatastoreArn: string | undefined;
141
-
142
- DatastoreName?: string;
143
-
144
- DatastoreStatus: DatastoreStatus | string | undefined;
145
-
146
- CreatedAt?: Date;
147
-
148
- DatastoreTypeVersion: FHIRVersion | string | undefined;
149
-
150
- DatastoreEndpoint: string | undefined;
151
-
152
- SseConfiguration?: SseConfiguration;
153
-
154
- PreloadDataConfig?: PreloadDataConfig;
155
- }
156
- export declare namespace DatastoreProperties {
157
-
158
- const filterSensitiveLog: (obj: DatastoreProperties) => any;
159
- }
160
- export interface DeleteFHIRDatastoreRequest {
161
-
162
- DatastoreId?: string;
163
- }
164
- export declare namespace DeleteFHIRDatastoreRequest {
165
-
166
- const filterSensitiveLog: (obj: DeleteFHIRDatastoreRequest) => any;
167
- }
168
- export interface DeleteFHIRDatastoreResponse {
169
-
170
- DatastoreId: string | undefined;
171
-
172
- DatastoreArn: string | undefined;
173
-
174
- DatastoreStatus: DatastoreStatus | string | undefined;
175
-
176
- DatastoreEndpoint: string | undefined;
177
- }
178
- export declare namespace DeleteFHIRDatastoreResponse {
179
-
180
- const filterSensitiveLog: (obj: DeleteFHIRDatastoreResponse) => any;
181
- }
182
-
183
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
184
- name: "ResourceNotFoundException";
185
- $fault: "client";
186
- Message?: string;
187
- }
188
- export interface DescribeFHIRDatastoreRequest {
189
-
190
- DatastoreId?: string;
191
- }
192
- export declare namespace DescribeFHIRDatastoreRequest {
193
-
194
- const filterSensitiveLog: (obj: DescribeFHIRDatastoreRequest) => any;
195
- }
196
- export interface DescribeFHIRDatastoreResponse {
197
-
198
- DatastoreProperties: DatastoreProperties | undefined;
199
- }
200
- export declare namespace DescribeFHIRDatastoreResponse {
201
-
202
- const filterSensitiveLog: (obj: DescribeFHIRDatastoreResponse) => any;
203
- }
204
- export interface DescribeFHIRExportJobRequest {
205
-
206
- DatastoreId: string | undefined;
207
-
208
- JobId: string | undefined;
209
- }
210
- export declare namespace DescribeFHIRExportJobRequest {
211
-
212
- const filterSensitiveLog: (obj: DescribeFHIRExportJobRequest) => any;
213
- }
214
- export declare enum JobStatus {
215
- COMPLETED = "COMPLETED",
216
- COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
217
- FAILED = "FAILED",
218
- IN_PROGRESS = "IN_PROGRESS",
219
- SUBMITTED = "SUBMITTED"
220
- }
221
-
222
- export interface S3Configuration {
223
-
224
- S3Uri: string | undefined;
225
-
226
- KmsKeyId: string | undefined;
227
- }
228
- export declare namespace S3Configuration {
229
-
230
- const filterSensitiveLog: (obj: S3Configuration) => any;
231
- }
232
-
233
- export declare type OutputDataConfig = OutputDataConfig.S3ConfigurationMember | OutputDataConfig.$UnknownMember;
234
- export declare namespace OutputDataConfig {
235
-
236
- interface S3ConfigurationMember {
237
- S3Configuration: S3Configuration;
238
- $unknown?: never;
239
- }
240
- interface $UnknownMember {
241
- S3Configuration?: never;
242
- $unknown: [
243
- string,
244
- any
245
- ];
246
- }
247
- interface Visitor<T> {
248
- S3Configuration: (value: S3Configuration) => T;
249
- _: (name: string, value: any) => T;
250
- }
251
- const visit: <T>(value: OutputDataConfig, visitor: Visitor<T>) => T;
252
-
253
- const filterSensitiveLog: (obj: OutputDataConfig) => any;
254
- }
255
-
256
- export interface ExportJobProperties {
257
-
258
- JobId: string | undefined;
259
-
260
- JobName?: string;
261
-
262
- JobStatus: JobStatus | string | undefined;
263
-
264
- SubmitTime: Date | undefined;
265
-
266
- EndTime?: Date;
267
-
268
- DatastoreId: string | undefined;
269
-
270
- OutputDataConfig: OutputDataConfig | undefined;
271
-
272
- DataAccessRoleArn?: string;
273
-
274
- Message?: string;
275
- }
276
- export declare namespace ExportJobProperties {
277
-
278
- const filterSensitiveLog: (obj: ExportJobProperties) => any;
279
- }
280
- export interface DescribeFHIRExportJobResponse {
281
-
282
- ExportJobProperties: ExportJobProperties | undefined;
283
- }
284
- export declare namespace DescribeFHIRExportJobResponse {
285
-
286
- const filterSensitiveLog: (obj: DescribeFHIRExportJobResponse) => any;
287
- }
288
- export interface DescribeFHIRImportJobRequest {
289
-
290
- DatastoreId: string | undefined;
291
-
292
- JobId: string | undefined;
293
- }
294
- export declare namespace DescribeFHIRImportJobRequest {
295
-
296
- const filterSensitiveLog: (obj: DescribeFHIRImportJobRequest) => any;
297
- }
298
-
299
- export declare type InputDataConfig = InputDataConfig.S3UriMember | InputDataConfig.$UnknownMember;
300
- export declare namespace InputDataConfig {
301
-
302
- interface S3UriMember {
303
- S3Uri: string;
304
- $unknown?: never;
305
- }
306
- interface $UnknownMember {
307
- S3Uri?: never;
308
- $unknown: [
309
- string,
310
- any
311
- ];
312
- }
313
- interface Visitor<T> {
314
- S3Uri: (value: string) => T;
315
- _: (name: string, value: any) => T;
316
- }
317
- const visit: <T>(value: InputDataConfig, visitor: Visitor<T>) => T;
318
-
319
- const filterSensitiveLog: (obj: InputDataConfig) => any;
320
- }
321
-
322
- export interface ImportJobProperties {
323
-
324
- JobId: string | undefined;
325
-
326
- JobName?: string;
327
-
328
- JobStatus: JobStatus | string | undefined;
329
-
330
- SubmitTime: Date | undefined;
331
-
332
- EndTime?: Date;
333
-
334
- DatastoreId: string | undefined;
335
-
336
- InputDataConfig: InputDataConfig | undefined;
337
-
338
- JobOutputDataConfig?: OutputDataConfig;
339
-
340
- DataAccessRoleArn?: string;
341
-
342
- Message?: string;
343
- }
344
- export declare namespace ImportJobProperties {
345
-
346
- const filterSensitiveLog: (obj: ImportJobProperties) => any;
347
- }
348
- export interface DescribeFHIRImportJobResponse {
349
-
350
- ImportJobProperties: ImportJobProperties | undefined;
351
- }
352
- export declare namespace DescribeFHIRImportJobResponse {
353
-
354
- const filterSensitiveLog: (obj: DescribeFHIRImportJobResponse) => any;
355
- }
356
- export interface ListFHIRDatastoresRequest {
357
-
358
- Filter?: DatastoreFilter;
359
-
360
- NextToken?: string;
361
-
362
- MaxResults?: number;
363
- }
364
- export declare namespace ListFHIRDatastoresRequest {
365
-
366
- const filterSensitiveLog: (obj: ListFHIRDatastoresRequest) => any;
367
- }
368
- export interface ListFHIRDatastoresResponse {
369
-
370
- DatastorePropertiesList: DatastoreProperties[] | undefined;
371
-
372
- NextToken?: string;
373
- }
374
- export declare namespace ListFHIRDatastoresResponse {
375
-
376
- const filterSensitiveLog: (obj: ListFHIRDatastoresResponse) => any;
377
- }
378
- export interface ListFHIRExportJobsRequest {
379
-
380
- DatastoreId: string | undefined;
381
-
382
- NextToken?: string;
383
-
384
- MaxResults?: number;
385
-
386
- JobName?: string;
387
-
388
- JobStatus?: JobStatus | string;
389
-
390
- SubmittedBefore?: Date;
391
-
392
- SubmittedAfter?: Date;
393
- }
394
- export declare namespace ListFHIRExportJobsRequest {
395
-
396
- const filterSensitiveLog: (obj: ListFHIRExportJobsRequest) => any;
397
- }
398
- export interface ListFHIRExportJobsResponse {
399
-
400
- ExportJobPropertiesList: ExportJobProperties[] | undefined;
401
-
402
- NextToken?: string;
403
- }
404
- export declare namespace ListFHIRExportJobsResponse {
405
-
406
- const filterSensitiveLog: (obj: ListFHIRExportJobsResponse) => any;
407
- }
408
- export interface ListFHIRImportJobsRequest {
409
-
410
- DatastoreId: string | undefined;
411
-
412
- NextToken?: string;
413
-
414
- MaxResults?: number;
415
-
416
- JobName?: string;
417
-
418
- JobStatus?: JobStatus | string;
419
-
420
- SubmittedBefore?: Date;
421
-
422
- SubmittedAfter?: Date;
423
- }
424
- export declare namespace ListFHIRImportJobsRequest {
425
-
426
- const filterSensitiveLog: (obj: ListFHIRImportJobsRequest) => any;
427
- }
428
- export interface ListFHIRImportJobsResponse {
429
-
430
- ImportJobPropertiesList: ImportJobProperties[] | undefined;
431
-
432
- NextToken?: string;
433
- }
434
- export declare namespace ListFHIRImportJobsResponse {
435
-
436
- const filterSensitiveLog: (obj: ListFHIRImportJobsResponse) => any;
437
- }
438
- export interface ListTagsForResourceRequest {
439
-
440
- ResourceARN: string | undefined;
441
- }
442
- export declare namespace ListTagsForResourceRequest {
443
-
444
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
445
- }
446
- export interface ListTagsForResourceResponse {
447
-
448
- Tags?: Tag[];
449
- }
450
- export declare namespace ListTagsForResourceResponse {
451
-
452
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
453
- }
454
- export interface StartFHIRExportJobRequest {
455
-
456
- JobName?: string;
457
-
458
- OutputDataConfig: OutputDataConfig | undefined;
459
-
460
- DatastoreId: string | undefined;
461
-
462
- DataAccessRoleArn: string | undefined;
463
-
464
- ClientToken?: string;
465
- }
466
- export declare namespace StartFHIRExportJobRequest {
467
-
468
- const filterSensitiveLog: (obj: StartFHIRExportJobRequest) => any;
469
- }
470
- export interface StartFHIRExportJobResponse {
471
-
472
- JobId: string | undefined;
473
-
474
- JobStatus: JobStatus | string | undefined;
475
-
476
- DatastoreId?: string;
477
- }
478
- export declare namespace StartFHIRExportJobResponse {
479
-
480
- const filterSensitiveLog: (obj: StartFHIRExportJobResponse) => any;
481
- }
482
- export interface StartFHIRImportJobRequest {
483
-
484
- JobName?: string;
485
-
486
- InputDataConfig: InputDataConfig | undefined;
487
-
488
- JobOutputDataConfig: OutputDataConfig | undefined;
489
-
490
- DatastoreId: string | undefined;
491
-
492
- DataAccessRoleArn: string | undefined;
493
-
494
- ClientToken?: string;
495
- }
496
- export declare namespace StartFHIRImportJobRequest {
497
-
498
- const filterSensitiveLog: (obj: StartFHIRImportJobRequest) => any;
499
- }
500
- export interface StartFHIRImportJobResponse {
501
-
502
- JobId: string | undefined;
503
-
504
- JobStatus: JobStatus | string | undefined;
505
-
506
- DatastoreId?: string;
507
- }
508
- export declare namespace StartFHIRImportJobResponse {
509
-
510
- const filterSensitiveLog: (obj: StartFHIRImportJobResponse) => any;
511
- }
512
- export interface TagResourceRequest {
513
-
514
- ResourceARN: string | undefined;
515
-
516
- Tags: Tag[] | undefined;
517
- }
518
- export declare namespace TagResourceRequest {
519
-
520
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
521
- }
522
- export interface TagResourceResponse {
523
- }
524
- export declare namespace TagResourceResponse {
525
-
526
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
527
- }
528
- export interface UntagResourceRequest {
529
-
530
- ResourceARN: string | undefined;
531
-
532
- TagKeys: string[] | undefined;
533
- }
534
- export declare namespace UntagResourceRequest {
535
-
536
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
537
- }
538
- export interface UntagResourceResponse {
539
- }
540
- export declare namespace UntagResourceResponse {
541
-
542
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
543
- }
@@ -1,6 +0,0 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { HealthLake } from "../HealthLake";
3
- import { HealthLakeClient } from "../HealthLakeClient";
4
- export interface HealthLakePaginationConfiguration extends PaginationConfiguration {
5
- client: HealthLake | HealthLakeClient;
6
- }
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFHIRDatastoresCommandInput, ListFHIRDatastoresCommandOutput } from "../commands/ListFHIRDatastoresCommand";
3
- import { HealthLakePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFHIRDatastores(config: HealthLakePaginationConfiguration, input: ListFHIRDatastoresCommandInput, ...additionalArguments: any): Paginator<ListFHIRDatastoresCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFHIRExportJobsCommandInput, ListFHIRExportJobsCommandOutput } from "../commands/ListFHIRExportJobsCommand";
3
- import { HealthLakePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFHIRExportJobs(config: HealthLakePaginationConfiguration, input: ListFHIRExportJobsCommandInput, ...additionalArguments: any): Paginator<ListFHIRExportJobsCommandOutput>;
@@ -1,4 +0,0 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFHIRImportJobsCommandInput, ListFHIRImportJobsCommandOutput } from "../commands/ListFHIRImportJobsCommand";
3
- import { HealthLakePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFHIRImportJobs(config: HealthLakePaginationConfiguration, input: ListFHIRImportJobsCommandInput, ...additionalArguments: any): Paginator<ListFHIRImportJobsCommandOutput>;
@@ -1,4 +0,0 @@
1
- export * from "./Interfaces";
2
- export * from "./ListFHIRDatastoresPaginator";
3
- export * from "./ListFHIRExportJobsPaginator";
4
- export * from "./ListFHIRImportJobsPaginator";
@@ -1,41 +0,0 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateFHIRDatastoreCommandInput, CreateFHIRDatastoreCommandOutput } from "../commands/CreateFHIRDatastoreCommand";
4
- import { DeleteFHIRDatastoreCommandInput, DeleteFHIRDatastoreCommandOutput } from "../commands/DeleteFHIRDatastoreCommand";
5
- import { DescribeFHIRDatastoreCommandInput, DescribeFHIRDatastoreCommandOutput } from "../commands/DescribeFHIRDatastoreCommand";
6
- import { DescribeFHIRExportJobCommandInput, DescribeFHIRExportJobCommandOutput } from "../commands/DescribeFHIRExportJobCommand";
7
- import { DescribeFHIRImportJobCommandInput, DescribeFHIRImportJobCommandOutput } from "../commands/DescribeFHIRImportJobCommand";
8
- import { ListFHIRDatastoresCommandInput, ListFHIRDatastoresCommandOutput } from "../commands/ListFHIRDatastoresCommand";
9
- import { ListFHIRExportJobsCommandInput, ListFHIRExportJobsCommandOutput } from "../commands/ListFHIRExportJobsCommand";
10
- import { ListFHIRImportJobsCommandInput, ListFHIRImportJobsCommandOutput } from "../commands/ListFHIRImportJobsCommand";
11
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
- import { StartFHIRExportJobCommandInput, StartFHIRExportJobCommandOutput } from "../commands/StartFHIRExportJobCommand";
13
- import { StartFHIRImportJobCommandInput, StartFHIRImportJobCommandOutput } from "../commands/StartFHIRImportJobCommand";
14
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
15
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
- export declare const serializeAws_json1_0CreateFHIRDatastoreCommand: (input: CreateFHIRDatastoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_json1_0DeleteFHIRDatastoreCommand: (input: DeleteFHIRDatastoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_json1_0DescribeFHIRDatastoreCommand: (input: DescribeFHIRDatastoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_json1_0DescribeFHIRExportJobCommand: (input: DescribeFHIRExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_json1_0DescribeFHIRImportJobCommand: (input: DescribeFHIRImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_json1_0ListFHIRDatastoresCommand: (input: ListFHIRDatastoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_json1_0ListFHIRExportJobsCommand: (input: ListFHIRExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_json1_0ListFHIRImportJobsCommand: (input: ListFHIRImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_json1_0StartFHIRExportJobCommand: (input: StartFHIRExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_json1_0StartFHIRImportJobCommand: (input: StartFHIRImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_json1_0CreateFHIRDatastoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFHIRDatastoreCommandOutput>;
30
- export declare const deserializeAws_json1_0DeleteFHIRDatastoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFHIRDatastoreCommandOutput>;
31
- export declare const deserializeAws_json1_0DescribeFHIRDatastoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFHIRDatastoreCommandOutput>;
32
- export declare const deserializeAws_json1_0DescribeFHIRExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFHIRExportJobCommandOutput>;
33
- export declare const deserializeAws_json1_0DescribeFHIRImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFHIRImportJobCommandOutput>;
34
- export declare const deserializeAws_json1_0ListFHIRDatastoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFHIRDatastoresCommandOutput>;
35
- export declare const deserializeAws_json1_0ListFHIRExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFHIRExportJobsCommandOutput>;
36
- export declare const deserializeAws_json1_0ListFHIRImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFHIRImportJobsCommandOutput>;
37
- export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
38
- export declare const deserializeAws_json1_0StartFHIRExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFHIRExportJobCommandOutput>;
39
- export declare const deserializeAws_json1_0StartFHIRImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFHIRImportJobCommandOutput>;
40
- export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
41
- export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -1,38 +0,0 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { HealthLakeClientConfig } from "./HealthLakeClient";
3
-
4
- export declare const getRuntimeConfig: (config: HealthLakeClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };