aws_sdk_sagemaker/client/start_mlflow_tracking_server.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 [`StartMlflowTrackingServer`](crate::operation::start_mlflow_tracking_server::builders::StartMlflowTrackingServerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`tracking_server_name(impl Into<String>)`](crate::operation::start_mlflow_tracking_server::builders::StartMlflowTrackingServerFluentBuilder::tracking_server_name) / [`set_tracking_server_name(Option<String>)`](crate::operation::start_mlflow_tracking_server::builders::StartMlflowTrackingServerFluentBuilder::set_tracking_server_name):<br>required: **true**<br><p>The name of the tracking server to start.</p><br>
7 /// - On success, responds with [`StartMlflowTrackingServerOutput`](crate::operation::start_mlflow_tracking_server::StartMlflowTrackingServerOutput) with field(s):
8 /// - [`tracking_server_arn(Option<String>)`](crate::operation::start_mlflow_tracking_server::StartMlflowTrackingServerOutput::tracking_server_arn): <p>The ARN of the started tracking server.</p>
9 /// - On failure, responds with [`SdkError<StartMlflowTrackingServerError>`](crate::operation::start_mlflow_tracking_server::StartMlflowTrackingServerError)
10 pub fn start_mlflow_tracking_server(&self) -> crate::operation::start_mlflow_tracking_server::builders::StartMlflowTrackingServerFluentBuilder {
11 crate::operation::start_mlflow_tracking_server::builders::StartMlflowTrackingServerFluentBuilder::new(self.handle.clone())
12 }
13}