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

Deletes a completed remote access session and its results. You cannot delete a remote access session if it is still active.

* *

You cannot undo this operation.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, DeleteRemoteAccessSessionCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, DeleteRemoteAccessSessionCommand } = 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 = { // DeleteRemoteAccessSessionRequest * arn: "STRING_VALUE", // required * }; * const command = new DeleteRemoteAccessSessionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteRemoteAccessSessionCommandInput - {@link DeleteRemoteAccessSessionCommandInput} * @returns {@link DeleteRemoteAccessSessionCommandOutput} * @see {@link DeleteRemoteAccessSessionCommandInput} for command's `input` shape. * @see {@link DeleteRemoteAccessSessionCommandOutput} 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 delete a specific remote access session * ```javascript * // The following example deletes a specific remote access session. * const input = { * arn: "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" * }; * const command = new DeleteRemoteAccessSessionCommand(input); * const response = await client.send(command); * /* response is * { /* empty *\/ } * *\/ * ``` * * @public */ export declare class DeleteRemoteAccessSessionCommand extends DeleteRemoteAccessSessionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRemoteAccessSessionRequest; output: {}; }; sdk: { input: DeleteRemoteAccessSessionCommandInput; output: DeleteRemoteAccessSessionCommandOutput; }; }; }