import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateIdMappingWorkflowInput, UpdateIdMappingWorkflowOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateIdMappingWorkflowCommand}. */ export interface UpdateIdMappingWorkflowCommandInput extends UpdateIdMappingWorkflowInput { } /** * @public * * The output of {@link UpdateIdMappingWorkflowCommand}. */ export interface UpdateIdMappingWorkflowCommandOutput extends UpdateIdMappingWorkflowOutput, __MetadataBearer { } declare const UpdateIdMappingWorkflowCommand_base: { new (input: UpdateIdMappingWorkflowCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateIdMappingWorkflowCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates an existing IdMappingWorkflow. This method is identical to CreateIdMappingWorkflow, except it uses an HTTP PUT request instead of a POST request, and the IdMappingWorkflow must already exist for the method to succeed.

Incremental processing is not supported for ID mapping workflows.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EntityResolutionClient, UpdateIdMappingWorkflowCommand } from "@aws-sdk/client-entityresolution"; // ES Modules import * // const { EntityResolutionClient, UpdateIdMappingWorkflowCommand } = 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 = { // UpdateIdMappingWorkflowInput * workflowName: "STRING_VALUE", // required * description: "STRING_VALUE", * inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required * { // IdMappingWorkflowInputSource * inputSourceARN: "STRING_VALUE", // required * schemaName: "STRING_VALUE", * type: "SOURCE" || "TARGET", * }, * ], * outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig * { // IdMappingWorkflowOutputSource * KMSArn: "STRING_VALUE", * outputS3Path: "STRING_VALUE", // required * }, * ], * idMappingTechniques: { // IdMappingTechniques * idMappingType: "PROVIDER" || "RULE_BASED", // required * ruleBasedProperties: { // IdMappingRuleBasedProperties * rules: [ // RuleList * { // Rule * ruleName: "STRING_VALUE", // required * matchingKeys: [ // MatchingKeys // required * "STRING_VALUE", * ], * }, * ], * ruleDefinitionType: "SOURCE" || "TARGET", // required * attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required * recordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET", // required * }, * providerProperties: { // ProviderProperties * providerServiceArn: "STRING_VALUE", // required * providerConfiguration: "DOCUMENT_VALUE", * intermediateSourceConfiguration: { // IntermediateSourceConfiguration * intermediateS3Path: "STRING_VALUE", // required * }, * }, * }, * incrementalRunConfig: { // IdMappingIncrementalRunConfig * incrementalRunType: "ON_DEMAND", * }, * roleArn: "STRING_VALUE", * }; * const command = new UpdateIdMappingWorkflowCommand(input); * const response = await client.send(command); * // { // UpdateIdMappingWorkflowOutput * // workflowName: "STRING_VALUE", // required * // workflowArn: "STRING_VALUE", // required * // description: "STRING_VALUE", * // inputSourceConfig: [ // IdMappingWorkflowInputSourceConfig // required * // { // IdMappingWorkflowInputSource * // inputSourceARN: "STRING_VALUE", // required * // schemaName: "STRING_VALUE", * // type: "SOURCE" || "TARGET", * // }, * // ], * // outputSourceConfig: [ // IdMappingWorkflowOutputSourceConfig * // { // IdMappingWorkflowOutputSource * // KMSArn: "STRING_VALUE", * // outputS3Path: "STRING_VALUE", // required * // }, * // ], * // idMappingTechniques: { // IdMappingTechniques * // idMappingType: "PROVIDER" || "RULE_BASED", // required * // ruleBasedProperties: { // IdMappingRuleBasedProperties * // rules: [ // RuleList * // { // Rule * // ruleName: "STRING_VALUE", // required * // matchingKeys: [ // MatchingKeys // required * // "STRING_VALUE", * // ], * // }, * // ], * // ruleDefinitionType: "SOURCE" || "TARGET", // required * // attributeMatchingModel: "ONE_TO_ONE" || "MANY_TO_MANY", // required * // recordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" || "MANY_SOURCE_TO_ONE_TARGET", // required * // }, * // providerProperties: { // ProviderProperties * // providerServiceArn: "STRING_VALUE", // required * // providerConfiguration: "DOCUMENT_VALUE", * // intermediateSourceConfiguration: { // IntermediateSourceConfiguration * // intermediateS3Path: "STRING_VALUE", // required * // }, * // }, * // }, * // incrementalRunConfig: { // IdMappingIncrementalRunConfig * // incrementalRunType: "ON_DEMAND", * // }, * // roleArn: "STRING_VALUE", * // }; * * ``` * * @param UpdateIdMappingWorkflowCommandInput - {@link UpdateIdMappingWorkflowCommandInput} * @returns {@link UpdateIdMappingWorkflowCommandOutput} * @see {@link UpdateIdMappingWorkflowCommandInput} for command's `input` shape. * @see {@link UpdateIdMappingWorkflowCommandOutput} 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 UpdateIdMappingWorkflowCommand extends UpdateIdMappingWorkflowCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateIdMappingWorkflowInput; output: UpdateIdMappingWorkflowOutput; }; sdk: { input: UpdateIdMappingWorkflowCommandInput; output: UpdateIdMappingWorkflowCommandOutput; }; }; }