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

Deletes a monitoring schedule. Also stops the schedule had not already been stopped. This does not delete the job execution history of the monitoring schedule.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteMonitoringScheduleCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteMonitoringScheduleCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DeleteMonitoringScheduleRequest * MonitoringScheduleName: "STRING_VALUE", // required * }; * const command = new DeleteMonitoringScheduleCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteMonitoringScheduleCommandInput - {@link DeleteMonitoringScheduleCommandInput} * @returns {@link DeleteMonitoringScheduleCommandOutput} * @see {@link DeleteMonitoringScheduleCommandInput} for command's `input` shape. * @see {@link DeleteMonitoringScheduleCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @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 DeleteMonitoringScheduleCommand extends DeleteMonitoringScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteMonitoringScheduleRequest; output: {}; }; sdk: { input: DeleteMonitoringScheduleCommandInput; output: DeleteMonitoringScheduleCommandOutput; }; }; }