import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; import type { DescribeContainerInput, DescribeContainerOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeContainerCommand}. */ export interface DescribeContainerCommandInput extends DescribeContainerInput { } /** * @public * * The output of {@link DescribeContainerCommand}. */ export interface DescribeContainerCommandOutput extends DescribeContainerOutput, __MetadataBearer { } declare const DescribeContainerCommand_base: { new (input: DescribeContainerCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeContainerCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the properties of the requested container. This request is commonly used to * retrieve the endpoint of a container. An endpoint is a value assigned by the service when a * new container is created. A container's endpoint does not change after it has been * assigned. The DescribeContainer request returns a single * Container object based on ContainerName. To return all * Container objects that are associated with a specified AWS account, use * ListContainers.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MediaStoreClient, DescribeContainerCommand } from "@aws-sdk/client-mediastore"; // ES Modules import * // const { MediaStoreClient, DescribeContainerCommand } = require("@aws-sdk/client-mediastore"); // CommonJS import * // import type { MediaStoreClientConfig } from "@aws-sdk/client-mediastore"; * const config = {}; // type is MediaStoreClientConfig * const client = new MediaStoreClient(config); * const input = { // DescribeContainerInput * ContainerName: "STRING_VALUE", * }; * const command = new DescribeContainerCommand(input); * const response = await client.send(command); * // { // DescribeContainerOutput * // Container: { // Container * // Endpoint: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // ARN: "STRING_VALUE", * // Name: "STRING_VALUE", * // Status: "ACTIVE" || "CREATING" || "DELETING", * // AccessLoggingEnabled: true || false, * // }, * // }; * * ``` * * @param DescribeContainerCommandInput - {@link DescribeContainerCommandInput} * @returns {@link DescribeContainerCommandOutput} * @see {@link DescribeContainerCommandInput} for command's `input` shape. * @see {@link DescribeContainerCommandOutput} for command's `response` shape. * @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape. * * @throws {@link ContainerNotFoundException} (client fault) *

The container that you specified in the request does not exist.

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

The service is temporarily unavailable.

* * @throws {@link MediaStoreServiceException} *

Base exception class for all service exceptions from MediaStore service.

* * * @public */ export declare class DescribeContainerCommand extends DescribeContainerCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeContainerInput; output: DescribeContainerOutput; }; sdk: { input: DescribeContainerCommandInput; output: DescribeContainerCommandOutput; }; }; }