// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetNotebookRun`](crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook run exists.</p><br>
/// - [`identifier(impl Into<String>)`](crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the notebook run.</p><br>
/// - On success, responds with [`GetNotebookRunOutput`](crate::operation::get_notebook_run::GetNotebookRunOutput) with field(s):
/// - [`id(String)`](crate::operation::get_notebook_run::GetNotebookRunOutput::id): <p>The identifier of the notebook run.</p>
/// - [`domain_id(String)`](crate::operation::get_notebook_run::GetNotebookRunOutput::domain_id): <p>The identifier of the Amazon SageMaker Unified Studio domain.</p>
/// - [`owning_project_id(String)`](crate::operation::get_notebook_run::GetNotebookRunOutput::owning_project_id): <p>The identifier of the project that owns the notebook run.</p>
/// - [`notebook_id(String)`](crate::operation::get_notebook_run::GetNotebookRunOutput::notebook_id): <p>The identifier of the notebook.</p>
/// - [`schedule_id(Option<String>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::schedule_id): <p>The identifier of the schedule associated with the notebook run.</p>
/// - [`status(NotebookRunStatus)`](crate::operation::get_notebook_run::GetNotebookRunOutput::status): <p>The status of the notebook run.</p>
/// - [`cell_order(Option<Vec::<CellInformation>>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::cell_order): <p>The ordered list of cells in the notebook run.</p>
/// - [`metadata(Option<HashMap::<String, String>>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::metadata): <p>The metadata of the notebook run.</p>
/// - [`parameters(Option<HashMap::<String, String>>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::parameters): <p>The sensitive parameters of the notebook run.</p>
/// - [`compute_configuration(Option<ComputeConfig>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::compute_configuration): <p>The compute configuration of the notebook run.</p>
/// - [`network_configuration(Option<NetworkConfig>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::network_configuration): <p>The network configuration of the notebook run.</p>
/// - [`timeout_configuration(Option<TimeoutConfig>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::timeout_configuration): <p>The timeout configuration of the notebook run.</p>
/// - [`environment_configuration(Option<EnvironmentConfig>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::environment_configuration): <p>The environment configuration of the notebook run, including image version and package settings.</p>
/// - [`storage_configuration(Option<StorageConfig>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::storage_configuration): <p>The storage configuration of the notebook run, including the Amazon Simple Storage Service path and KMS key ARN.</p>
/// - [`trigger_source(Option<TriggerSource>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::trigger_source): <p>The source that triggered the notebook run.</p>
/// - [`error(Option<NotebookRunError>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::error): <p>The error details if the notebook run failed.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::created_at): <p>The timestamp of when the notebook run was created.</p>
/// - [`created_by(Option<String>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::created_by): <p>The identifier of the user who created the notebook run.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::updated_at): <p>The timestamp of when the notebook run was last updated.</p>
/// - [`updated_by(Option<String>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::updated_by): <p>The identifier of the user who last updated the notebook run.</p>
/// - [`started_at(Option<DateTime>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::started_at): <p>The timestamp of when the notebook run started executing.</p>
/// - [`completed_at(Option<DateTime>)`](crate::operation::get_notebook_run::GetNotebookRunOutput::completed_at): <p>The timestamp of when the notebook run completed.</p>
/// - On failure, responds with [`SdkError<GetNotebookRunError>`](crate::operation::get_notebook_run::GetNotebookRunError)
pub fn get_notebook_run(&self) -> crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder {
crate::operation::get_notebook_run::builders::GetNotebookRunFluentBuilder::new(self.handle.clone())
}
}