import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteObjectCommand}. */ export interface DeleteObjectCommandInput extends DeleteObjectRequest { } /** * @public * * The output of {@link DeleteObjectCommand}. */ export interface DeleteObjectCommandOutput extends DeleteObjectResponse, __MetadataBearer { } declare const DeleteObjectCommand_base: { new (input: DeleteObjectCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteObjectCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes an object at the specified path.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MediaStoreDataClient, DeleteObjectCommand } from "@aws-sdk/client-mediastore-data"; // ES Modules import * // const { MediaStoreDataClient, DeleteObjectCommand } = require("@aws-sdk/client-mediastore-data"); // CommonJS import * // import type { MediaStoreDataClientConfig } from "@aws-sdk/client-mediastore-data"; * const config = {}; // type is MediaStoreDataClientConfig * const client = new MediaStoreDataClient(config); * const input = { // DeleteObjectRequest * Path: "STRING_VALUE", // required * }; * const command = new DeleteObjectCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteObjectCommandInput - {@link DeleteObjectCommandInput} * @returns {@link DeleteObjectCommandOutput} * @see {@link DeleteObjectCommandInput} for command's `input` shape. * @see {@link DeleteObjectCommandOutput} for command's `response` shape. * @see {@link MediaStoreDataClientResolvedConfig | config} for MediaStoreDataClient's `config` shape. * * @throws {@link ContainerNotFoundException} (client fault) *

The specified container was not found for the specified account.

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

The service is temporarily unavailable.

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

Could not perform an operation on an object that does not exist.

* * @throws {@link MediaStoreDataServiceException} *

Base exception class for all service exceptions from MediaStoreData service.

* * * @public */ export declare class DeleteObjectCommand extends DeleteObjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteObjectRequest; output: {}; }; sdk: { input: DeleteObjectCommandInput; output: DeleteObjectCommandOutput; }; }; }