import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { UpdateExperimentRequest, UpdateExperimentResponse } from "../models/models_5"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateExperimentCommand}. */ export interface UpdateExperimentCommandInput extends UpdateExperimentRequest { } /** * @public * * The output of {@link UpdateExperimentCommand}. */ export interface UpdateExperimentCommandOutput extends UpdateExperimentResponse, __MetadataBearer { } declare const UpdateExperimentCommand_base: { new (input: UpdateExperimentCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateExperimentCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Adds, updates, or removes the description of an experiment. Updates the display name of an experiment.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, UpdateExperimentCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, UpdateExperimentCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // UpdateExperimentRequest * ExperimentName: "STRING_VALUE", // required * DisplayName: "STRING_VALUE", * Description: "STRING_VALUE", * }; * const command = new UpdateExperimentCommand(input); * const response = await client.send(command); * // { // UpdateExperimentResponse * // ExperimentArn: "STRING_VALUE", * // }; * * ``` * * @param UpdateExperimentCommandInput - {@link UpdateExperimentCommandInput} * @returns {@link UpdateExperimentCommandOutput} * @see {@link UpdateExperimentCommandInput} for command's `input` shape. * @see {@link UpdateExperimentCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

* * @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 UpdateExperimentCommand extends UpdateExperimentCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateExperimentRequest; output: UpdateExperimentResponse; }; sdk: { input: UpdateExperimentCommandInput; output: UpdateExperimentCommandOutput; }; }; }