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

This API is used to provide optional override properties for the 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.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, CreateIntegrationTablePropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, CreateIntegrationTablePropertiesCommand } = 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 = { // CreateIntegrationTablePropertiesRequest * 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 CreateIntegrationTablePropertiesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param CreateIntegrationTablePropertiesCommandInput - {@link CreateIntegrationTablePropertiesCommandInput} * @returns {@link CreateIntegrationTablePropertiesCommandOutput} * @see {@link CreateIntegrationTablePropertiesCommandInput} for command's `input` shape. * @see {@link CreateIntegrationTablePropertiesCommandOutput} 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 CreateIntegrationTablePropertiesCommand extends CreateIntegrationTablePropertiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateIntegrationTablePropertiesRequest; output: {}; }; sdk: { input: CreateIntegrationTablePropertiesCommandInput; output: CreateIntegrationTablePropertiesCommandOutput; }; }; }