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>,
}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.
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.
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 ==.