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

Retrieve annotations for a data quality statistic.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListDataQualityStatisticAnnotationsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListDataQualityStatisticAnnotationsCommand } = 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 = { // ListDataQualityStatisticAnnotationsRequest * StatisticId: "STRING_VALUE", * ProfileId: "STRING_VALUE", * TimestampFilter: { // TimestampFilter * RecordedBefore: new Date("TIMESTAMP"), * RecordedAfter: new Date("TIMESTAMP"), * }, * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListDataQualityStatisticAnnotationsCommand(input); * const response = await client.send(command); * // { // ListDataQualityStatisticAnnotationsResponse * // Annotations: [ // AnnotationList * // { // StatisticAnnotation * // ProfileId: "STRING_VALUE", * // StatisticId: "STRING_VALUE", * // StatisticRecordedOn: new Date("TIMESTAMP"), * // InclusionAnnotation: { // TimestampedInclusionAnnotation * // Value: "INCLUDE" || "EXCLUDE", * // LastModifiedOn: new Date("TIMESTAMP"), * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataQualityStatisticAnnotationsCommandInput - {@link ListDataQualityStatisticAnnotationsCommandInput} * @returns {@link ListDataQualityStatisticAnnotationsCommandOutput} * @see {@link ListDataQualityStatisticAnnotationsCommandInput} for command's `input` shape. * @see {@link ListDataQualityStatisticAnnotationsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListDataQualityStatisticAnnotationsCommand extends ListDataQualityStatisticAnnotationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataQualityStatisticAnnotationsRequest; output: ListDataQualityStatisticAnnotationsResponse; }; sdk: { input: ListDataQualityStatisticAnnotationsCommandInput; output: ListDataQualityStatisticAnnotationsCommandOutput; }; }; }