Struct aws_sdk_iot::types::TimestreamDimension
source · #[non_exhaustive]pub struct TimestreamDimension { /* private fields */ }Expand description
Metadata attributes of the time series that are written in each measure record.
Implementations§
source§impl TimestreamDimension
impl TimestreamDimension
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The metadata dimension name. This is the name of the column in the Amazon Timestream database table record.
Dimensions cannot be named: measure_name, measure_value, or time. These names are reserved. Dimension names cannot start with ts_ or measure_value and they cannot contain the colon (:) character.
source§impl TimestreamDimension
impl TimestreamDimension
sourcepub fn builder() -> TimestreamDimensionBuilder
pub fn builder() -> TimestreamDimensionBuilder
Creates a new builder-style object to manufacture TimestreamDimension.
Trait Implementations§
source§impl Clone for TimestreamDimension
impl Clone for TimestreamDimension
source§fn clone(&self) -> TimestreamDimension
fn clone(&self) -> TimestreamDimension
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 TimestreamDimension
impl Debug for TimestreamDimension
source§impl PartialEq<TimestreamDimension> for TimestreamDimension
impl PartialEq<TimestreamDimension> for TimestreamDimension
source§fn eq(&self, other: &TimestreamDimension) -> bool
fn eq(&self, other: &TimestreamDimension) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TimestreamDimension
Auto Trait Implementations§
impl RefUnwindSafe for TimestreamDimension
impl Send for TimestreamDimension
impl Sync for TimestreamDimension
impl Unpin for TimestreamDimension
impl UnwindSafe for TimestreamDimension
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