import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartWorkspacesPoolRequest, StartWorkspacesPoolResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartWorkspacesPoolCommand}. */ export interface StartWorkspacesPoolCommandInput extends StartWorkspacesPoolRequest { } /** * @public * * The output of {@link StartWorkspacesPoolCommand}. */ export interface StartWorkspacesPoolCommandOutput extends StartWorkspacesPoolResult, __MetadataBearer { } declare const StartWorkspacesPoolCommand_base: { new (input: StartWorkspacesPoolCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartWorkspacesPoolCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Starts the specified pool.

*

You cannot start a pool unless it has a running mode of * AutoStop and a state of STOPPED.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, StartWorkspacesPoolCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, StartWorkspacesPoolCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import * // import type { WorkSpacesClientConfig } from "@aws-sdk/client-workspaces"; * const config = {}; // type is WorkSpacesClientConfig * const client = new WorkSpacesClient(config); * const input = { // StartWorkspacesPoolRequest * PoolId: "STRING_VALUE", // required * }; * const command = new StartWorkspacesPoolCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param StartWorkspacesPoolCommandInput - {@link StartWorkspacesPoolCommandInput} * @returns {@link StartWorkspacesPoolCommandOutput} * @see {@link StartWorkspacesPoolCommandInput} for command's `input` shape. * @see {@link StartWorkspacesPoolCommandOutput} for command's `response` shape. * @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The user is not authorized to access a resource.

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

One or more parameter values are not valid.

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

The state of the resource is not valid for this operation.

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

The properties of this WorkSpace are currently being modified. Try again in a moment.

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

This operation is not supported.

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

Your resource limits have been exceeded.

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

The resource could not be found.

* * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* * * @public */ export declare class StartWorkspacesPoolCommand extends StartWorkspacesPoolCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartWorkspacesPoolRequest; output: {}; }; sdk: { input: StartWorkspacesPoolCommandInput; output: StartWorkspacesPoolCommandOutput; }; }; }