import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateMapRunInput, UpdateMapRunOutput } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateMapRunCommand}. */ export interface UpdateMapRunCommandInput extends UpdateMapRunInput { } /** * @public * * The output of {@link UpdateMapRunCommand}. */ export interface UpdateMapRunCommandOutput extends UpdateMapRunOutput, __MetadataBearer { } declare const UpdateMapRunCommand_base: { new (input: UpdateMapRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateMapRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Updates an in-progress Map Run's configuration to include changes to the settings that control maximum concurrency and Map Run failure.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SFNClient, UpdateMapRunCommand } from "@aws-sdk/client-sfn"; // ES Modules import * // const { SFNClient, UpdateMapRunCommand } = require("@aws-sdk/client-sfn"); // CommonJS import * // import type { SFNClientConfig } from "@aws-sdk/client-sfn"; * const config = {}; // type is SFNClientConfig * const client = new SFNClient(config); * const input = { // UpdateMapRunInput * mapRunArn: "STRING_VALUE", // required * maxConcurrency: Number("int"), * toleratedFailurePercentage: Number("float"), * toleratedFailureCount: Number("long"), * }; * const command = new UpdateMapRunCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateMapRunCommandInput - {@link UpdateMapRunCommandInput} * @returns {@link UpdateMapRunCommandOutput} * @see {@link UpdateMapRunCommandInput} for command's `input` shape. * @see {@link UpdateMapRunCommandOutput} for command's `response` shape. * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape. * * @throws {@link InvalidArn} (client fault) *

The provided Amazon Resource Name (ARN) is not valid.

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

Could not find the referenced resource.

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

The input does not satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* * * @public */ export declare class UpdateMapRunCommand extends UpdateMapRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateMapRunInput; output: {}; }; sdk: { input: UpdateMapRunCommandInput; output: UpdateMapRunCommandOutput; }; }; }