aws_sdk_athena/client/create_presigned_notebook_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 [`CreatePresignedNotebookUrl`](crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`CreatePresignedNotebookUrlOutput`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput) with field(s):
8 /// - [`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>
9 /// - [`auth_token(String)`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlOutput::auth_token): <p>The authentication token for the notebook.</p>
10 /// - [`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>
11 /// - On failure, responds with [`SdkError<CreatePresignedNotebookUrlError>`](crate::operation::create_presigned_notebook_url::CreatePresignedNotebookUrlError)
12 pub fn create_presigned_notebook_url(
13 &self,
14 ) -> crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder {
15 crate::operation::create_presigned_notebook_url::builders::CreatePresignedNotebookUrlFluentBuilder::new(self.handle.clone())
16 }
17}