import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListSessionsCommand}. */ export interface ListSessionsCommandInput extends ListSessionsRequest { } /** * @public * * The output of {@link ListSessionsCommand}. */ export interface ListSessionsCommandOutput extends ListSessionsResponse, __MetadataBearer { } declare const ListSessionsCommand_base: { new (input: ListSessionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListSessionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all sessions within a specific workflow run.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { NovaActClient, ListSessionsCommand } from "@aws-sdk/client-nova-act"; // ES Modules import * // const { NovaActClient, ListSessionsCommand } = require("@aws-sdk/client-nova-act"); // CommonJS import * // import type { NovaActClientConfig } from "@aws-sdk/client-nova-act"; * const config = {}; // type is NovaActClientConfig * const client = new NovaActClient(config); * const input = { // ListSessionsRequest * workflowDefinitionName: "STRING_VALUE", // required * workflowRunId: "STRING_VALUE", // required * maxResults: Number("int"), * nextToken: "STRING_VALUE", * sortOrder: "Ascending" || "Descending", * }; * const command = new ListSessionsCommand(input); * const response = await client.send(command); * // { // ListSessionsResponse * // sessionSummaries: [ // SessionSummaries // required * // { // SessionSummary * // sessionId: "STRING_VALUE", // required * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSessionsCommandInput - {@link ListSessionsCommandInput} * @returns {@link ListSessionsCommandOutput} * @see {@link ListSessionsCommandInput} for command's `input` shape. * @see {@link ListSessionsCommandOutput} for command's `response` shape. * @see {@link NovaActClientResolvedConfig | config} for NovaActClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

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

The request could not be completed due to a conflict with the current state of the resource.

* * @throws {@link InternalServerException} (server fault) *

An internal server error occurred. Please try again later.

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

The requested resource was not found.

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

The request was throttled due to too many requests. Please try again later.

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

The input parameters for the request are invalid.

* * @throws {@link NovaActServiceException} *

Base exception class for all service exceptions from NovaAct service.

* * * @public */ export declare class ListSessionsCommand extends ListSessionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSessionsRequest; output: ListSessionsResponse; }; sdk: { input: ListSessionsCommandInput; output: ListSessionsCommandOutput; }; }; }