Struct aws_sdk_glue::input::UpdateTableInput
source · #[non_exhaustive]pub struct UpdateTableInput { /* private fields */ }Implementations§
source§impl UpdateTableInput
impl UpdateTableInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTable, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTable, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateTable>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateTableInput.
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.
Trait Implementations§
source§impl Clone for UpdateTableInput
impl Clone for UpdateTableInput
source§fn clone(&self) -> UpdateTableInput
fn clone(&self) -> UpdateTableInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateTableInput
impl Debug for UpdateTableInput
source§impl PartialEq<UpdateTableInput> for UpdateTableInput
impl PartialEq<UpdateTableInput> for UpdateTableInput
source§fn eq(&self, other: &UpdateTableInput) -> bool
fn eq(&self, other: &UpdateTableInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.