@aws-sdk/client-healthlake 3.533.0 → 3.540.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.
- package/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/HealthLake.d.ts +2 -1
- package/dist-types/HealthLakeClient.d.ts +1 -1
- package/dist-types/commands/CreateFHIRDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFHIRDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFHIRDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFHIRExportJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFHIRImportJobCommand.d.ts +2 -1
- package/dist-types/commands/ListFHIRDatastoresCommand.d.ts +2 -1
- package/dist-types/commands/ListFHIRExportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListFHIRImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartFHIRExportJobCommand.d.ts +2 -1
- package/dist-types/commands/StartFHIRImportJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +145 -145
- package/dist-types/ts3.4/HealthLake.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateFHIRDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteFHIRDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFHIRDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFHIRExportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFHIRImportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFHIRDatastoresCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFHIRExportJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFHIRImportJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartFHIRExportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartFHIRImportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1178,9 +1178,6 @@ var paginateListFHIRExportJobs = (0, import_core.createPaginator)(HealthLakeClie
|
|
|
1178
1178
|
// src/pagination/ListFHIRImportJobsPaginator.ts
|
|
1179
1179
|
|
|
1180
1180
|
var paginateListFHIRImportJobs = (0, import_core.createPaginator)(HealthLakeClient, ListFHIRImportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1181
|
-
|
|
1182
|
-
// src/index.ts
|
|
1183
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1184
1181
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1185
1182
|
|
|
1186
1183
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -47,6 +47,7 @@ export interface HealthLake {
|
|
|
47
47
|
/**
|
|
48
48
|
* @see {@link ListFHIRDatastoresCommand}
|
|
49
49
|
*/
|
|
50
|
+
listFHIRDatastores(): Promise<ListFHIRDatastoresCommandOutput>;
|
|
50
51
|
listFHIRDatastores(args: ListFHIRDatastoresCommandInput, options?: __HttpHandlerOptions): Promise<ListFHIRDatastoresCommandOutput>;
|
|
51
52
|
listFHIRDatastores(args: ListFHIRDatastoresCommandInput, cb: (err: any, data?: ListFHIRDatastoresCommandOutput) => void): void;
|
|
52
53
|
listFHIRDatastores(args: ListFHIRDatastoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFHIRDatastoresCommandOutput) => void): void;
|
|
@@ -94,9 +95,9 @@ export interface HealthLake {
|
|
|
94
95
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
95
96
|
}
|
|
96
97
|
/**
|
|
97
|
-
* @public
|
|
98
98
|
* <p>AWS HealthLake is a HIPAA eligibile service that allows customers to store,
|
|
99
99
|
* transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud.</p>
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class HealthLake extends HealthLakeClient implements HealthLake {
|
|
102
103
|
}
|
|
@@ -164,9 +164,9 @@ export type HealthLakeClientResolvedConfigType = __SmithyResolvedConfiguration<_
|
|
|
164
164
|
export interface HealthLakeClientResolvedConfig extends HealthLakeClientResolvedConfigType {
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <p>AWS HealthLake is a HIPAA eligibile service that allows customers to store,
|
|
169
168
|
* transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud.</p>
|
|
169
|
+
* @public
|
|
170
170
|
*/
|
|
171
171
|
export declare class HealthLakeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, HealthLakeClientResolvedConfig> {
|
|
172
172
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateFHIRDatastoreCommandOutput extends CreateFHIRDatastoreRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateFHIRDatastoreCommand_base: {
|
|
24
24
|
new (input: CreateFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<CreateFHIRDatastoreCommandInput, CreateFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<CreateFHIRDatastoreCommandInput, CreateFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a data store that can ingest and export FHIR formatted data.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -91,6 +91,7 @@ declare const CreateFHIRDatastoreCommand_base: {
|
|
|
91
91
|
* @throws {@link HealthLakeServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class CreateFHIRDatastoreCommand extends CreateFHIRDatastoreCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteFHIRDatastoreCommandOutput extends DeleteFHIRDatastoreRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteFHIRDatastoreCommand_base: {
|
|
24
24
|
new (input: DeleteFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFHIRDatastoreCommandInput, DeleteFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFHIRDatastoreCommandInput, DeleteFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a data store. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -74,6 +74,7 @@ declare const DeleteFHIRDatastoreCommand_base: {
|
|
|
74
74
|
* @throws {@link HealthLakeServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteFHIRDatastoreCommand extends DeleteFHIRDatastoreCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastor
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFHIRDatastoreCommand_base: {
|
|
24
24
|
new (input: DescribeFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRDatastoreCommandInput, DescribeFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFHIRDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRDatastoreCommandInput, DescribeFHIRDatastoreCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets the properties associated with the FHIR data store, including the data store ID,
|
|
30
30
|
* data store ARN, data store name, data store status, when the data store was created, data store type version, and the data store's endpoint.</p>
|
|
31
31
|
* @example
|
|
@@ -89,6 +89,7 @@ declare const DescribeFHIRDatastoreCommand_base: {
|
|
|
89
89
|
* @throws {@link HealthLakeServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class DescribeFHIRDatastoreCommand extends DescribeFHIRDatastoreCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFHIRExportJobCommandOutput extends DescribeFHIRExportJo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFHIRExportJobCommand_base: {
|
|
24
24
|
new (input: DescribeFHIRExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRExportJobCommandInput, DescribeFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFHIRExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRExportJobCommandInput, DescribeFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays the properties of a FHIR export job, including the ID, ARN, name, and the status of the job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DescribeFHIRExportJobCommand_base: {
|
|
|
81
81
|
* @throws {@link HealthLakeServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DescribeFHIRExportJobCommand extends DescribeFHIRExportJobCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFHIRImportJobCommand_base: {
|
|
24
24
|
new (input: DescribeFHIRImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRImportJobCommandInput, DescribeFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFHIRImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFHIRImportJobCommandInput, DescribeFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -94,6 +94,7 @@ declare const DescribeFHIRImportJobCommand_base: {
|
|
|
94
94
|
* @throws {@link HealthLakeServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class DescribeFHIRImportJobCommand extends DescribeFHIRImportJobCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFHIRDatastoresCommandOutput extends ListFHIRDatastoresRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFHIRDatastoresCommand_base: {
|
|
24
24
|
new (input: ListFHIRDatastoresCommandInput): import("@smithy/smithy-client").CommandImpl<ListFHIRDatastoresCommandInput, ListFHIRDatastoresCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListFHIRDatastoresCommandInput]): import("@smithy/smithy-client").CommandImpl<ListFHIRDatastoresCommandInput, ListFHIRDatastoresCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all FHIR data stores that are in the user’s account, regardless of data store status.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -95,6 +95,7 @@ declare const ListFHIRDatastoresCommand_base: {
|
|
|
95
95
|
* @throws {@link HealthLakeServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
97
97
|
*
|
|
98
|
+
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class ListFHIRDatastoresCommand extends ListFHIRDatastoresCommand_base {
|
|
100
101
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFHIRExportJobsCommandOutput extends ListFHIRExportJobsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFHIRExportJobsCommand_base: {
|
|
24
24
|
new (input: ListFHIRExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFHIRExportJobsCommandInput, ListFHIRExportJobsCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListFHIRExportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFHIRExportJobsCommandInput, ListFHIRExportJobsCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Lists all FHIR export jobs associated with an account and their statuses.
|
|
31
31
|
* </p>
|
|
@@ -94,6 +94,7 @@ declare const ListFHIRExportJobsCommand_base: {
|
|
|
94
94
|
* @throws {@link HealthLakeServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class ListFHIRExportJobsCommand extends ListFHIRExportJobsCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFHIRImportJobsCommandOutput extends ListFHIRImportJobsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFHIRImportJobsCommand_base: {
|
|
24
24
|
new (input: ListFHIRImportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFHIRImportJobsCommandInput, ListFHIRImportJobsCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListFHIRImportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFHIRImportJobsCommandInput, ListFHIRImportJobsCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Lists all FHIR import jobs associated with an account and their statuses.
|
|
31
31
|
* </p>
|
|
@@ -107,6 +107,7 @@ declare const ListFHIRImportJobsCommand_base: {
|
|
|
107
107
|
* @throws {@link HealthLakeServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
109
109
|
*
|
|
110
|
+
* @public
|
|
110
111
|
*/
|
|
111
112
|
export declare class ListFHIRImportJobsCommand extends ListFHIRImportJobsCommand_base {
|
|
112
113
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Returns a list of all existing tags associated with a data store.
|
|
31
31
|
* </p>
|
|
@@ -66,6 +66,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link HealthLakeServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartFHIRExportJobCommandOutput extends StartFHIRExportJobRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartFHIRExportJobCommand_base: {
|
|
24
24
|
new (input: StartFHIRExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFHIRExportJobCommandInput, StartFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartFHIRExportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFHIRExportJobCommandInput, StartFHIRExportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Begins a FHIR export job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const StartFHIRExportJobCommand_base: {
|
|
|
79
79
|
* @throws {@link HealthLakeServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class StartFHIRExportJobCommand extends StartFHIRExportJobCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartFHIRImportJobCommand_base: {
|
|
24
24
|
new (input: StartFHIRImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFHIRImportJobCommandInput, StartFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartFHIRImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartFHIRImportJobCommandInput, StartFHIRImportJobCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Begins a FHIR Import job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const StartFHIRImportJobCommand_base: {
|
|
|
82
82
|
* @throws {@link HealthLakeServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class StartFHIRImportJobCommand extends StartFHIRImportJobCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Adds a user specified key and value tag to a data store.
|
|
31
31
|
* </p>
|
|
@@ -65,6 +65,7 @@ declare const TagResourceCommand_base: {
|
|
|
65
65
|
* @throws {@link HealthLakeServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>
|
|
30
30
|
* Removes tags from a data store.
|
|
31
31
|
* </p>
|
|
@@ -62,6 +62,7 @@ declare const UntagResourceCommand_base: {
|
|
|
62
62
|
* @throws {@link HealthLakeServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from HealthLake service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
67
68
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -12,5 +12,4 @@ export { HealthLakeExtensionConfiguration } from "./extensionConfiguration";
|
|
|
12
12
|
export * from "./commands";
|
|
13
13
|
export * from "./pagination";
|
|
14
14
|
export * from "./models";
|
|
15
|
-
import "@aws-sdk/util-endpoints";
|
|
16
15
|
export { HealthLakeServiceException } from "./models/HealthLakeServiceException";
|