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 [`DeleteNotebookInstance`](crate::operation::delete_notebook_instance::builders::DeleteNotebookInstanceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`notebook_instance_name(impl Into<String>)`](crate::operation::delete_notebook_instance::builders::DeleteNotebookInstanceFluentBuilder::notebook_instance_name) / [`set_notebook_instance_name(Option<String>)`](crate::operation::delete_notebook_instance::builders::DeleteNotebookInstanceFluentBuilder::set_notebook_instance_name):<br>required: **true**<br><p>The name of the SageMaker notebook instance to delete.</p><br>
    /// - On success, responds with [`DeleteNotebookInstanceOutput`](crate::operation::delete_notebook_instance::DeleteNotebookInstanceOutput)
    /// - On failure, responds with [`SdkError<DeleteNotebookInstanceError>`](crate::operation::delete_notebook_instance::DeleteNotebookInstanceError)
    pub fn delete_notebook_instance(&self) -> crate::operation::delete_notebook_instance::builders::DeleteNotebookInstanceFluentBuilder {
        crate::operation::delete_notebook_instance::builders::DeleteNotebookInstanceFluentBuilder::new(self.handle.clone())
    }
}