import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeFHIRImportJobRequest, DescribeFHIRImportJobResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeFHIRImportJobCommand}. */ export interface DescribeFHIRImportJobCommandInput extends DescribeFHIRImportJobRequest { } /** * @public * * The output of {@link DescribeFHIRImportJobCommand}. */ export interface DescribeFHIRImportJobCommandOutput extends DescribeFHIRImportJobResponse, __MetadataBearer { } declare const DescribeFHIRImportJobCommand_base: { new (input: DescribeFHIRImportJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeFHIRImportJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Get the import job properties to learn more about the job or job progress.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthLakeClient, DescribeFHIRImportJobCommand } from "@aws-sdk/client-healthlake"; // ES Modules import * // const { HealthLakeClient, DescribeFHIRImportJobCommand } = 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 = { // DescribeFHIRImportJobRequest * DatastoreId: "STRING_VALUE", // required * JobId: "STRING_VALUE", // required * }; * const command = new DescribeFHIRImportJobCommand(input); * const response = await client.send(command); * // { // DescribeFHIRImportJobResponse * // ImportJobProperties: { // ImportJobProperties * // JobId: "STRING_VALUE", // required * // JobName: "STRING_VALUE", * // JobStatus: "SUBMITTED" || "QUEUED" || "IN_PROGRESS" || "COMPLETED_WITH_ERRORS" || "COMPLETED" || "FAILED" || "CANCEL_SUBMITTED" || "CANCEL_IN_PROGRESS" || "CANCEL_COMPLETED" || "CANCEL_FAILED", // required * // SubmitTime: new Date("TIMESTAMP"), // required * // EndTime: new Date("TIMESTAMP"), * // DatastoreId: "STRING_VALUE", // required * // 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 * // }, * // }, * // JobProgressReport: { // JobProgressReport * // TotalNumberOfScannedFiles: Number("long"), * // TotalSizeOfScannedFilesInMB: Number("double"), * // TotalNumberOfImportedFiles: Number("long"), * // TotalNumberOfResourcesScanned: Number("long"), * // TotalNumberOfResourcesImported: Number("long"), * // TotalNumberOfResourcesWithCustomerError: Number("long"), * // TotalNumberOfFilesReadWithCustomerError: Number("long"), * // TotalNumberOfScannedNonFhirFiles: Number("long"), * // TotalSizeOfScannedNonFhirFilesInMB: Number("double"), * // TotalNumberOfImportedNonFhirFiles: Number("long"), * // TotalNumberOfNonFhirResourcesScanned: Number("long"), * // TotalNumberOfNonFhirResourcesImported: Number("long"), * // TotalNumberOfNonFhirResourcesWithCustomerError: Number("long"), * // TotalNumberOfNonFhirFilesReadWithCustomerError: Number("long"), * // Throughput: Number("double"), * // TotalFilesConverted: Number("long"), * // TotalResourcesGenerated: Number("long"), * // }, * // DataAccessRoleArn: "STRING_VALUE", * // Message: "STRING_VALUE", * // ValidationLevel: "strict" || "structure-only" || "minimal", * // }, * // }; * * ``` * * @param DescribeFHIRImportJobCommandInput - {@link DescribeFHIRImportJobCommandInput} * @returns {@link DescribeFHIRImportJobCommandOutput} * @see {@link DescribeFHIRImportJobCommandInput} for command's `input` shape. * @see {@link DescribeFHIRImportJobCommandOutput} for command's `response` shape. * @see {@link HealthLakeClientResolvedConfig | config} for HealthLakeClient's `config` shape. * * @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 DescribeFHIRImportJobCommand extends DescribeFHIRImportJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFHIRImportJobRequest; output: DescribeFHIRImportJobResponse; }; sdk: { input: DescribeFHIRImportJobCommandInput; output: DescribeFHIRImportJobCommandOutput; }; }; }