import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartSuiteRunRequest, StartSuiteRunResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartSuiteRunCommand}. */ export interface StartSuiteRunCommandInput extends StartSuiteRunRequest { } /** * @public * * The output of {@link StartSuiteRunCommand}. */ export interface StartSuiteRunCommandOutput extends StartSuiteRunResponse, __MetadataBearer { } declare const StartSuiteRunCommand_base: { new (input: StartSuiteRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartSuiteRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Starts a Device Advisor test suite run.

*

Requires permission to access the StartSuiteRun action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IotDeviceAdvisorClient, StartSuiteRunCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import * // const { IotDeviceAdvisorClient, StartSuiteRunCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import * // import type { IotDeviceAdvisorClientConfig } from "@aws-sdk/client-iotdeviceadvisor"; * const config = {}; // type is IotDeviceAdvisorClientConfig * const client = new IotDeviceAdvisorClient(config); * const input = { // StartSuiteRunRequest * suiteDefinitionId: "STRING_VALUE", // required * suiteDefinitionVersion: "STRING_VALUE", * suiteRunConfiguration: { // SuiteRunConfiguration * primaryDevice: { // DeviceUnderTest * thingArn: "STRING_VALUE", * certificateArn: "STRING_VALUE", * deviceRoleArn: "STRING_VALUE", * }, * selectedTestList: [ // SelectedTestList * "STRING_VALUE", * ], * parallelRun: true || false, * }, * tags: { // TagMap * "": "STRING_VALUE", * }, * }; * const command = new StartSuiteRunCommand(input); * const response = await client.send(command); * // { // StartSuiteRunResponse * // suiteRunId: "STRING_VALUE", * // suiteRunArn: "STRING_VALUE", * // createdAt: new Date("TIMESTAMP"), * // endpoint: "STRING_VALUE", * // }; * * ``` * * @param StartSuiteRunCommandInput - {@link StartSuiteRunCommandInput} * @returns {@link StartSuiteRunCommandOutput} * @see {@link StartSuiteRunCommandInput} for command's `input` shape. * @see {@link StartSuiteRunCommandOutput} for command's `response` shape. * @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Sends a Conflict Exception.

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

Sends an Internal Failure exception.

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

Sends a validation exception.

* * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* * * @public */ export declare class StartSuiteRunCommand extends StartSuiteRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartSuiteRunRequest; output: StartSuiteRunResponse; }; sdk: { input: StartSuiteRunCommandInput; output: StartSuiteRunCommandOutput; }; }; }