import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; import type { ListBulkDeploymentsRequest, ListBulkDeploymentsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListBulkDeploymentsCommand}. */ export interface ListBulkDeploymentsCommandInput extends ListBulkDeploymentsRequest { } /** * @public * * The output of {@link ListBulkDeploymentsCommand}. */ export interface ListBulkDeploymentsCommandOutput extends ListBulkDeploymentsResponse, __MetadataBearer { } declare const ListBulkDeploymentsCommand_base: { new (input: ListBulkDeploymentsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListBulkDeploymentsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Returns a list of bulk deployments. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, ListBulkDeploymentsCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, ListBulkDeploymentsCommand } = require("@aws-sdk/client-greengrass"); // CommonJS import * // import type { GreengrassClientConfig } from "@aws-sdk/client-greengrass"; * const config = {}; // type is GreengrassClientConfig * const client = new GreengrassClient(config); * const input = { // ListBulkDeploymentsRequest * MaxResults: "STRING_VALUE", * NextToken: "STRING_VALUE", * }; * const command = new ListBulkDeploymentsCommand(input); * const response = await client.send(command); * // { // ListBulkDeploymentsResponse * // BulkDeployments: [ // BulkDeployments * // { // BulkDeployment * // BulkDeploymentArn: "STRING_VALUE", * // BulkDeploymentId: "STRING_VALUE", * // CreatedAt: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListBulkDeploymentsCommandInput - {@link ListBulkDeploymentsCommandInput} * @returns {@link ListBulkDeploymentsCommandOutput} * @see {@link ListBulkDeploymentsCommandInput} for command's `input` shape. * @see {@link ListBulkDeploymentsCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class ListBulkDeploymentsCommand extends ListBulkDeploymentsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListBulkDeploymentsRequest; output: ListBulkDeploymentsResponse; }; sdk: { input: ListBulkDeploymentsCommandInput; output: ListBulkDeploymentsCommandOutput; }; }; }