import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetIdMappingJobInput, GetIdMappingJobOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetIdMappingJobCommand}. */ export interface GetIdMappingJobCommandInput extends GetIdMappingJobInput { } /** * @public * * The output of {@link GetIdMappingJobCommand}. */ export interface GetIdMappingJobCommandOutput extends GetIdMappingJobOutput, __MetadataBearer { } declare const GetIdMappingJobCommand_base: { new (input: GetIdMappingJobCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetIdMappingJobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the status, metrics, and errors (if there are any) that are associated with a job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EntityResolutionClient, GetIdMappingJobCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import * // const { EntityResolutionClient, GetIdMappingJobCommand } = require("@aws-sdk/client-entityresolution"); // CommonJS import * // import type { EntityResolutionClientConfig } from "@aws-sdk/client-entityresolution"; * const config = {}; // type is EntityResolutionClientConfig * const client = new EntityResolutionClient(config); * const input = { // GetIdMappingJobInput * workflowName: "STRING_VALUE", // required * jobId: "STRING_VALUE", // required * }; * const command = new GetIdMappingJobCommand(input); * const response = await client.send(command); * // { // GetIdMappingJobOutput * // jobId: "STRING_VALUE", // required * // status: "RUNNING" || "SUCCEEDED" || "FAILED" || "QUEUED", // required * // startTime: new Date("TIMESTAMP"), // required * // endTime: new Date("TIMESTAMP"), * // metrics: { // IdMappingJobMetrics * // inputRecords: Number("int"), * // totalRecordsProcessed: Number("int"), * // recordsNotProcessed: Number("int"), * // deleteRecordsProcessed: Number("int"), * // totalMappedRecords: Number("int"), * // totalMappedSourceRecords: Number("int"), * // totalMappedTargetRecords: Number("int"), * // uniqueRecordsLoaded: Number("int"), * // newMappedRecords: Number("int"), * // newMappedSourceRecords: Number("int"), * // newMappedTargetRecords: Number("int"), * // newUniqueRecordsLoaded: Number("int"), * // mappedRecordsRemoved: Number("int"), * // mappedSourceRecordsRemoved: Number("int"), * // mappedTargetRecordsRemoved: Number("int"), * // }, * // errorDetails: { // ErrorDetails * // errorMessage: "STRING_VALUE", * // }, * // outputSourceConfig: [ // IdMappingJobOutputSourceConfig * // { // IdMappingJobOutputSource * // roleArn: "STRING_VALUE", // required * // outputS3Path: "STRING_VALUE", // required * // KMSArn: "STRING_VALUE", * // }, * // ], * // jobType: "BATCH" || "INCREMENTAL" || "DELETE_ONLY", * // }; * * ``` * * @param GetIdMappingJobCommandInput - {@link GetIdMappingJobCommandInput} * @returns {@link GetIdMappingJobCommandOutput} * @see {@link GetIdMappingJobCommandInput} for command's `input` shape. * @see {@link GetIdMappingJobCommandOutput} for command's `response` shape. * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

This exception occurs when there is an internal failure in the Entity Resolution service.

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

The resource couldn't be found.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints specified by Entity Resolution.

* * @throws {@link EntityResolutionServiceException} *

Base exception class for all service exceptions from EntityResolution service.

* * * @public */ export declare class GetIdMappingJobCommand extends GetIdMappingJobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetIdMappingJobInput; output: GetIdMappingJobOutput; }; sdk: { input: GetIdMappingJobCommandInput; output: GetIdMappingJobCommandOutput; }; }; }