aws-sdk-sagemaker 1.196.0

AWS SDK for Amazon SageMaker Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreatePresignedMlflowAppUrl`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::set_arn):<br>required: **true**<br><p>The ARN of the MLflow App to connect to your MLflow UI.</p><br>
    ///   - [`expires_in_seconds(i32)`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::expires_in_seconds) / [`set_expires_in_seconds(Option<i32>)`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::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_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::session_expiration_duration_in_seconds) / [`set_session_expiration_duration_in_seconds(Option<i32>)`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::set_session_expiration_duration_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>
    /// - On success, responds with [`CreatePresignedMlflowAppUrlOutput`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlOutput) with field(s):
    ///   - [`authorized_url(Option<String>)`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlOutput::authorized_url): <p>A presigned URL with an authorization token.</p>
    /// - On failure, responds with [`SdkError<CreatePresignedMlflowAppUrlError>`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlError)
    pub fn create_presigned_mlflow_app_url(
        &self,
    ) -> crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder {
        crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::new(self.handle.clone())
    }
}