aws_sdk_datazone/client/get_notebook_export.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 [`GetNotebookExport`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_identifier(impl Into<String>)`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook export exists.</p><br>
7 /// - [`identifier(impl Into<String>)`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the notebook export.</p><br>
8 /// - On success, responds with [`GetNotebookExportOutput`](crate::operation::get_notebook_export::GetNotebookExportOutput) with field(s):
9 /// - [`id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::id): <p>The identifier of the notebook export.</p>
10 /// - [`domain_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::domain_id): <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
11 /// - [`owning_project_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::owning_project_id): <p>The identifier of the project that owns the notebook.</p>
12 /// - [`notebook_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::notebook_id): <p>The identifier of the notebook.</p>
13 /// - [`file_format(FileFormat)`](crate::operation::get_notebook_export::GetNotebookExportOutput::file_format): <p>The file format of the notebook export.</p>
14 /// - [`status(NotebookExportStatus)`](crate::operation::get_notebook_export::GetNotebookExportOutput::status): <p>The status of the notebook export.</p>
15 /// - [`output_location(Option<OutputLocation>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::output_location): <p>The output location of the exported notebook in Amazon Simple Storage Service.</p>
16 /// - [`error(Option<NotebookExportError>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::error): <p>The error details if the notebook export failed.</p>
17 /// - [`completed_at(Option<DateTime>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::completed_at): <p>The timestamp of when the notebook export completed.</p>
18 /// - [`created_at(Option<DateTime>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::created_at): <p>The timestamp of when the notebook export was started.</p>
19 /// - [`created_by(Option<String>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::created_by): <p>The identifier of the user who started the notebook export.</p>
20 /// - On failure, responds with [`SdkError<GetNotebookExportError>`](crate::operation::get_notebook_export::GetNotebookExportError)
21 pub fn get_notebook_export(&self) -> crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder {
22 crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::new(self.handle.clone())
23 }
24}