Struct aws_sdk_quicksight::types::KpiFieldWells
source · #[non_exhaustive]pub struct KpiFieldWells {
pub values: Option<Vec<MeasureField>>,
pub target_values: Option<Vec<MeasureField>>,
pub trend_groups: Option<Vec<DimensionField>>,
}
Expand description
The field well configuration of a KPI visual.
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.values: Option<Vec<MeasureField>>
The value field wells of a KPI visual.
target_values: Option<Vec<MeasureField>>
The target value field wells of a KPI visual.
trend_groups: Option<Vec<DimensionField>>
The trend group field wells of a KPI visual.
Implementations§
source§impl KpiFieldWells
impl KpiFieldWells
sourcepub fn values(&self) -> &[MeasureField]
pub fn values(&self) -> &[MeasureField]
The value field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .values.is_none()
.
sourcepub fn target_values(&self) -> &[MeasureField]
pub fn target_values(&self) -> &[MeasureField]
The target value field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_values.is_none()
.
sourcepub fn trend_groups(&self) -> &[DimensionField]
pub fn trend_groups(&self) -> &[DimensionField]
The trend group field wells of a KPI visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .trend_groups.is_none()
.
source§impl KpiFieldWells
impl KpiFieldWells
sourcepub fn builder() -> KpiFieldWellsBuilder
pub fn builder() -> KpiFieldWellsBuilder
Creates a new builder-style object to manufacture KpiFieldWells
.
Trait Implementations§
source§impl Clone for KpiFieldWells
impl Clone for KpiFieldWells
source§fn clone(&self) -> KpiFieldWells
fn clone(&self) -> KpiFieldWells
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for KpiFieldWells
impl Debug for KpiFieldWells
source§impl PartialEq for KpiFieldWells
impl PartialEq for KpiFieldWells
source§fn eq(&self, other: &KpiFieldWells) -> bool
fn eq(&self, other: &KpiFieldWells) -> bool
self
and other
values to be equal, and is used
by ==
.