import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { MobileClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MobileClient"; import { DescribeBundleRequest, DescribeBundleResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeBundleCommand}. */ export interface DescribeBundleCommandInput extends DescribeBundleRequest { } /** * @public * * The output of {@link DescribeBundleCommand}. */ export interface DescribeBundleCommandOutput extends DescribeBundleResult, __MetadataBearer { } declare const DescribeBundleCommand_base: { new (input: DescribeBundleCommandInput): import("@smithy/smithy-client").CommandImpl; new (__0_0: DescribeBundleCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

* Get the bundle details for the requested bundle id. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MobileClient, DescribeBundleCommand } from "@aws-sdk/client-mobile"; // ES Modules import * // const { MobileClient, DescribeBundleCommand } = require("@aws-sdk/client-mobile"); // CommonJS import * const client = new MobileClient(config); * const input = { // DescribeBundleRequest * bundleId: "STRING_VALUE", // required * }; * const command = new DescribeBundleCommand(input); * const response = await client.send(command); * // { // DescribeBundleResult * // details: { // BundleDetails * // bundleId: "STRING_VALUE", * // title: "STRING_VALUE", * // version: "STRING_VALUE", * // description: "STRING_VALUE", * // iconUrl: "STRING_VALUE", * // availablePlatforms: [ // Platforms * // "OSX" || "WINDOWS" || "LINUX" || "OBJC" || "SWIFT" || "ANDROID" || "JAVASCRIPT", * // ], * // }, * // }; * * ``` * * @param DescribeBundleCommandInput - {@link DescribeBundleCommandInput} * @returns {@link DescribeBundleCommandOutput} * @see {@link DescribeBundleCommandInput} for command's `input` shape. * @see {@link DescribeBundleCommandOutput} for command's `response` shape. * @see {@link MobileClientResolvedConfig | config} for MobileClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

* The request cannot be processed because some parameter is not valid or the project * state prevents the operation from being performed. *

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

* The service has encountered an unexpected error condition which prevents it from * servicing the request. *

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

* No entity can be found with the specified identifier. *

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

* The service is temporarily unavailable. The request should be retried after some * time delay. *

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

* Too many requests have been received for this AWS account in too short a time. The * request should be retried after some time delay. *

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

* Credentials of the caller are insufficient to authorize the request. *

* * @throws {@link MobileServiceException} *

Base exception class for all service exceptions from Mobile service.

* * @public */ export declare class DescribeBundleCommand extends DescribeBundleCommand_base { }