import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { BatchDeleteUniqueIdInput, BatchDeleteUniqueIdOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link BatchDeleteUniqueIdCommand}. */ export interface BatchDeleteUniqueIdCommandInput extends BatchDeleteUniqueIdInput { } /** * @public * * The output of {@link BatchDeleteUniqueIdCommand}. */ export interface BatchDeleteUniqueIdCommandOutput extends BatchDeleteUniqueIdOutput, __MetadataBearer { } declare const BatchDeleteUniqueIdCommand_base: { new (input: BatchDeleteUniqueIdCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchDeleteUniqueIdCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes multiple unique IDs in a matching workflow.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EntityResolutionClient, BatchDeleteUniqueIdCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import * // const { EntityResolutionClient, BatchDeleteUniqueIdCommand } = 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 = { // BatchDeleteUniqueIdInput * workflowName: "STRING_VALUE", // required * inputSource: "STRING_VALUE", * uniqueIds: [ // UniqueIdList // required * "STRING_VALUE", * ], * }; * const command = new BatchDeleteUniqueIdCommand(input); * const response = await client.send(command); * // { // BatchDeleteUniqueIdOutput * // status: "COMPLETED" || "ACCEPTED", // required * // errors: [ // DeleteUniqueIdErrorsList // required * // { // DeleteUniqueIdError * // uniqueId: "STRING_VALUE", // required * // errorType: "SERVICE_ERROR" || "VALIDATION_ERROR", // required * // }, * // ], * // deleted: [ // DeletedUniqueIdList // required * // { // DeletedUniqueId * // uniqueId: "STRING_VALUE", // required * // }, * // ], * // disconnectedUniqueIds: [ // DisconnectedUniqueIdsList // required * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchDeleteUniqueIdCommandInput - {@link BatchDeleteUniqueIdCommandInput} * @returns {@link BatchDeleteUniqueIdCommandOutput} * @see {@link BatchDeleteUniqueIdCommandInput} for command's `input` shape. * @see {@link BatchDeleteUniqueIdCommandOutput} for command's `response` shape. * @see {@link EntityResolutionClientResolvedConfig | config} for EntityResolutionClient's `config` shape. * * @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 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 BatchDeleteUniqueIdCommand extends BatchDeleteUniqueIdCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchDeleteUniqueIdInput; output: BatchDeleteUniqueIdOutput; }; sdk: { input: BatchDeleteUniqueIdCommandInput; output: BatchDeleteUniqueIdCommandOutput; }; }; }