aws-sdk-datazone 1.137.0

AWS SDK for Amazon DataZone
Documentation
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 [`DeleteNotebook`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon SageMaker Unified Studio domain in which the notebook exists.</p><br>
    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_notebook::builders::DeleteNotebookFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier 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())
    }
}