aws_sdk_sagemaker/client/create_presigned_mlflow_app_url.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 [`CreatePresignedMlflowAppUrl`](crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`CreatePresignedMlflowAppUrlOutput`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlOutput) with field(s):
10 /// - [`authorized_url(Option<String>)`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlOutput::authorized_url): <p>A presigned URL with an authorization token.</p>
11 /// - On failure, responds with [`SdkError<CreatePresignedMlflowAppUrlError>`](crate::operation::create_presigned_mlflow_app_url::CreatePresignedMlflowAppUrlError)
12 pub fn create_presigned_mlflow_app_url(
13 &self,
14 ) -> crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder {
15 crate::operation::create_presigned_mlflow_app_url::builders::CreatePresignedMlflowAppUrlFluentBuilder::new(self.handle.clone())
16 }
17}