import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListClusterJobsRequest, ListClusterJobsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListClusterJobsCommand}. */ export interface ListClusterJobsCommandInput extends ListClusterJobsRequest { } /** * @public * * The output of {@link ListClusterJobsCommand}. */ export interface ListClusterJobsCommandOutput extends ListClusterJobsResult, __MetadataBearer { } declare const ListClusterJobsCommand_base: { new (input: ListClusterJobsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListClusterJobsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns an array of JobListEntry objects of the specified length. Each * JobListEntry object is for a job in the specified cluster and contains a job's * state, a job's ID, and other information.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SnowballClient, ListClusterJobsCommand } from "@aws-sdk/client-snowball"; // ES Modules import * // const { SnowballClient, ListClusterJobsCommand } = require("@aws-sdk/client-snowball"); // CommonJS import * // import type { SnowballClientConfig } from "@aws-sdk/client-snowball"; * const config = {}; // type is SnowballClientConfig * const client = new SnowballClient(config); * const input = { // ListClusterJobsRequest * ClusterId: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListClusterJobsCommand(input); * const response = await client.send(command); * // { // ListClusterJobsResult * // JobListEntries: [ // JobListEntryList * // { // JobListEntry * // JobId: "STRING_VALUE", * // JobState: "New" || "PreparingAppliance" || "PreparingShipment" || "InTransitToCustomer" || "WithCustomer" || "InTransitToAWS" || "WithAWSSortingFacility" || "WithAWS" || "InProgress" || "Complete" || "Cancelled" || "Listing" || "Pending", * // IsMaster: true || false, * // JobType: "IMPORT" || "EXPORT" || "LOCAL_USE", * // SnowballType: "STANDARD" || "EDGE" || "EDGE_C" || "EDGE_CG" || "EDGE_S" || "SNC1_HDD" || "SNC1_SSD" || "V3_5C" || "V3_5S" || "RACK_5U_C", * // CreationDate: new Date("TIMESTAMP"), * // Description: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListClusterJobsCommandInput - {@link ListClusterJobsCommandInput} * @returns {@link ListClusterJobsCommandOutput} * @see {@link ListClusterJobsCommandInput} for command's `input` shape. * @see {@link ListClusterJobsCommandOutput} for command's `response` shape. * @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape. * * @throws {@link InvalidNextTokenException} (client fault) *

The NextToken string was altered unexpectedly, and the operation has * stopped. Run the operation without changing the NextToken string, and try * again.

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

The specified resource can't be found. Check the information you provided in your last * request, and try again.

* * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* * * @public */ export declare class ListClusterJobsCommand extends ListClusterJobsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListClusterJobsRequest; output: ListClusterJobsResult; }; sdk: { input: ListClusterJobsCommandInput; output: ListClusterJobsCommandOutput; }; }; }