#[non_exhaustive]pub struct CreateTableInput {
pub database_name: Option<String>,
pub table_name: Option<String>,
pub retention_properties: Option<RetentionProperties>,
pub tags: Option<Vec<Tag>>,
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 duration for which your time-series data must be stored in the memory store and the magnetic store.
A list of key-value pairs to label the table.
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 CreateTableInput
impl CreateTableInput
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 duration for which your time-series data must be stored in the memory store and the magnetic store.
A list of key-value pairs to label the table.
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 CreateTableInput
impl CreateTableInput
sourcepub fn builder() -> CreateTableInputBuilder
pub fn builder() -> CreateTableInputBuilder
Creates a new builder-style object to manufacture CreateTableInput
.
Trait Implementations§
source§impl Clone for CreateTableInput
impl Clone for CreateTableInput
source§fn clone(&self) -> CreateTableInput
fn clone(&self) -> CreateTableInput
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 CreateTableInput
impl Debug for CreateTableInput
source§impl PartialEq<CreateTableInput> for CreateTableInput
impl PartialEq<CreateTableInput> for CreateTableInput
source§fn eq(&self, other: &CreateTableInput) -> bool
fn eq(&self, other: &CreateTableInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateTableInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateTableInput
impl Send for CreateTableInput
impl Sync for CreateTableInput
impl Unpin for CreateTableInput
impl UnwindSafe for CreateTableInput
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