import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { ResumeWorkflowRunRequest, ResumeWorkflowRunResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ResumeWorkflowRunCommand}. */ export interface ResumeWorkflowRunCommandInput extends ResumeWorkflowRunRequest { } /** * @public * * The output of {@link ResumeWorkflowRunCommand}. */ export interface ResumeWorkflowRunCommandOutput extends ResumeWorkflowRunResponse, __MetadataBearer { } declare const ResumeWorkflowRunCommand_base: { new (input: ResumeWorkflowRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: ResumeWorkflowRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Restarts selected nodes of a previous partially completed workflow run and resumes the workflow run. The selected nodes and all nodes that are downstream from the selected nodes are run.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ResumeWorkflowRunCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ResumeWorkflowRunCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // ResumeWorkflowRunRequest * Name: "STRING_VALUE", // required * RunId: "STRING_VALUE", // required * NodeIds: [ // NodeIdList // required * "STRING_VALUE", * ], * }; * const command = new ResumeWorkflowRunCommand(input); * const response = await client.send(command); * // { // ResumeWorkflowRunResponse * // RunId: "STRING_VALUE", * // NodeIds: [ // NodeIdList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param ResumeWorkflowRunCommandInput - {@link ResumeWorkflowRunCommandInput} * @returns {@link ResumeWorkflowRunCommandOutput} * @see {@link ResumeWorkflowRunCommandInput} for command's `input` shape. * @see {@link ResumeWorkflowRunCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link ConcurrentRunsExceededException} (client fault) *

Too many jobs are being run concurrently.

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

A specified entity does not exist

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

The workflow is in an invalid state to perform a requested operation.

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

An internal service error occurred.

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

The input provided was not valid.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ResumeWorkflowRunCommand extends ResumeWorkflowRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ResumeWorkflowRunRequest; output: ResumeWorkflowRunResponse; }; sdk: { input: ResumeWorkflowRunCommandInput; output: ResumeWorkflowRunCommandOutput; }; }; }