Struct aws_sdk_glue::input::update_table_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for UpdateTableInput.
Implementations§
source§impl Builder
impl Builder
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 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 table resides. For Hive compatibility, this name is entirely lowercase.
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 table resides. For Hive compatibility, this name is entirely lowercase.
sourcepub fn table_input(self, input: TableInput) -> Self
pub fn table_input(self, input: TableInput) -> Self
An updated TableInput object to define the metadata table in the catalog.
sourcepub fn set_table_input(self, input: Option<TableInput>) -> Self
pub fn set_table_input(self, input: Option<TableInput>) -> Self
An updated TableInput object to define the metadata table in the catalog.
sourcepub fn skip_archive(self, input: bool) -> Self
pub fn skip_archive(self, input: bool) -> Self
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 set_skip_archive(self, input: Option<bool>) -> Self
pub fn set_skip_archive(self, input: Option<bool>) -> Self
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, input: impl Into<String>) -> Self
pub fn transaction_id(self, input: impl Into<String>) -> Self
The transaction ID at which to update 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 update the table contents.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
The version ID at which to update the table contents.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
The version ID at which to update the table contents.
sourcepub fn build(self) -> Result<UpdateTableInput, BuildError>
pub fn build(self) -> Result<UpdateTableInput, BuildError>
Consumes the builder and constructs a UpdateTableInput.