import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteIntermediateTableInput, DeleteIntermediateTableOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteIntermediateTableCommand}. */ export interface DeleteIntermediateTableCommandInput extends DeleteIntermediateTableInput { } /** * @public * * The output of {@link DeleteIntermediateTableCommand}. */ export interface DeleteIntermediateTableCommandOutput extends DeleteIntermediateTableOutput, __MetadataBearer { } declare const DeleteIntermediateTableCommand_base: { new (input: DeleteIntermediateTableCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteIntermediateTableCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes an intermediate table. The delete is idempotent. Only the intermediate table owner can call this operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, DeleteIntermediateTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, DeleteIntermediateTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms"; * const config = {}; // type is CleanRoomsClientConfig * const client = new CleanRoomsClient(config); * const input = { // DeleteIntermediateTableInput * membershipIdentifier: "STRING_VALUE", // required * intermediateTableIdentifier: "STRING_VALUE", // required * }; * const command = new DeleteIntermediateTableCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteIntermediateTableCommandInput - {@link DeleteIntermediateTableCommandInput} * @returns {@link DeleteIntermediateTableCommandOutput} * @see {@link DeleteIntermediateTableCommandInput} for command's `input` shape. * @see {@link DeleteIntermediateTableCommandOutput} for command's `response` shape. * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Caller does not have sufficient access to perform this action.

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

Updating or deleting a resource can cause an inconsistent state.

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

Unexpected error during processing of request.

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

Request references a resource which does not exist.

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

Request was denied due to request throttling.

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

The input fails to satisfy the specified constraints.

* * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* * * @public */ export declare class DeleteIntermediateTableCommand extends DeleteIntermediateTableCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteIntermediateTableInput; output: {}; }; sdk: { input: DeleteIntermediateTableCommandInput; output: DeleteIntermediateTableCommandOutput; }; }; }