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

Stops a materialized view refresh task run, for a specified table and columns.

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

Access to a resource was denied.

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

The input provided was not valid.

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

Exception thrown when stopping a task that is not in running state.

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

Exception thrown when a task is already in stopping state.

* * @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 StopMaterializedViewRefreshTaskRunCommand extends StopMaterializedViewRefreshTaskRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopMaterializedViewRefreshTaskRunRequest; output: {}; }; sdk: { input: StopMaterializedViewRefreshTaskRunCommandInput; output: StopMaterializedViewRefreshTaskRunCommandOutput; }; }; }