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 { ListSamplesRequest, ListSamplesResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSamplesCommand}. */ export interface ListSamplesCommandInput extends ListSamplesRequest { } /** * @public * * The output of {@link ListSamplesCommand}. */ export interface ListSamplesCommandOutput extends ListSamplesResult, __MetadataBearer { } declare const ListSamplesCommand_base: { new (input: ListSamplesCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListSamplesCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets information about samples, given an AWS Device Farm job ARN.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, ListSamplesCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, ListSamplesCommand } = 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 = { // ListSamplesRequest * arn: "STRING_VALUE", // required * nextToken: "STRING_VALUE", * }; * const command = new ListSamplesCommand(input); * const response = await client.send(command); * // { // ListSamplesResult * // samples: [ // Samples * // { // Sample * // arn: "STRING_VALUE", * // type: "CPU" || "MEMORY" || "THREADS" || "RX_RATE" || "TX_RATE" || "RX" || "TX" || "NATIVE_FRAMES" || "NATIVE_FPS" || "NATIVE_MIN_DRAWTIME" || "NATIVE_AVG_DRAWTIME" || "NATIVE_MAX_DRAWTIME" || "OPENGL_FRAMES" || "OPENGL_FPS" || "OPENGL_MIN_DRAWTIME" || "OPENGL_AVG_DRAWTIME" || "OPENGL_MAX_DRAWTIME", * // url: "STRING_VALUE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSamplesCommandInput - {@link ListSamplesCommandInput} * @returns {@link ListSamplesCommandOutput} * @see {@link ListSamplesCommandInput} for command's `input` shape. * @see {@link ListSamplesCommandOutput} 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 LimitExceededException} (client fault) *

A limit was exceeded.

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

The specified entity was not found.

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

There was a problem with the service account.

* * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* * * @example To get information about samples * ```javascript * // The following example returns information about samples, given a specific Device Farm project. * const input = { * arn: "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456", * nextToken: "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE" * }; * const command = new ListSamplesCommand(input); * const response = await client.send(command); * /* response is * { * samples: [] * } * *\/ * ``` * * @public */ export declare class ListSamplesCommand extends ListSamplesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSamplesRequest; output: ListSamplesResult; }; sdk: { input: ListSamplesCommandInput; output: ListSamplesCommandOutput; }; }; }