import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StopSuiteRunRequest, StopSuiteRunResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StopSuiteRunCommand}. */ export interface StopSuiteRunCommandInput extends StopSuiteRunRequest { } /** * @public * * The output of {@link StopSuiteRunCommand}. */ export interface StopSuiteRunCommandOutput extends StopSuiteRunResponse, __MetadataBearer { } declare const StopSuiteRunCommand_base: { new (input: StopSuiteRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: StopSuiteRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Stops a Device Advisor test suite run that is currently running.

*

Requires permission to access the StopSuiteRun action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IotDeviceAdvisorClient, StopSuiteRunCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import * // const { IotDeviceAdvisorClient, StopSuiteRunCommand } = 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 = { // StopSuiteRunRequest * suiteDefinitionId: "STRING_VALUE", // required * suiteRunId: "STRING_VALUE", // required * }; * const command = new StopSuiteRunCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param StopSuiteRunCommandInput - {@link StopSuiteRunCommandInput} * @returns {@link StopSuiteRunCommandOutput} * @see {@link StopSuiteRunCommandInput} for command's `input` shape. * @see {@link StopSuiteRunCommandOutput} for command's `response` shape. * @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Sends an Internal Failure exception.

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

Sends a Resource Not Found 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 StopSuiteRunCommand extends StopSuiteRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StopSuiteRunRequest; output: {}; }; sdk: { input: StopSuiteRunCommandInput; output: StopSuiteRunCommandOutput; }; }; }