import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; import type { DeleteExperimentRequest, DeleteExperimentResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteExperimentCommand}. */ export interface DeleteExperimentCommandInput extends DeleteExperimentRequest { } /** * @public * * The output of {@link DeleteExperimentCommand}. */ export interface DeleteExperimentCommandOutput extends DeleteExperimentResponse, __MetadataBearer { } declare const DeleteExperimentCommand_base: { new (input: DeleteExperimentCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteExperimentCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes an Evidently experiment. The feature used for the experiment is not deleted.

To stop an experiment without deleting it, use StopExperiment.

* * @deprecated AWS CloudWatch Evidently has been deprecated since 11/17/2025. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EvidentlyClient, DeleteExperimentCommand } from "@aws-sdk/client-evidently"; // ES Modules import * // const { EvidentlyClient, DeleteExperimentCommand } = require("@aws-sdk/client-evidently"); // CommonJS import * // import type { EvidentlyClientConfig } from "@aws-sdk/client-evidently"; * const config = {}; // type is EvidentlyClientConfig * const client = new EvidentlyClient(config); * const input = { // DeleteExperimentRequest * project: "STRING_VALUE", // required * experiment: "STRING_VALUE", // required * }; * const command = new DeleteExperimentCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteExperimentCommandInput - {@link DeleteExperimentCommandInput} * @returns {@link DeleteExperimentCommandOutput} * @see {@link DeleteExperimentCommandInput} for command's `input` shape. * @see {@link DeleteExperimentCommandOutput} for command's `response` shape. * @see {@link EvidentlyClientResolvedConfig | config} for EvidentlyClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permissions to perform this action.

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

A resource was in an inconsistent state during an update or a deletion.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error while processing the request. Retry the request.

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

The request references a resource that does not exist.

* * @throws {@link ServiceUnavailableException} (server fault) *

The service was unavailable. Retry the request.

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

The value of a parameter in the request caused an error.

* * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* * * @public */ export declare class DeleteExperimentCommand extends DeleteExperimentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteExperimentRequest; output: {}; }; sdk: { input: DeleteExperimentCommandInput; output: DeleteExperimentCommandOutput; }; }; }