#[non_exhaustive]pub struct UpdateTableInput {
pub database_name: Option<String>,
pub table_name: Option<String>,
pub retention_properties: Option<RetentionProperties>,
pub magnetic_store_write_properties: Option<MagneticStoreWriteProperties>,
pub schema: Option<Schema>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.database_name: Option<String>
The name of the Timestream database.
table_name: Option<String>
The name of the Timestream table.
retention_properties: Option<RetentionProperties>
The retention duration of the memory store and the magnetic store.
magnetic_store_write_properties: Option<MagneticStoreWriteProperties>
Contains properties to set on the table when enabling magnetic store writes.
schema: Option<Schema>
The schema of the table.
Implementations§
source§impl UpdateTableInput
impl UpdateTableInput
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the Timestream database.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the Timestream table.
sourcepub fn retention_properties(&self) -> Option<&RetentionProperties>
pub fn retention_properties(&self) -> Option<&RetentionProperties>
The retention duration of the memory store and the magnetic store.
sourcepub fn magnetic_store_write_properties(
&self
) -> Option<&MagneticStoreWriteProperties>
pub fn magnetic_store_write_properties( &self ) -> Option<&MagneticStoreWriteProperties>
Contains properties to set on the table when enabling magnetic store writes.
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
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 ==
.impl StructuralPartialEq for UpdateTableInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more