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 [`GetNotebook`](crate::operation::get_notebook::builders::GetNotebookFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::get_notebook::builders::GetNotebookFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_notebook::builders::GetNotebookFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook exists.</p><br>
    ///   - [`identifier(impl Into<String>)`](crate::operation::get_notebook::builders::GetNotebookFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_notebook::builders::GetNotebookFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the notebook.</p><br>
    /// - On success, responds with [`GetNotebookOutput`](crate::operation::get_notebook::GetNotebookOutput) with field(s):
    ///   - [`id(String)`](crate::operation::get_notebook::GetNotebookOutput::id): <p>The identifier of the notebook.</p>
    ///   - [`name(String)`](crate::operation::get_notebook::GetNotebookOutput::name): <p>The name of the notebook.</p>
    ///   - [`owning_project_id(String)`](crate::operation::get_notebook::GetNotebookOutput::owning_project_id): <p>The identifier of the project that owns the notebook.</p>
    ///   - [`domain_id(String)`](crate::operation::get_notebook::GetNotebookOutput::domain_id): <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
    ///   - [`cell_order(Vec::<CellInformation>)`](crate::operation::get_notebook::GetNotebookOutput::cell_order): <p>The ordered list of cells in the notebook.</p>
    ///   - [`status(NotebookStatus)`](crate::operation::get_notebook::GetNotebookOutput::status): <p>The status of the notebook.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_notebook::GetNotebookOutput::description): <p>The description of the notebook.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_notebook::GetNotebookOutput::created_at): <p>The timestamp of when the notebook was created.</p>
    ///   - [`created_by(Option<String>)`](crate::operation::get_notebook::GetNotebookOutput::created_by): <p>The identifier of the user who created the notebook.</p>
    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_notebook::GetNotebookOutput::updated_at): <p>The timestamp of when the notebook was last updated.</p>
    ///   - [`updated_by(Option<String>)`](crate::operation::get_notebook::GetNotebookOutput::updated_by): <p>The identifier of the user who last updated the notebook.</p>
    ///   - [`locked_by(Option<String>)`](crate::operation::get_notebook::GetNotebookOutput::locked_by): <p>The identifier of the user who locked the notebook.</p>
    ///   - [`locked_at(Option<DateTime>)`](crate::operation::get_notebook::GetNotebookOutput::locked_at): <p>The timestamp of when the notebook was locked.</p>
    ///   - [`lock_expires_at(Option<DateTime>)`](crate::operation::get_notebook::GetNotebookOutput::lock_expires_at): <p>The timestamp of when the notebook lock expires.</p>
    ///   - [`compute_id(Option<String>)`](crate::operation::get_notebook::GetNotebookOutput::compute_id): <p>The identifier of the compute associated with the notebook.</p>
    ///   - [`metadata(Option<HashMap::<String, String>>)`](crate::operation::get_notebook::GetNotebookOutput::metadata): <p>The metadata of the notebook.</p>
    ///   - [`parameters(Option<HashMap::<String, String>>)`](crate::operation::get_notebook::GetNotebookOutput::parameters): <p>The sensitive parameters of the notebook.</p>
    ///   - [`environment_configuration(Option<EnvironmentConfig>)`](crate::operation::get_notebook::GetNotebookOutput::environment_configuration): <p>The environment configuration of the notebook.</p>
    ///   - [`error(Option<NotebookError>)`](crate::operation::get_notebook::GetNotebookOutput::error): <p>The error details if the notebook is in a failed state.</p>
    /// - On failure, responds with [`SdkError<GetNotebookError>`](crate::operation::get_notebook::GetNotebookError)
    pub fn get_notebook(&self) -> crate::operation::get_notebook::builders::GetNotebookFluentBuilder {
        crate::operation::get_notebook::builders::GetNotebookFluentBuilder::new(self.handle.clone())
    }
}