Struct aws_sdk_pipes::types::DimensionMapping
source · #[non_exhaustive]pub struct DimensionMapping {
pub dimension_value: String,
pub dimension_value_type: DimensionValueType,
pub dimension_name: String,
}Expand description
Maps source data to a dimension in the target Timestream for LiveAnalytics table.
For more information, see Amazon Timestream for LiveAnalytics concepts
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dimension_value: StringDynamic path to the dimension value in the source event.
dimension_value_type: DimensionValueTypeThe data type of the dimension for the time-series data.
dimension_name: StringThe metadata attributes of the time series. For example, the name and Availability Zone of an Amazon EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
Implementations§
source§impl DimensionMapping
impl DimensionMapping
sourcepub fn dimension_value(&self) -> &str
pub fn dimension_value(&self) -> &str
Dynamic path to the dimension value in the source event.
sourcepub fn dimension_value_type(&self) -> &DimensionValueType
pub fn dimension_value_type(&self) -> &DimensionValueType
The data type of the dimension for the time-series data.
sourcepub fn dimension_name(&self) -> &str
pub fn dimension_name(&self) -> &str
The metadata attributes of the time series. For example, the name and Availability Zone of an Amazon EC2 instance or the name of the manufacturer of a wind turbine are dimensions.
source§impl DimensionMapping
impl DimensionMapping
sourcepub fn builder() -> DimensionMappingBuilder
pub fn builder() -> DimensionMappingBuilder
Creates a new builder-style object to manufacture DimensionMapping.
Trait Implementations§
source§impl Clone for DimensionMapping
impl Clone for DimensionMapping
source§fn clone(&self) -> DimensionMapping
fn clone(&self) -> DimensionMapping
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DimensionMapping
impl Debug for DimensionMapping
source§impl PartialEq for DimensionMapping
impl PartialEq for DimensionMapping
impl StructuralPartialEq for DimensionMapping
Auto Trait Implementations§
impl Freeze for DimensionMapping
impl RefUnwindSafe for DimensionMapping
impl Send for DimensionMapping
impl Sync for DimensionMapping
impl Unpin for DimensionMapping
impl UnwindSafe for DimensionMapping
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more