#[non_exhaustive]pub struct MultiMeasureMappings {
pub target_multi_measure_name: Option<String>,
pub multi_measure_attribute_mappings: Option<Vec<MultiMeasureAttributeMapping>>,
}
Expand description
Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided. MultiMeasureMappings can be used to ingest data as multi measures in the derived table.
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.target_multi_measure_name: Option<String>
The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name.
multi_measure_attribute_mappings: Option<Vec<MultiMeasureAttributeMapping>>
Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
Implementations§
source§impl MultiMeasureMappings
impl MultiMeasureMappings
sourcepub fn target_multi_measure_name(&self) -> Option<&str>
pub fn target_multi_measure_name(&self) -> Option<&str>
The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name.
sourcepub fn multi_measure_attribute_mappings(
&self
) -> Option<&[MultiMeasureAttributeMapping]>
pub fn multi_measure_attribute_mappings( &self ) -> Option<&[MultiMeasureAttributeMapping]>
Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes.
source§impl MultiMeasureMappings
impl MultiMeasureMappings
sourcepub fn builder() -> MultiMeasureMappingsBuilder
pub fn builder() -> MultiMeasureMappingsBuilder
Creates a new builder-style object to manufacture MultiMeasureMappings
.
Trait Implementations§
source§impl Clone for MultiMeasureMappings
impl Clone for MultiMeasureMappings
source§fn clone(&self) -> MultiMeasureMappings
fn clone(&self) -> MultiMeasureMappings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MultiMeasureMappings
impl Debug for MultiMeasureMappings
source§impl PartialEq<MultiMeasureMappings> for MultiMeasureMappings
impl PartialEq<MultiMeasureMappings> for MultiMeasureMappings
source§fn eq(&self, other: &MultiMeasureMappings) -> bool
fn eq(&self, other: &MultiMeasureMappings) -> bool
self
and other
values to be equal, and is used
by ==
.