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

Sets the schedule state of the specified crawler to * NOT_SCHEDULED, but does not stop the crawler if it is * already running.

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

A specified entity does not exist

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

The operation timed out.

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

The specified scheduler is not running.

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

The specified scheduler is transitioning.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class StopCrawlerScheduleCommand extends StopCrawlerScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopCrawlerScheduleRequest; output: {}; }; sdk: { input: StopCrawlerScheduleCommandInput; output: StopCrawlerScheduleCommandOutput; }; }; }