#[non_exhaustive]pub struct GetTableInputBuilder { /* private fields */ }
Expand description
A builder for GetTableInput
.
Implementations§
source§impl GetTableInputBuilder
impl GetTableInputBuilder
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 that the table is stored in.
This field is required.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 that the table is stored in.
sourcepub fn get_keyspace_name(&self) -> &Option<String>
pub fn get_keyspace_name(&self) -> &Option<String>
The name of the keyspace that the table is stored in.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table.
This field is required.sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the table.
sourcepub fn build(self) -> Result<GetTableInput, BuildError>
pub fn build(self) -> Result<GetTableInput, BuildError>
Consumes the builder and constructs a GetTableInput
.
source§impl GetTableInputBuilder
impl GetTableInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetTableOutput, SdkError<GetTableError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetTableOutput, SdkError<GetTableError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTableInputBuilder
impl Clone for GetTableInputBuilder
source§fn clone(&self) -> GetTableInputBuilder
fn clone(&self) -> GetTableInputBuilder
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 GetTableInputBuilder
impl Debug for GetTableInputBuilder
source§impl Default for GetTableInputBuilder
impl Default for GetTableInputBuilder
source§fn default() -> GetTableInputBuilder
fn default() -> GetTableInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetTableInputBuilder
impl PartialEq for GetTableInputBuilder
source§fn eq(&self, other: &GetTableInputBuilder) -> bool
fn eq(&self, other: &GetTableInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetTableInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetTableInputBuilder
impl Send for GetTableInputBuilder
impl Sync for GetTableInputBuilder
impl Unpin for GetTableInputBuilder
impl UnwindSafe for GetTableInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.