import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import type { ListTestGridSessionActionsRequest, ListTestGridSessionActionsResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListTestGridSessionActionsCommand}. */ export interface ListTestGridSessionActionsCommandInput extends ListTestGridSessionActionsRequest { } /** * @public * * The output of {@link ListTestGridSessionActionsCommand}. */ export interface ListTestGridSessionActionsCommandOutput extends ListTestGridSessionActionsResult, __MetadataBearer { } declare const ListTestGridSessionActionsCommand_base: { new (input: ListTestGridSessionActionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListTestGridSessionActionsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns a list of the actions taken in a TestGridSession.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, ListTestGridSessionActionsCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, ListTestGridSessionActionsCommand } = require("@aws-sdk/client-device-farm"); // CommonJS import * // import type { DeviceFarmClientConfig } from "@aws-sdk/client-device-farm"; * const config = {}; // type is DeviceFarmClientConfig * const client = new DeviceFarmClient(config); * const input = { // ListTestGridSessionActionsRequest * sessionArn: "STRING_VALUE", // required * maxResult: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListTestGridSessionActionsCommand(input); * const response = await client.send(command); * // { // ListTestGridSessionActionsResult * // actions: [ // TestGridSessionActions * // { // TestGridSessionAction * // action: "STRING_VALUE", * // started: new Date("TIMESTAMP"), * // duration: Number("long"), * // statusCode: "STRING_VALUE", * // requestMethod: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListTestGridSessionActionsCommandInput - {@link ListTestGridSessionActionsCommandInput} * @returns {@link ListTestGridSessionActionsCommandOutput} * @see {@link ListTestGridSessionActionsCommandInput} for command's `input` shape. * @see {@link ListTestGridSessionActionsCommandOutput} for command's `response` shape. * @see {@link DeviceFarmClientResolvedConfig | config} for DeviceFarmClient's `config` shape. * * @throws {@link ArgumentException} (client fault) *

An invalid argument was specified.

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

An internal exception was raised in the service. Contact aws-devicefarm-support@amazon.com if you see this * error.

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

The specified entity was not found.

* * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* * * @public */ export declare class ListTestGridSessionActionsCommand extends ListTestGridSessionActionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListTestGridSessionActionsRequest; output: ListTestGridSessionActionsResult; }; sdk: { input: ListTestGridSessionActionsCommandInput; output: ListTestGridSessionActionsCommandOutput; }; }; }