import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteRealtimeEndpointInput, DeleteRealtimeEndpointOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteRealtimeEndpointCommand}. */ export interface DeleteRealtimeEndpointCommandInput extends DeleteRealtimeEndpointInput { } /** * @public * * The output of {@link DeleteRealtimeEndpointCommand}. */ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpointOutput, __MetadataBearer { } declare const DeleteRealtimeEndpointCommand_base: { new (input: DeleteRealtimeEndpointCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteRealtimeEndpointCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a real time endpoint of an MLModel.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MachineLearningClient, DeleteRealtimeEndpointCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import * // const { MachineLearningClient, DeleteRealtimeEndpointCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import * // import type { MachineLearningClientConfig } from "@aws-sdk/client-machine-learning"; * const config = {}; // type is MachineLearningClientConfig * const client = new MachineLearningClient(config); * const input = { // DeleteRealtimeEndpointInput * MLModelId: "STRING_VALUE", // required * }; * const command = new DeleteRealtimeEndpointCommand(input); * const response = await client.send(command); * // { // DeleteRealtimeEndpointOutput * // MLModelId: "STRING_VALUE", * // RealtimeEndpointInfo: { // RealtimeEndpointInfo * // PeakRequestsPerSecond: Number("int"), * // CreatedAt: new Date("TIMESTAMP"), * // EndpointUrl: "STRING_VALUE", * // EndpointStatus: "NONE" || "READY" || "UPDATING" || "FAILED", * // }, * // }; * * ``` * * @param DeleteRealtimeEndpointCommandInput - {@link DeleteRealtimeEndpointCommandInput} * @returns {@link DeleteRealtimeEndpointCommandOutput} * @see {@link DeleteRealtimeEndpointCommandInput} for command's `input` shape. * @see {@link DeleteRealtimeEndpointCommandOutput} for command's `response` shape. * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An error on the server occurred when trying to process a request.

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

An error on the client occurred. Typically, the cause is an invalid input value.

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

A specified resource cannot be located.

* * @throws {@link MachineLearningServiceException} *

Base exception class for all service exceptions from MachineLearning service.

* * * @public */ export declare class DeleteRealtimeEndpointCommand extends DeleteRealtimeEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRealtimeEndpointInput; output: DeleteRealtimeEndpointOutput; }; sdk: { input: DeleteRealtimeEndpointCommandInput; output: DeleteRealtimeEndpointCommandOutput; }; }; }