import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GetParametersRequest, GetParametersResult } from "../models/models_1"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetParametersCommand}. */ export interface GetParametersCommandInput extends GetParametersRequest { } /** * @public * * The output of {@link GetParametersCommand}. */ export interface GetParametersCommandOutput extends GetParametersResult, __MetadataBearer { } declare const GetParametersCommand_base: { new (input: GetParametersCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetParametersCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Get information about one or more parameters by specifying multiple parameter names.

* *

To get information about a single parameter, you can use the GetParameter * operation instead.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, GetParametersCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, GetParametersCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // GetParametersRequest * Names: [ // ParameterNameList // required * "STRING_VALUE", * ], * WithDecryption: true || false, * }; * const command = new GetParametersCommand(input); * const response = await client.send(command); * // { // GetParametersResult * // Parameters: [ // ParameterList * // { // Parameter * // Name: "STRING_VALUE", * // Type: "String" || "StringList" || "SecureString", * // Value: "STRING_VALUE", * // Version: Number("long"), * // Selector: "STRING_VALUE", * // SourceResult: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // ARN: "STRING_VALUE", * // DataType: "STRING_VALUE", * // }, * // ], * // InvalidParameters: [ // ParameterNameList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param GetParametersCommandInput - {@link GetParametersCommandInput} * @returns {@link GetParametersCommandOutput} * @see {@link GetParametersCommandInput} for command's `input` shape. * @see {@link GetParametersCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

The query key ID isn't valid.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class GetParametersCommand extends GetParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetParametersRequest; output: GetParametersResult; }; sdk: { input: GetParametersCommandInput; output: GetParametersCommandOutput; }; }; }