1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreatePresignedMlflowTrackingServerUrl`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`tracking_server_name(impl Into<String>)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::tracking_server_name) / [`set_tracking_server_name(Option<String>)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::set_tracking_server_name):<br>required: **true**<br><p>The name of the tracking server to connect to your MLflow UI.</p><br>
    ///   - [`expires_in_seconds(i32)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::expires_in_seconds) / [`set_expires_in_seconds(Option<i32>)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::set_expires_in_seconds):<br>required: **false**<br><p>The duration in seconds that your presigned URL is valid. The presigned URL can be used only once.</p><br>
    ///   - [`session_expiration_duration_in_seconds(i32)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::session_expiration_duration_in_seconds) / [`set_session_expiration_duration_in_seconds(Option<i32>)`](crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::set_session_expiration_duration_in_seconds):<br>required: **false**<br><p>The duration in seconds that your MLflow UI session is valid.</p><br>
    /// - On success, responds with [`CreatePresignedMlflowTrackingServerUrlOutput`](crate::operation::create_presigned_mlflow_tracking_server_url::CreatePresignedMlflowTrackingServerUrlOutput) with field(s):
    ///   - [`authorized_url(Option<String>)`](crate::operation::create_presigned_mlflow_tracking_server_url::CreatePresignedMlflowTrackingServerUrlOutput::authorized_url): <p>A presigned URL with an authorization token.</p>
    /// - On failure, responds with [`SdkError<CreatePresignedMlflowTrackingServerUrlError>`](crate::operation::create_presigned_mlflow_tracking_server_url::CreatePresignedMlflowTrackingServerUrlError)
    pub fn create_presigned_mlflow_tracking_server_url(
        &self,
    ) -> crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder {
        crate::operation::create_presigned_mlflow_tracking_server_url::builders::CreatePresignedMlflowTrackingServerUrlFluentBuilder::new(
            self.handle.clone(),
        )
    }
}