import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteStudioLifecycleConfigRequest } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteStudioLifecycleConfigCommand}. */ export interface DeleteStudioLifecycleConfigCommandInput extends DeleteStudioLifecycleConfigRequest { } /** * @public * * The output of {@link DeleteStudioLifecycleConfigCommand}. */ export interface DeleteStudioLifecycleConfigCommandOutput extends __MetadataBearer { } declare const DeleteStudioLifecycleConfigCommand_base: { new (input: DeleteStudioLifecycleConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteStudioLifecycleConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes the Amazon SageMaker AI Studio Lifecycle Configuration. In order to delete the Lifecycle Configuration, there must be no running apps using the Lifecycle Configuration. You must also remove the Lifecycle Configuration from UserSettings in all Domains and UserProfiles.

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

Resource being accessed is in use.

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

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DeleteStudioLifecycleConfigCommand extends DeleteStudioLifecycleConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteStudioLifecycleConfigRequest; output: {}; }; sdk: { input: DeleteStudioLifecycleConfigCommandInput; output: DeleteStudioLifecycleConfigCommandOutput; }; }; }