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 { StartTriggerRequest, StartTriggerResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartTriggerCommand}. */ export interface StartTriggerCommandInput extends StartTriggerRequest { } /** * @public * * The output of {@link StartTriggerCommand}. */ export interface StartTriggerCommandOutput extends StartTriggerResponse, __MetadataBearer { } declare const StartTriggerCommand_base: { new (input: StartTriggerCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartTriggerCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Starts an existing trigger. See Triggering * Jobs for information about how different types of trigger are * started.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, StartTriggerCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, StartTriggerCommand } = 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 = { // StartTriggerRequest * Name: "STRING_VALUE", // required * }; * const command = new StartTriggerCommand(input); * const response = await client.send(command); * // { // StartTriggerResponse * // Name: "STRING_VALUE", * // }; * * ``` * * @param StartTriggerCommandInput - {@link StartTriggerCommandInput} * @returns {@link StartTriggerCommandOutput} * @see {@link StartTriggerCommandInput} for command's `input` shape. * @see {@link StartTriggerCommandOutput} 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 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 ResourceNumberLimitExceededException} (client fault) *

A resource numerical limit was exceeded.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class StartTriggerCommand extends StartTriggerCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartTriggerRequest; output: StartTriggerResponse; }; sdk: { input: StartTriggerCommandInput; output: StartTriggerCommandOutput; }; }; }