import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartFHIRImportJobRequest, StartFHIRImportJobResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartFHIRImportJobCommand}. */ export interface StartFHIRImportJobCommandInput extends StartFHIRImportJobRequest { } /** * @public * * The output of {@link StartFHIRImportJobCommand}. */ export interface StartFHIRImportJobCommandOutput extends StartFHIRImportJobResponse, __MetadataBearer { } declare const StartFHIRImportJobCommand_base: { new (input: StartFHIRImportJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartFHIRImportJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Start importing bulk FHIR data into an ACTIVE data store. The import job imports FHIR data found in the InputDataConfig object and stores processing results in the JobOutputDataConfig object.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthLakeClient, StartFHIRImportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import * // const { HealthLakeClient, StartFHIRImportJobCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import * // import type { HealthLakeClientConfig } from "@aws-sdk/client-healthlake"; * const config = {}; // type is HealthLakeClientConfig * const client = new HealthLakeClient(config); * const input = { // StartFHIRImportJobRequest * JobName: "STRING_VALUE", * InputDataConfig: { // InputDataConfig Union: only one key present * S3Uri: "STRING_VALUE", * }, * JobOutputDataConfig: { // OutputDataConfig Union: only one key present * S3Configuration: { // S3Configuration * S3Uri: "STRING_VALUE", // required * KmsKeyId: "STRING_VALUE", // required * }, * }, * DatastoreId: "STRING_VALUE", // required * DataAccessRoleArn: "STRING_VALUE", // required * ClientToken: "STRING_VALUE", * ValidationLevel: "strict" || "structure-only" || "minimal", * ProfileId: "STRING_VALUE", * InputFormat: "STRING_VALUE", * DriftDetectionEnabled: true || false, * ProvenanceEnabled: true || false, * }; * const command = new StartFHIRImportJobCommand(input); * const response = await client.send(command); * // { // StartFHIRImportJobResponse * // JobId: "STRING_VALUE", // required * // JobStatus: "SUBMITTED" || "QUEUED" || "IN_PROGRESS" || "COMPLETED_WITH_ERRORS" || "COMPLETED" || "FAILED" || "CANCEL_SUBMITTED" || "CANCEL_IN_PROGRESS" || "CANCEL_COMPLETED" || "CANCEL_FAILED", // required * // DatastoreId: "STRING_VALUE", * // }; * * ``` * * @param StartFHIRImportJobCommandInput - {@link StartFHIRImportJobCommandInput} * @returns {@link StartFHIRImportJobCommandOutput} * @see {@link StartFHIRImportJobCommandInput} for command's `input` shape. * @see {@link StartFHIRImportJobCommandOutput} for command's `response` shape. * @see {@link HealthLakeClientResolvedConfig | config} for HealthLakeClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access is denied. Your account is not authorized to perform this operation.

* * @throws {@link FailedDependencyException} (client fault) * A dependent service failed to fulfill the request. * * @throws {@link InternalServerException} (server fault) *

An unknown internal error occurred in the service.

* * @throws {@link ResourceNotFoundException} (client fault) *

The requested data store was not found.

* * @throws {@link ThrottlingException} (client fault) *

The user has exceeded their maximum number of allowed calls to the given API.

* * @throws {@link ValidationException} (client fault) *

The user input parameter was invalid.

* * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* * * @public */ export declare class StartFHIRImportJobCommand extends StartFHIRImportJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartFHIRImportJobRequest; output: StartFHIRImportJobResponse; }; sdk: { input: StartFHIRImportJobCommandInput; output: StartFHIRImportJobCommandOutput; }; }; }