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

Provides information about a Map Run's configuration, progress, and results. If you've redriven a Map Run, this API action also returns information about the redrives of that Map Run. For more information, see Examining Map Run in the Step Functions Developer Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SFNClient, DescribeMapRunCommand } from "@aws-sdk/client-sfn"; // ES Modules import * // const { SFNClient, DescribeMapRunCommand } = 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 = { // DescribeMapRunInput * mapRunArn: "STRING_VALUE", // required * }; * const command = new DescribeMapRunCommand(input); * const response = await client.send(command); * // { // DescribeMapRunOutput * // mapRunArn: "STRING_VALUE", // required * // executionArn: "STRING_VALUE", // required * // status: "RUNNING" || "SUCCEEDED" || "FAILED" || "ABORTED", // required * // startDate: new Date("TIMESTAMP"), // required * // stopDate: new Date("TIMESTAMP"), * // maxConcurrency: Number("int"), // required * // toleratedFailurePercentage: Number("float"), // required * // toleratedFailureCount: Number("long"), // required * // itemCounts: { // MapRunItemCounts * // pending: Number("long"), // required * // running: Number("long"), // required * // succeeded: Number("long"), // required * // failed: Number("long"), // required * // timedOut: Number("long"), // required * // aborted: Number("long"), // required * // total: Number("long"), // required * // resultsWritten: Number("long"), // required * // failuresNotRedrivable: Number("long"), * // pendingRedrive: Number("long"), * // }, * // executionCounts: { // MapRunExecutionCounts * // pending: Number("long"), // required * // running: Number("long"), // required * // succeeded: Number("long"), // required * // failed: Number("long"), // required * // timedOut: Number("long"), // required * // aborted: Number("long"), // required * // total: Number("long"), // required * // resultsWritten: Number("long"), // required * // failuresNotRedrivable: Number("long"), * // pendingRedrive: Number("long"), * // }, * // redriveCount: Number("int"), * // redriveDate: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeMapRunCommandInput - {@link DescribeMapRunCommandInput} * @returns {@link DescribeMapRunCommandOutput} * @see {@link DescribeMapRunCommandInput} for command's `input` shape. * @see {@link DescribeMapRunCommandOutput} 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 SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* * * @public */ export declare class DescribeMapRunCommand extends DescribeMapRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeMapRunInput; output: DescribeMapRunOutput; }; sdk: { input: DescribeMapRunCommandInput; output: DescribeMapRunCommandOutput; }; }; }