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

Starts 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, StartMaterializedViewRefreshTaskRunCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, StartMaterializedViewRefreshTaskRunCommand } = 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 = { // StartMaterializedViewRefreshTaskRunRequest * CatalogId: "STRING_VALUE", // required * DatabaseName: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * FullRefresh: true || false, * }; * const command = new StartMaterializedViewRefreshTaskRunCommand(input); * const response = await client.send(command); * // { // StartMaterializedViewRefreshTaskRunResponse * // MaterializedViewRefreshTaskRunId: "STRING_VALUE", * // }; * * ``` * * @param StartMaterializedViewRefreshTaskRunCommandInput - {@link StartMaterializedViewRefreshTaskRunCommandInput} * @returns {@link StartMaterializedViewRefreshTaskRunCommandOutput} * @see {@link StartMaterializedViewRefreshTaskRunCommandInput} for command's `input` shape. * @see {@link StartMaterializedViewRefreshTaskRunCommandOutput} 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 EntityNotFoundException} (client fault) *

A specified entity does not exist

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

The input provided was not valid.

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

Exception thrown when a task is already in running state.

* * @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 StartMaterializedViewRefreshTaskRunCommand extends StartMaterializedViewRefreshTaskRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartMaterializedViewRefreshTaskRunRequest; output: StartMaterializedViewRefreshTaskRunResponse; }; sdk: { input: StartMaterializedViewRefreshTaskRunCommandInput; output: StartMaterializedViewRefreshTaskRunCommandOutput; }; }; }