aws_sdk_sagemaker/client/
start_inference_experiment.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StartInferenceExperiment`](crate::operation::start_inference_experiment::builders::StartInferenceExperimentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::start_inference_experiment::builders::StartInferenceExperimentFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::start_inference_experiment::builders::StartInferenceExperimentFluentBuilder::set_name):<br>required: **true**<br><p>The name of the inference experiment to start.</p><br>
7    /// - On success, responds with [`StartInferenceExperimentOutput`](crate::operation::start_inference_experiment::StartInferenceExperimentOutput) with field(s):
8    ///   - [`inference_experiment_arn(Option<String>)`](crate::operation::start_inference_experiment::StartInferenceExperimentOutput::inference_experiment_arn): <p>The ARN of the started inference experiment to start.</p>
9    /// - On failure, responds with [`SdkError<StartInferenceExperimentError>`](crate::operation::start_inference_experiment::StartInferenceExperimentError)
10    pub fn start_inference_experiment(&self) -> crate::operation::start_inference_experiment::builders::StartInferenceExperimentFluentBuilder {
11        crate::operation::start_inference_experiment::builders::StartInferenceExperimentFluentBuilder::new(self.handle.clone())
12    }
13}