#[non_exhaustive]pub struct DeleteWorkspaceInputBuilder { /* private fields */ }
Expand description
A builder for DeleteWorkspaceInput
.
Implementations§
source§impl DeleteWorkspaceInputBuilder
impl DeleteWorkspaceInputBuilder
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace to delete.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace to delete.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace to delete.
sourcepub fn build(self) -> Result<DeleteWorkspaceInput, BuildError>
pub fn build(self) -> Result<DeleteWorkspaceInput, BuildError>
Consumes the builder and constructs a DeleteWorkspaceInput
.
source§impl DeleteWorkspaceInputBuilder
impl DeleteWorkspaceInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteWorkspaceOutput, SdkError<DeleteWorkspaceError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteWorkspaceOutput, SdkError<DeleteWorkspaceError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteWorkspaceInputBuilder
impl Clone for DeleteWorkspaceInputBuilder
source§fn clone(&self) -> DeleteWorkspaceInputBuilder
fn clone(&self) -> DeleteWorkspaceInputBuilder
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 DeleteWorkspaceInputBuilder
impl Debug for DeleteWorkspaceInputBuilder
source§impl Default for DeleteWorkspaceInputBuilder
impl Default for DeleteWorkspaceInputBuilder
source§fn default() -> DeleteWorkspaceInputBuilder
fn default() -> DeleteWorkspaceInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteWorkspaceInputBuilder> for DeleteWorkspaceInputBuilder
impl PartialEq<DeleteWorkspaceInputBuilder> for DeleteWorkspaceInputBuilder
source§fn eq(&self, other: &DeleteWorkspaceInputBuilder) -> bool
fn eq(&self, other: &DeleteWorkspaceInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteWorkspaceInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteWorkspaceInputBuilder
impl Send for DeleteWorkspaceInputBuilder
impl Sync for DeleteWorkspaceInputBuilder
impl Unpin for DeleteWorkspaceInputBuilder
impl UnwindSafe for DeleteWorkspaceInputBuilder
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