1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeNotebookExecution`](crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`notebook_execution_id(impl Into<String>)`](crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder::notebook_execution_id) / [`set_notebook_execution_id(Option<String>)`](crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder::set_notebook_execution_id):<br>required: **true**<br><p>The unique identifier of the notebook execution.</p><br>
    /// - On success, responds with [`DescribeNotebookExecutionOutput`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionOutput) with field(s):
    ///   - [`notebook_execution(Option<NotebookExecution>)`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionOutput::notebook_execution): <p>Properties of the notebook execution.</p>
    /// - On failure, responds with [`SdkError<DescribeNotebookExecutionError>`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionError)
    pub fn describe_notebook_execution(&self) -> crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder {
        crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder::new(self.handle.clone())
    }
}