// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateMlflowTrackingServer`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`tracking_server_name(impl Into<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::tracking_server_name) / [`set_tracking_server_name(Option<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::set_tracking_server_name):<br>required: **true**<br><p>The name of the MLflow Tracking Server to update.</p><br>
/// - [`artifact_store_uri(impl Into<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::artifact_store_uri) / [`set_artifact_store_uri(Option<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::set_artifact_store_uri):<br>required: **false**<br><p>The new S3 URI for the general purpose bucket to use as the artifact store for the MLflow Tracking Server.</p><br>
/// - [`tracking_server_size(TrackingServerSize)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::tracking_server_size) / [`set_tracking_server_size(Option<TrackingServerSize>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::set_tracking_server_size):<br>required: **false**<br><p>The new size for the MLflow Tracking Server.</p><br>
/// - [`automatic_model_registration(bool)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::automatic_model_registration) / [`set_automatic_model_registration(Option<bool>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::set_automatic_model_registration):<br>required: **false**<br><p>Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. To enable automatic model registration, set this value to <code>True</code>. To disable automatic model registration, set this value to <code>False</code>. If not specified, <code>AutomaticModelRegistration</code> defaults to <code>False</code></p><br>
/// - [`weekly_maintenance_window_start(impl Into<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::weekly_maintenance_window_start) / [`set_weekly_maintenance_window_start(Option<String>)`](crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::set_weekly_maintenance_window_start):<br>required: **false**<br><p>The new weekly maintenance window start day and time to update. The maintenance window day and time should be in Coordinated Universal Time (UTC) 24-hour standard time. For example: TUE:03:30.</p><br>
/// - On success, responds with [`UpdateMlflowTrackingServerOutput`](crate::operation::update_mlflow_tracking_server::UpdateMlflowTrackingServerOutput) with field(s):
/// - [`tracking_server_arn(Option<String>)`](crate::operation::update_mlflow_tracking_server::UpdateMlflowTrackingServerOutput::tracking_server_arn): <p>The ARN of the updated MLflow Tracking Server.</p>
/// - On failure, responds with [`SdkError<UpdateMlflowTrackingServerError>`](crate::operation::update_mlflow_tracking_server::UpdateMlflowTrackingServerError)
pub fn update_mlflow_tracking_server(
&self,
) -> crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder {
crate::operation::update_mlflow_tracking_server::builders::UpdateMlflowTrackingServerFluentBuilder::new(self.handle.clone())
}
}