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 { BatchPutDataQualityStatisticAnnotationRequest, BatchPutDataQualityStatisticAnnotationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link BatchPutDataQualityStatisticAnnotationCommand}. */ export interface BatchPutDataQualityStatisticAnnotationCommandInput extends BatchPutDataQualityStatisticAnnotationRequest { } /** * @public * * The output of {@link BatchPutDataQualityStatisticAnnotationCommand}. */ export interface BatchPutDataQualityStatisticAnnotationCommandOutput extends BatchPutDataQualityStatisticAnnotationResponse, __MetadataBearer { } declare const BatchPutDataQualityStatisticAnnotationCommand_base: { new (input: BatchPutDataQualityStatisticAnnotationCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchPutDataQualityStatisticAnnotationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Annotate datapoints over time for a specific data quality statistic. * The API requires both profileID and statisticID as part of the InclusionAnnotation input. * The API only works for a single statisticId across multiple profiles.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, BatchPutDataQualityStatisticAnnotationCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, BatchPutDataQualityStatisticAnnotationCommand } = 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 = { // BatchPutDataQualityStatisticAnnotationRequest * InclusionAnnotations: [ // InclusionAnnotationList // required * { // DatapointInclusionAnnotation * ProfileId: "STRING_VALUE", * StatisticId: "STRING_VALUE", * InclusionAnnotation: "INCLUDE" || "EXCLUDE", * }, * ], * ClientToken: "STRING_VALUE", * }; * const command = new BatchPutDataQualityStatisticAnnotationCommand(input); * const response = await client.send(command); * // { // BatchPutDataQualityStatisticAnnotationResponse * // FailedInclusionAnnotations: [ // AnnotationErrorList * // { // AnnotationError * // ProfileId: "STRING_VALUE", * // StatisticId: "STRING_VALUE", * // FailureReason: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param BatchPutDataQualityStatisticAnnotationCommandInput - {@link BatchPutDataQualityStatisticAnnotationCommandInput} * @returns {@link BatchPutDataQualityStatisticAnnotationCommandOutput} * @see {@link BatchPutDataQualityStatisticAnnotationCommandInput} for command's `input` shape. * @see {@link BatchPutDataQualityStatisticAnnotationCommandOutput} 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 InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

* * @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 BatchPutDataQualityStatisticAnnotationCommand extends BatchPutDataQualityStatisticAnnotationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchPutDataQualityStatisticAnnotationRequest; output: BatchPutDataQualityStatisticAnnotationResponse; }; sdk: { input: BatchPutDataQualityStatisticAnnotationCommandInput; output: BatchPutDataQualityStatisticAnnotationCommandOutput; }; }; }