import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteServiceLevelObjectiveInput, DeleteServiceLevelObjectiveOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteServiceLevelObjectiveCommand}. */ export interface DeleteServiceLevelObjectiveCommandInput extends DeleteServiceLevelObjectiveInput { } /** * @public * * The output of {@link DeleteServiceLevelObjectiveCommand}. */ export interface DeleteServiceLevelObjectiveCommandOutput extends DeleteServiceLevelObjectiveOutput, __MetadataBearer { } declare const DeleteServiceLevelObjectiveCommand_base: { new (input: DeleteServiceLevelObjectiveCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteServiceLevelObjectiveCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified service level objective.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationSignalsClient, DeleteServiceLevelObjectiveCommand } from "@aws-sdk/client-application-signals"; // ES Modules import * // const { ApplicationSignalsClient, DeleteServiceLevelObjectiveCommand } = require("@aws-sdk/client-application-signals"); // CommonJS import * // import type { ApplicationSignalsClientConfig } from "@aws-sdk/client-application-signals"; * const config = {}; // type is ApplicationSignalsClientConfig * const client = new ApplicationSignalsClient(config); * const input = { // DeleteServiceLevelObjectiveInput * Id: "STRING_VALUE", // required * }; * const command = new DeleteServiceLevelObjectiveCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteServiceLevelObjectiveCommandInput - {@link DeleteServiceLevelObjectiveCommandInput} * @returns {@link DeleteServiceLevelObjectiveCommandOutput} * @see {@link DeleteServiceLevelObjectiveCommandInput} for command's `input` shape. * @see {@link DeleteServiceLevelObjectiveCommandOutput} for command's `response` shape. * @see {@link ApplicationSignalsClientResolvedConfig | config} for ApplicationSignalsClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

Resource not found.

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

The request was throttled because of quota limits.

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

The resource is not valid.

* * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* * * @public */ export declare class DeleteServiceLevelObjectiveCommand extends DeleteServiceLevelObjectiveCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteServiceLevelObjectiveInput; output: {}; }; sdk: { input: DeleteServiceLevelObjectiveCommandInput; output: DeleteServiceLevelObjectiveCommandOutput; }; }; }