import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { StartNotebookInstanceInput } from "../models/models_5"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartNotebookInstanceCommand}. */ export interface StartNotebookInstanceCommandInput extends StartNotebookInstanceInput { } /** * @public * * The output of {@link StartNotebookInstanceCommand}. */ export interface StartNotebookInstanceCommandOutput extends __MetadataBearer { } declare const StartNotebookInstanceCommand_base: { new (input: StartNotebookInstanceCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: StartNotebookInstanceCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Launches an ML compute instance with the latest version of the libraries and attaches your ML storage volume. After configuring the notebook instance, SageMaker AI sets the notebook instance status to InService. A notebook instance's status must be InService before you can connect to your Jupyter notebook.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, StartNotebookInstanceCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, StartNotebookInstanceCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // StartNotebookInstanceInput * NotebookInstanceName: "STRING_VALUE", // required * }; * const command = new StartNotebookInstanceCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param StartNotebookInstanceCommandInput - {@link StartNotebookInstanceCommandInput} * @returns {@link StartNotebookInstanceCommandOutput} * @see {@link StartNotebookInstanceCommandInput} for command's `input` shape. * @see {@link StartNotebookInstanceCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceLimitExceeded} (client fault) *

You have exceeded an SageMaker resource limit. For example, you might have too many training jobs created.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class StartNotebookInstanceCommand extends StartNotebookInstanceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartNotebookInstanceInput; output: {}; }; sdk: { input: StartNotebookInstanceCommandInput; output: StartNotebookInstanceCommandOutput; }; }; }