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

Stops a specified trigger.

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

Two processes are trying to modify a resource simultaneously.

* * @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 GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class StopTriggerCommand extends StopTriggerCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopTriggerRequest; output: StopTriggerResponse; }; sdk: { input: StopTriggerCommandInput; output: StopTriggerCommandOutput; }; }; }