Update Experiment
sagemaker_update_experiment | R Documentation |
Adds, updates, or removes the description of an experiment¶
Description¶
Adds, updates, or removes the description of an experiment. Updates the display name of an experiment.
Usage¶
sagemaker_update_experiment(ExperimentName, DisplayName, Description)
Arguments¶
ExperimentName |
[required] The name of the experiment to update. |
DisplayName |
The name of the experiment as displayed. The name doesn't need to
be unique. If |
Description |
The description of the experiment. |
Value¶
A list with the following syntax:
list(
ExperimentArn = "string"
)
Request syntax¶
svc$update_experiment(
ExperimentName = "string",
DisplayName = "string",
Description = "string"
)