aws_sdk_emr/client/describe_notebook_execution.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 [`DescribeNotebookExecution`](crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DescribeNotebookExecutionOutput`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionOutput) with field(s):
8 /// - [`notebook_execution(Option<NotebookExecution>)`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionOutput::notebook_execution): <p>Properties of the notebook execution.</p>
9 /// - On failure, responds with [`SdkError<DescribeNotebookExecutionError>`](crate::operation::describe_notebook_execution::DescribeNotebookExecutionError)
10 pub fn describe_notebook_execution(&self) -> crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder {
11 crate::operation::describe_notebook_execution::builders::DescribeNotebookExecutionFluentBuilder::new(self.handle.clone())
12 }
13}