import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; import type { GetPackageConfigurationRequest, GetPackageConfigurationResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetPackageConfigurationCommand}. */ export interface GetPackageConfigurationCommandInput extends GetPackageConfigurationRequest { } /** * @public * * The output of {@link GetPackageConfigurationCommand}. */ export interface GetPackageConfigurationCommandOutput extends GetPackageConfigurationResponse, __MetadataBearer { } declare const GetPackageConfigurationCommand_base: { new (input: GetPackageConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetPackageConfigurationCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Gets information about the specified software package's configuration.

*

Requires permission to access the GetPackageConfiguration action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, GetPackageConfigurationCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, GetPackageConfigurationCommand } = require("@aws-sdk/client-iot"); // CommonJS import * // import type { IoTClientConfig } from "@aws-sdk/client-iot"; * const config = {}; // type is IoTClientConfig * const client = new IoTClient(config); * const input = {}; * const command = new GetPackageConfigurationCommand(input); * const response = await client.send(command); * // { // GetPackageConfigurationResponse * // versionUpdateByJobsConfig: { // VersionUpdateByJobsConfig * // enabled: true || false, * // roleArn: "STRING_VALUE", * // }, * // }; * * ``` * * @param GetPackageConfigurationCommandInput - {@link GetPackageConfigurationCommandInput} * @returns {@link GetPackageConfigurationCommandOutput} * @see {@link GetPackageConfigurationCommandInput} for command's `input` shape. * @see {@link GetPackageConfigurationCommandOutput} for command's `response` shape. * @see {@link IoTClientResolvedConfig | config} for IoTClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Internal error from the service that indicates an unexpected error or that the service * is unavailable.

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

The rate exceeds the limit.

* * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* * * @public */ export declare class GetPackageConfigurationCommand extends GetPackageConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetPackageConfigurationResponse; }; sdk: { input: GetPackageConfigurationCommandInput; output: GetPackageConfigurationCommandOutput; }; }; }