#[non_exhaustive]pub struct DeleteNotebookInputBuilder { /* private fields */ }Expand description
A builder for DeleteNotebookInput.
Implementations§
source§impl DeleteNotebookInputBuilder
impl DeleteNotebookInputBuilder
sourcepub fn notebook_id(self, input: impl Into<String>) -> Self
pub fn notebook_id(self, input: impl Into<String>) -> Self
The ID of the notebook to delete.
sourcepub fn set_notebook_id(self, input: Option<String>) -> Self
pub fn set_notebook_id(self, input: Option<String>) -> Self
The ID of the notebook to delete.
sourcepub fn get_notebook_id(&self) -> &Option<String>
pub fn get_notebook_id(&self) -> &Option<String>
The ID of the notebook to delete.
sourcepub fn build(self) -> Result<DeleteNotebookInput, BuildError>
pub fn build(self) -> Result<DeleteNotebookInput, BuildError>
Consumes the builder and constructs a DeleteNotebookInput.
source§impl DeleteNotebookInputBuilder
impl DeleteNotebookInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteNotebookOutput, SdkError<DeleteNotebookError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteNotebookOutput, SdkError<DeleteNotebookError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteNotebookInputBuilder
impl Clone for DeleteNotebookInputBuilder
source§fn clone(&self) -> DeleteNotebookInputBuilder
fn clone(&self) -> DeleteNotebookInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DeleteNotebookInputBuilder
impl Debug for DeleteNotebookInputBuilder
source§impl Default for DeleteNotebookInputBuilder
impl Default for DeleteNotebookInputBuilder
source§fn default() -> DeleteNotebookInputBuilder
fn default() -> DeleteNotebookInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteNotebookInputBuilder> for DeleteNotebookInputBuilder
impl PartialEq<DeleteNotebookInputBuilder> for DeleteNotebookInputBuilder
source§fn eq(&self, other: &DeleteNotebookInputBuilder) -> bool
fn eq(&self, other: &DeleteNotebookInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteNotebookInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteNotebookInputBuilder
impl Send for DeleteNotebookInputBuilder
impl Sync for DeleteNotebookInputBuilder
impl Unpin for DeleteNotebookInputBuilder
impl UnwindSafe for DeleteNotebookInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more