import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteS3TableIntegrationInput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteS3TableIntegrationCommand}. */ export interface DeleteS3TableIntegrationCommandInput extends DeleteS3TableIntegrationInput { } /** * @public * * The output of {@link DeleteS3TableIntegrationCommand}. */ export interface DeleteS3TableIntegrationCommandOutput extends __MetadataBearer { } declare const DeleteS3TableIntegrationCommand_base: { new (input: DeleteS3TableIntegrationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteS3TableIntegrationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes an S3 Table integration and its associated data. This operation removes the connection between CloudWatch Observability Admin and S3 Tables.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ObservabilityAdminClient, DeleteS3TableIntegrationCommand } from "@aws-sdk/client-observabilityadmin"; // ES Modules import * // const { ObservabilityAdminClient, DeleteS3TableIntegrationCommand } = require("@aws-sdk/client-observabilityadmin"); // CommonJS import * // import type { ObservabilityAdminClientConfig } from "@aws-sdk/client-observabilityadmin"; * const config = {}; // type is ObservabilityAdminClientConfig * const client = new ObservabilityAdminClient(config); * const input = { // DeleteS3TableIntegrationInput * Arn: "STRING_VALUE", // required * }; * const command = new DeleteS3TableIntegrationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteS3TableIntegrationCommandInput - {@link DeleteS3TableIntegrationCommandInput} * @returns {@link DeleteS3TableIntegrationCommandOutput} * @see {@link DeleteS3TableIntegrationCommandInput} for command's `input` shape. * @see {@link DeleteS3TableIntegrationCommandOutput} for command's `response` shape. * @see {@link ObservabilityAdminClientResolvedConfig | config} for ObservabilityAdminClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Indicates you don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access management for Amazon Web Services resources in the IAM user guide.

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

Indicates the request has failed to process because of an unknown server error, exception, or failure.

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

The requested operation cannot be completed on the specified resource in the current state.

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

The requested operation would exceed the allowed quota for the specified resource type.

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

The request throughput limit was exceeded.

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

Indicates input validation failed. Check your request parameters and retry the request.

* * @throws {@link ObservabilityAdminServiceException} *

Base exception class for all service exceptions from ObservabilityAdmin service.

* * * @public */ export declare class DeleteS3TableIntegrationCommand extends DeleteS3TableIntegrationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteS3TableIntegrationInput; output: {}; }; sdk: { input: DeleteS3TableIntegrationCommandInput; output: DeleteS3TableIntegrationCommandOutput; }; }; }