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

Starts a column statistics task run schedule.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class StartColumnStatisticsTaskRunScheduleCommand extends StartColumnStatisticsTaskRunScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartColumnStatisticsTaskRunScheduleRequest; output: {}; }; sdk: { input: StartColumnStatisticsTaskRunScheduleCommandInput; output: StartColumnStatisticsTaskRunScheduleCommandOutput; }; }; }