#[non_exhaustive]pub struct BatchDeleteTableInputBuilder { /* private fields */ }Expand description
A builder for BatchDeleteTableInput.
Implementations§
source§impl BatchDeleteTableInputBuilder
impl BatchDeleteTableInputBuilder
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 tables to delete reside. 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 tables to delete reside. 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 tables to delete reside. For Hive compatibility, this name is entirely lowercase.
sourcepub fn tables_to_delete(self, input: impl Into<String>) -> Self
pub fn tables_to_delete(self, input: impl Into<String>) -> Self
Appends an item to tables_to_delete.
To override the contents of this collection use set_tables_to_delete.
A list of the table to delete.
sourcepub fn set_tables_to_delete(self, input: Option<Vec<String>>) -> Self
pub fn set_tables_to_delete(self, input: Option<Vec<String>>) -> Self
A list of the table to delete.
sourcepub fn get_tables_to_delete(&self) -> &Option<Vec<String>>
pub fn get_tables_to_delete(&self) -> &Option<Vec<String>>
A list of the table to delete.
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<BatchDeleteTableInput, BuildError>
pub fn build(self) -> Result<BatchDeleteTableInput, BuildError>
Consumes the builder and constructs a BatchDeleteTableInput.
source§impl BatchDeleteTableInputBuilder
impl BatchDeleteTableInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<BatchDeleteTableOutput, SdkError<BatchDeleteTableError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<BatchDeleteTableOutput, SdkError<BatchDeleteTableError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchDeleteTableInputBuilder
impl Clone for BatchDeleteTableInputBuilder
source§fn clone(&self) -> BatchDeleteTableInputBuilder
fn clone(&self) -> BatchDeleteTableInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for BatchDeleteTableInputBuilder
impl Debug for BatchDeleteTableInputBuilder
source§impl Default for BatchDeleteTableInputBuilder
impl Default for BatchDeleteTableInputBuilder
source§fn default() -> BatchDeleteTableInputBuilder
fn default() -> BatchDeleteTableInputBuilder
source§impl PartialEq for BatchDeleteTableInputBuilder
impl PartialEq for BatchDeleteTableInputBuilder
source§fn eq(&self, other: &BatchDeleteTableInputBuilder) -> bool
fn eq(&self, other: &BatchDeleteTableInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchDeleteTableInputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteTableInputBuilder
impl RefUnwindSafe for BatchDeleteTableInputBuilder
impl Send for BatchDeleteTableInputBuilder
impl Sync for BatchDeleteTableInputBuilder
impl Unpin for BatchDeleteTableInputBuilder
impl UnwindSafe for BatchDeleteTableInputBuilder
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