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 { GetBulkDeploymentStatusRequest, GetBulkDeploymentStatusResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetBulkDeploymentStatusCommand}. */ export interface GetBulkDeploymentStatusCommandInput extends GetBulkDeploymentStatusRequest { } /** * @public * * The output of {@link GetBulkDeploymentStatusCommand}. */ export interface GetBulkDeploymentStatusCommandOutput extends GetBulkDeploymentStatusResponse, __MetadataBearer { } declare const GetBulkDeploymentStatusCommand_base: { new (input: GetBulkDeploymentStatusCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetBulkDeploymentStatusCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Returns the status of a bulk deployment. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, GetBulkDeploymentStatusCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, GetBulkDeploymentStatusCommand } = 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 = { // GetBulkDeploymentStatusRequest * BulkDeploymentId: "STRING_VALUE", // required * }; * const command = new GetBulkDeploymentStatusCommand(input); * const response = await client.send(command); * // { // GetBulkDeploymentStatusResponse * // BulkDeploymentMetrics: { // BulkDeploymentMetrics * // InvalidInputRecords: Number("int"), * // RecordsProcessed: Number("int"), * // RetryAttempts: Number("int"), * // }, * // BulkDeploymentStatus: "Initializing" || "Running" || "Completed" || "Stopping" || "Stopped" || "Failed", * // CreatedAt: "STRING_VALUE", * // ErrorDetails: [ // ErrorDetails * // { // ErrorDetail * // DetailedErrorCode: "STRING_VALUE", * // DetailedErrorMessage: "STRING_VALUE", * // }, * // ], * // ErrorMessage: "STRING_VALUE", * // tags: { // Tags * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetBulkDeploymentStatusCommandInput - {@link GetBulkDeploymentStatusCommandInput} * @returns {@link GetBulkDeploymentStatusCommandOutput} * @see {@link GetBulkDeploymentStatusCommandInput} for command's `input` shape. * @see {@link GetBulkDeploymentStatusCommandOutput} 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 GetBulkDeploymentStatusCommand extends GetBulkDeploymentStatusCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetBulkDeploymentStatusRequest; output: GetBulkDeploymentStatusResponse; }; sdk: { input: GetBulkDeploymentStatusCommandInput; output: GetBulkDeploymentStatusCommandOutput; }; }; }