import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import type { StartSandboxConnectionInput, StartSandboxConnectionOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartSandboxConnectionCommand}. */ export interface StartSandboxConnectionCommandInput extends StartSandboxConnectionInput { } /** * @public * * The output of {@link StartSandboxConnectionCommand}. */ export interface StartSandboxConnectionCommandOutput extends StartSandboxConnectionOutput, __MetadataBearer { } declare const StartSandboxConnectionCommand_base: { new (input: StartSandboxConnectionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: StartSandboxConnectionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Starts a sandbox connection.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeBuildClient, StartSandboxConnectionCommand } from "@aws-sdk/client-codebuild"; // ES Modules import * // const { CodeBuildClient, StartSandboxConnectionCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import * // import type { CodeBuildClientConfig } from "@aws-sdk/client-codebuild"; * const config = {}; // type is CodeBuildClientConfig * const client = new CodeBuildClient(config); * const input = { // StartSandboxConnectionInput * sandboxId: "STRING_VALUE", // required * }; * const command = new StartSandboxConnectionCommand(input); * const response = await client.send(command); * // { // StartSandboxConnectionOutput * // ssmSession: { // SSMSession * // sessionId: "STRING_VALUE", * // tokenValue: "STRING_VALUE", * // streamUrl: "STRING_VALUE", * // }, * // }; * * ``` * * @param StartSandboxConnectionCommandInput - {@link StartSandboxConnectionCommandInput} * @returns {@link StartSandboxConnectionCommandOutput} * @see {@link StartSandboxConnectionCommandInput} for command's `input` shape. * @see {@link StartSandboxConnectionCommandOutput} for command's `response` shape. * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape. * * @throws {@link InvalidInputException} (client fault) *

The input value that was provided is not valid.

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

The specified Amazon Web Services resource cannot be found.

* * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* * * @public */ export declare class StartSandboxConnectionCommand extends StartSandboxConnectionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartSandboxConnectionInput; output: StartSandboxConnectionOutput; }; sdk: { input: StartSandboxConnectionCommandInput; output: StartSandboxConnectionCommandOutput; }; }; }