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