#[non_exhaustive]pub struct DeleteTableInputBuilder { /* private fields */ }Expand description
A builder for DeleteTableInput.
Implementations§
source§impl DeleteTableInputBuilder
 
impl DeleteTableInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
 
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
 
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn get_catalog_id(&self) -> &Option<String>
 
pub fn get_catalog_id(&self) -> &Option<String>
The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
 
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
 
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
sourcepub fn get_database_name(&self) -> &Option<String>
 
pub fn get_database_name(&self) -> &Option<String>
The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
sourcepub fn name(self, input: impl Into<String>) -> Self
 
pub fn name(self, input: impl Into<String>) -> Self
The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
 
pub fn set_name(self, input: Option<String>) -> Self
The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.
sourcepub fn get_name(&self) -> &Option<String>
 
pub fn get_name(&self) -> &Option<String>
The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.
sourcepub fn transaction_id(self, input: impl Into<String>) -> Self
 
pub fn transaction_id(self, input: impl Into<String>) -> Self
The transaction ID at which to delete the table contents.
sourcepub fn set_transaction_id(self, input: Option<String>) -> Self
 
pub fn set_transaction_id(self, input: Option<String>) -> Self
The transaction ID at which to delete the table contents.
sourcepub fn get_transaction_id(&self) -> &Option<String>
 
pub fn get_transaction_id(&self) -> &Option<String>
The transaction ID at which to delete the table contents.
sourcepub fn build(self) -> Result<DeleteTableInput, BuildError>
 
pub fn build(self) -> Result<DeleteTableInput, BuildError>
Consumes the builder and constructs a DeleteTableInput.
source§impl DeleteTableInputBuilder
 
impl DeleteTableInputBuilder
sourcepub async fn send_with(
    self,
    client: &Client,
) -> Result<DeleteTableOutput, SdkError<DeleteTableError, HttpResponse>>
 
pub async fn send_with( self, client: &Client, ) -> Result<DeleteTableOutput, SdkError<DeleteTableError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteTableInputBuilder
 
impl Clone for DeleteTableInputBuilder
source§fn clone(&self) -> DeleteTableInputBuilder
 
fn clone(&self) -> DeleteTableInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteTableInputBuilder
 
impl Debug for DeleteTableInputBuilder
source§impl Default for DeleteTableInputBuilder
 
impl Default for DeleteTableInputBuilder
source§fn default() -> DeleteTableInputBuilder
 
fn default() -> DeleteTableInputBuilder
source§impl PartialEq for DeleteTableInputBuilder
 
impl PartialEq for DeleteTableInputBuilder
impl StructuralPartialEq for DeleteTableInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteTableInputBuilder
impl RefUnwindSafe for DeleteTableInputBuilder
impl Send for DeleteTableInputBuilder
impl Sync for DeleteTableInputBuilder
impl Unpin for DeleteTableInputBuilder
impl UnwindSafe for DeleteTableInputBuilder
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more