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

List all task runs for a particular account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListColumnStatisticsTaskRunsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListColumnStatisticsTaskRunsCommand } = 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 = { // ListColumnStatisticsTaskRunsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListColumnStatisticsTaskRunsCommand(input); * const response = await client.send(command); * // { // ListColumnStatisticsTaskRunsResponse * // ColumnStatisticsTaskRunIds: [ // ColumnStatisticsTaskRunIdList * // "STRING_VALUE", * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListColumnStatisticsTaskRunsCommandInput - {@link ListColumnStatisticsTaskRunsCommandInput} * @returns {@link ListColumnStatisticsTaskRunsCommandOutput} * @see {@link ListColumnStatisticsTaskRunsCommandInput} for command's `input` shape. * @see {@link ListColumnStatisticsTaskRunsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @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 ListColumnStatisticsTaskRunsCommand extends ListColumnStatisticsTaskRunsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListColumnStatisticsTaskRunsRequest; output: ListColumnStatisticsTaskRunsResponse; }; sdk: { input: ListColumnStatisticsTaskRunsCommandInput; output: ListColumnStatisticsTaskRunsCommandOutput; }; }; }