aws-sdk-datazone 1.137.0

AWS SDK for Amazon DataZone
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetNotebookExport`](crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`GetNotebookExportOutput`](crate::operation::get_notebook_export::GetNotebookExportOutput) with field(s):
    ///   - [`id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::id): <p>The identifier of the notebook export.</p>
    ///   - [`domain_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::domain_id): <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
    ///   - [`owning_project_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::owning_project_id): <p>The identifier of the project that owns the notebook.</p>
    ///   - [`notebook_id(String)`](crate::operation::get_notebook_export::GetNotebookExportOutput::notebook_id): <p>The identifier of the notebook.</p>
    ///   - [`file_format(FileFormat)`](crate::operation::get_notebook_export::GetNotebookExportOutput::file_format): <p>The file format of the notebook export.</p>
    ///   - [`status(NotebookExportStatus)`](crate::operation::get_notebook_export::GetNotebookExportOutput::status): <p>The status of the notebook export.</p>
    ///   - [`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>
    ///   - [`error(Option<NotebookExportError>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::error): <p>The error details if the notebook export failed.</p>
    ///   - [`completed_at(Option<DateTime>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::completed_at): <p>The timestamp of when the notebook export completed.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::created_at): <p>The timestamp of when the notebook export was started.</p>
    ///   - [`created_by(Option<String>)`](crate::operation::get_notebook_export::GetNotebookExportOutput::created_by): <p>The identifier of the user who started the notebook export.</p>
    /// - On failure, responds with [`SdkError<GetNotebookExportError>`](crate::operation::get_notebook_export::GetNotebookExportError)
    pub fn get_notebook_export(&self) -> crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder {
        crate::operation::get_notebook_export::builders::GetNotebookExportFluentBuilder::new(self.handle.clone())
    }
}