import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteInstrumentationConfigurationRequest, DeleteInstrumentationConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteInstrumentationConfigurationCommand}. */ export interface DeleteInstrumentationConfigurationCommandInput extends DeleteInstrumentationConfigurationRequest { } /** * @public * * The output of {@link DeleteInstrumentationConfigurationCommand}. */ export interface DeleteInstrumentationConfigurationCommandOutput extends DeleteInstrumentationConfigurationResponse, __MetadataBearer { } declare const DeleteInstrumentationConfigurationCommand_base: { new (input: DeleteInstrumentationConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteInstrumentationConfigurationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified instrumentation configuration. SDKs remove the instrumentation during their next sync after the configuration is deleted or expires.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationSignalsClient, DeleteInstrumentationConfigurationCommand } from "@aws-sdk/client-application-signals"; // ES Modules import * // const { ApplicationSignalsClient, DeleteInstrumentationConfigurationCommand } = 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 = { // DeleteInstrumentationConfigurationRequest * InstrumentationType: "BREAKPOINT" || "PROBE", // required * Service: "STRING_VALUE", // required * Environment: "STRING_VALUE", // required * SignalType: "SNAPSHOT", // required * LocationIdentifier: { // LocationIdentifier Union: only one key present * CodeLocation: { // CodeLocation * Language: "Java" || "Python" || "Javascript", // required * CodeUnit: "STRING_VALUE", * ClassName: "STRING_VALUE", * MethodName: "STRING_VALUE", * FilePath: "STRING_VALUE", // required * LineNumber: Number("int"), * }, * LocationHash: "STRING_VALUE", * }, * }; * const command = new DeleteInstrumentationConfigurationCommand(input); * const response = await client.send(command); * // { // DeleteInstrumentationConfigurationResponse * // DeletionStatus: "DELETED", // required * // }; * * ``` * * @param DeleteInstrumentationConfigurationCommandInput - {@link DeleteInstrumentationConfigurationCommandInput} * @returns {@link DeleteInstrumentationConfigurationCommandOutput} * @see {@link DeleteInstrumentationConfigurationCommandInput} for command's `input` shape. * @see {@link DeleteInstrumentationConfigurationCommandOutput} 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 DeleteInstrumentationConfigurationCommand extends DeleteInstrumentationConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteInstrumentationConfigurationRequest; output: DeleteInstrumentationConfigurationResponse; }; sdk: { input: DeleteInstrumentationConfigurationCommandInput; output: DeleteInstrumentationConfigurationCommandOutput; }; }; }