import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeObjectRequest, DescribeObjectResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeObjectCommand}. */ export interface DescribeObjectCommandInput extends DescribeObjectRequest { } /** * @public * * The output of {@link DescribeObjectCommand}. */ export interface DescribeObjectCommandOutput extends DescribeObjectResponse, __MetadataBearer { } declare const DescribeObjectCommand_base: { new (input: DescribeObjectCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeObjectCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets the headers for 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, DescribeObjectCommand } from "@aws-sdk/client-mediastore-data"; // ES Modules import * // const { MediaStoreDataClient, DescribeObjectCommand } = 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 = { // DescribeObjectRequest * Path: "STRING_VALUE", // required * }; * const command = new DescribeObjectCommand(input); * const response = await client.send(command); * // { // DescribeObjectResponse * // ETag: "STRING_VALUE", * // ContentType: "STRING_VALUE", * // ContentLength: Number("long"), * // CacheControl: "STRING_VALUE", * // LastModified: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeObjectCommandInput - {@link DescribeObjectCommandInput} * @returns {@link DescribeObjectCommandOutput} * @see {@link DescribeObjectCommandInput} for command's `input` shape. * @see {@link DescribeObjectCommandOutput} 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 DescribeObjectCommand extends DescribeObjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeObjectRequest; output: DescribeObjectResponse; }; sdk: { input: DescribeObjectCommandInput; output: DescribeObjectCommandOutput; }; }; }