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 { GetColumnStatisticsTaskSettingsRequest, GetColumnStatisticsTaskSettingsResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetColumnStatisticsTaskSettingsCommand}. */ export interface GetColumnStatisticsTaskSettingsCommandInput extends GetColumnStatisticsTaskSettingsRequest { } /** * @public * * The output of {@link GetColumnStatisticsTaskSettingsCommand}. */ export interface GetColumnStatisticsTaskSettingsCommandOutput extends GetColumnStatisticsTaskSettingsResponse, __MetadataBearer { } declare const GetColumnStatisticsTaskSettingsCommand_base: { new (input: GetColumnStatisticsTaskSettingsCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetColumnStatisticsTaskSettingsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Gets settings for a column statistics task.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetColumnStatisticsTaskSettingsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetColumnStatisticsTaskSettingsCommand } = 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 = { // GetColumnStatisticsTaskSettingsRequest * DatabaseName: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * }; * const command = new GetColumnStatisticsTaskSettingsCommand(input); * const response = await client.send(command); * // { // GetColumnStatisticsTaskSettingsResponse * // ColumnStatisticsTaskSettings: { // ColumnStatisticsTaskSettings * // DatabaseName: "STRING_VALUE", * // TableName: "STRING_VALUE", * // Schedule: { // Schedule * // ScheduleExpression: "STRING_VALUE", * // State: "SCHEDULED" || "NOT_SCHEDULED" || "TRANSITIONING", * // }, * // ColumnNameList: [ // ColumnNameList * // "STRING_VALUE", * // ], * // CatalogID: "STRING_VALUE", * // Role: "STRING_VALUE", * // SampleSize: Number("double"), * // SecurityConfiguration: "STRING_VALUE", * // ScheduleType: "CRON" || "AUTO", * // SettingSource: "CATALOG" || "TABLE", * // LastExecutionAttempt: { // ExecutionAttempt * // Status: "FAILED" || "STARTED", * // ColumnStatisticsTaskRunId: "STRING_VALUE", * // ExecutionTimestamp: new Date("TIMESTAMP"), * // ErrorMessage: "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param GetColumnStatisticsTaskSettingsCommandInput - {@link GetColumnStatisticsTaskSettingsCommandInput} * @returns {@link GetColumnStatisticsTaskSettingsCommandOutput} * @see {@link GetColumnStatisticsTaskSettingsCommandInput} for command's `input` shape. * @see {@link GetColumnStatisticsTaskSettingsCommandOutput} 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 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 GetColumnStatisticsTaskSettingsCommand extends GetColumnStatisticsTaskSettingsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetColumnStatisticsTaskSettingsRequest; output: GetColumnStatisticsTaskSettingsResponse; }; sdk: { input: GetColumnStatisticsTaskSettingsCommandInput; output: GetColumnStatisticsTaskSettingsCommandOutput; }; }; }