Start Experiment
| cloudwatchevidently_start_experiment | R Documentation | 
Starts an existing experiment¶
Description¶
Starts an existing experiment. To create an experiment, use
create_experiment.
Usage¶
cloudwatchevidently_start_experiment(analysisCompleteTime, experiment,
  project)
Arguments¶
analysisCompleteTime | 
[required] The date and time to end the experiment. This must be no more than 30 days after the experiment starts.  | 
experiment | 
[required] The name of the experiment to start.  | 
project | 
[required] The name or ARN of the project that contains the experiment to start.  | 
Value¶
A list with the following syntax:
list(
  startedTime = as.POSIXct(
    "2015-01-01"
  )
)
Request syntax¶
svc$start_experiment(
  analysisCompleteTime = as.POSIXct(
    "2015-01-01"
  ),
  experiment = "string",
  project = "string"
)