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 [`CreatePresignedNotebookUrl`](crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`session_id(impl Into<String>)`](crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder::session_id) / [`set_session_id(Option<String>)`](crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder::set_session_id):<br>required: **true**<br><p>The session ID.</p><br>
    /// - On success, responds with [`CreatePresignedNotebookUrlOutput`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput) with field(s):
    ///   - [`notebook_url(String)`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput::notebook_url): <p>The URL of the notebook. The URL includes the authentication token and notebook file name and points directly to the opened notebook.</p>
    ///   - [`auth_token(String)`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput::auth_token): <p>The authentication token for the notebook.</p>
    ///   - [`auth_token_expiration_time(i64)`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput::auth_token_expiration_time): <p>The UTC epoch time when the authentication token expires.</p>
    /// - On failure, responds with [`SdkError<CreatePresignedNotebookUrlError>`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlError)
    pub fn create_presigned_notebook_url(
        &self,
    ) -> crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder {
        crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder::new(self.handle.clone())
    }
}