1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteNotebook`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`notebook_id(impl Into<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::notebook_id) / [`set_notebook_id(Option<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::set_notebook_id):<br>required: **true**<br><p>The ID of the notebook to delete.</p><br>
    /// - On success, responds with [`DeleteNotebookOutput`](crate::operation::delete_notebook::DeleteNotebookOutput)
    /// - On failure, responds with [`SdkError<DeleteNotebookError>`](crate::operation::delete_notebook::DeleteNotebookError)
    pub fn delete_notebook(&self) -> crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder {
        crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::new(self.handle.clone())
    }
}