pub struct Table {
pub name: String,
pub database_name: String,
pub arn: String,
pub status: String,
pub retention_properties: Value,
pub magnetic_store_write_properties: Option<Value>,
pub schema: Value,
pub creation_time: f64,
pub last_updated_time: f64,
}Expand description
A Timestream table.
Fields§
§name: String§database_name: String§arn: String§status: StringACTIVE / DELETING / RESTORING.
retention_properties: ValueThe RetentionProperties wire object, stored verbatim.
magnetic_store_write_properties: Option<Value>The MagneticStoreWriteProperties wire object, stored verbatim.
schema: ValueThe Schema wire object (composite partition key), stored verbatim.
creation_time: f64§last_updated_time: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Table
impl<'de> Deserialize<'de> for Table
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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