Struct aws_sdk_glue::operation::update_table::UpdateTableInput
source · #[non_exhaustive]pub struct UpdateTableInput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub table_input: Option<TableInput>,
pub skip_archive: Option<bool>,
pub transaction_id: Option<String>,
pub version_id: Option<String>,
pub view_update_action: Option<ViewUpdateAction>,
pub force: Option<bool>,
}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.
table_input: Option<TableInput>An updated TableInput object to define the metadata table in the catalog.
skip_archive: Option<bool>By default, UpdateTable always creates an archived version of the table before updating it. However, if skipArchive is set to true, UpdateTable does not create the archived version.
transaction_id: Option<String>The transaction ID at which to update the table contents.
version_id: Option<String>The version ID at which to update the table contents.
view_update_action: Option<ViewUpdateAction>The operation to be performed when updating the view.
force: Option<bool>A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.
Implementations§
source§impl UpdateTableInput
impl UpdateTableInput
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 table_input(&self) -> Option<&TableInput>
pub fn table_input(&self) -> Option<&TableInput>
An updated TableInput object to define the metadata table in the catalog.
sourcepub fn skip_archive(&self) -> Option<bool>
pub fn skip_archive(&self) -> Option<bool>
By default, UpdateTable always creates an archived version of the table before updating it. However, if skipArchive is set to true, UpdateTable does not create the archived version.
sourcepub fn transaction_id(&self) -> Option<&str>
pub fn transaction_id(&self) -> Option<&str>
The transaction ID at which to update the table contents.
sourcepub fn version_id(&self) -> Option<&str>
pub fn version_id(&self) -> Option<&str>
The version ID at which to update the table contents.
sourcepub fn view_update_action(&self) -> Option<&ViewUpdateAction>
pub fn view_update_action(&self) -> Option<&ViewUpdateAction>
The operation to be performed when updating the view.
source§impl UpdateTableInput
impl UpdateTableInput
sourcepub fn builder() -> UpdateTableInputBuilder
pub fn builder() -> UpdateTableInputBuilder
Creates a new builder-style object to manufacture UpdateTableInput.
Trait Implementations§
source§impl Clone for UpdateTableInput
impl Clone for UpdateTableInput
source§fn clone(&self) -> UpdateTableInput
fn clone(&self) -> UpdateTableInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateTableInput
impl Debug for UpdateTableInput
source§impl PartialEq for UpdateTableInput
impl PartialEq for UpdateTableInput
source§fn eq(&self, other: &UpdateTableInput) -> bool
fn eq(&self, other: &UpdateTableInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateTableInput
Auto Trait Implementations§
impl Freeze for UpdateTableInput
impl RefUnwindSafe for UpdateTableInput
impl Send for UpdateTableInput
impl Sync for UpdateTableInput
impl Unpin for UpdateTableInput
impl UnwindSafe for UpdateTableInput
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