Struct aws_sdk_glue::operation::delete_table::DeleteTableInput
source · #[non_exhaustive]pub struct DeleteTableInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub name: Option<String>,
pub transaction_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.catalog_id: 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.
database_name: Option<String>The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
name: Option<String>The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.
transaction_id: Option<String>The transaction ID at which to delete the table contents.
Implementations§
source§impl DeleteTableInput
impl DeleteTableInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
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) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.
sourcepub fn transaction_id(&self) -> Option<&str>
pub fn transaction_id(&self) -> Option<&str>
The transaction ID at which to delete the table contents.
source§impl DeleteTableInput
impl DeleteTableInput
sourcepub fn builder() -> DeleteTableInputBuilder
pub fn builder() -> DeleteTableInputBuilder
Creates a new builder-style object to manufacture DeleteTableInput.
Trait Implementations§
source§impl Clone for DeleteTableInput
impl Clone for DeleteTableInput
source§fn clone(&self) -> DeleteTableInput
fn clone(&self) -> DeleteTableInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteTableInput
impl Debug for DeleteTableInput
source§impl PartialEq for DeleteTableInput
impl PartialEq for DeleteTableInput
source§fn eq(&self, other: &DeleteTableInput) -> bool
fn eq(&self, other: &DeleteTableInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteTableInput
Auto Trait Implementations§
impl Freeze for DeleteTableInput
impl RefUnwindSafe for DeleteTableInput
impl Send for DeleteTableInput
impl Sync for DeleteTableInput
impl Unpin for DeleteTableInput
impl UnwindSafe for DeleteTableInput
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> 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