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 { UpdateIntegrationTablePropertiesRequest, UpdateIntegrationTablePropertiesResponse } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateIntegrationTablePropertiesCommand}. */ export interface UpdateIntegrationTablePropertiesCommandInput extends UpdateIntegrationTablePropertiesRequest { } /** * @public * * The output of {@link UpdateIntegrationTablePropertiesCommand}. */ export interface UpdateIntegrationTablePropertiesCommandOutput extends UpdateIntegrationTablePropertiesResponse, __MetadataBearer { } declare const UpdateIntegrationTablePropertiesCommand_base: { new (input: UpdateIntegrationTablePropertiesCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateIntegrationTablePropertiesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

This API is used to provide optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as ResourceArn with SourceTableConfig, and the Glue database ARN as ResourceArn with TargetTableConfig respectively.

*

The override will be reflected across all the integrations using same ResourceArn and source table.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, UpdateIntegrationTablePropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, UpdateIntegrationTablePropertiesCommand } = 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 = { // UpdateIntegrationTablePropertiesRequest * ResourceArn: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * SourceTableConfig: { // SourceTableConfig * Fields: [ // SourceTableFieldsList * "STRING_VALUE", * ], * FilterPredicate: "STRING_VALUE", * PrimaryKey: [ // PrimaryKeyList * "STRING_VALUE", * ], * RecordUpdateField: "STRING_VALUE", * }, * TargetTableConfig: { // TargetTableConfig * UnnestSpec: "TOPLEVEL" || "FULL" || "NOUNNEST", * PartitionSpec: [ // IntegrationPartitionSpecList * { // IntegrationPartition * FieldName: "STRING_VALUE", * FunctionSpec: "STRING_VALUE", * ConversionSpec: "STRING_VALUE", * }, * ], * TargetTableName: "STRING_VALUE", * }, * }; * const command = new UpdateIntegrationTablePropertiesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateIntegrationTablePropertiesCommandInput - {@link UpdateIntegrationTablePropertiesCommandInput} * @returns {@link UpdateIntegrationTablePropertiesCommandOutput} * @see {@link UpdateIntegrationTablePropertiesCommandInput} for command's `input` shape. * @see {@link UpdateIntegrationTablePropertiesCommandOutput} 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 InternalServerException} (server fault) *

An internal server error occurred.

* * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

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

The resource could not be found.

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

A value could not be validated.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class UpdateIntegrationTablePropertiesCommand extends UpdateIntegrationTablePropertiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateIntegrationTablePropertiesRequest; output: {}; }; sdk: { input: UpdateIntegrationTablePropertiesCommandInput; output: UpdateIntegrationTablePropertiesCommandOutput; }; }; }