Struct aws_sdk_quicksight::types::builders::KpiFieldWellsBuilder
source · #[non_exhaustive]pub struct KpiFieldWellsBuilder { /* private fields */ }Expand description
A builder for KpiFieldWells.
Implementations§
source§impl KpiFieldWellsBuilder
impl KpiFieldWellsBuilder
sourcepub fn values(self, input: MeasureField) -> Self
pub fn values(self, input: MeasureField) -> Self
Appends an item to values.
To override the contents of this collection use set_values.
The value field wells of a KPI visual.
sourcepub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_values(self, input: Option<Vec<MeasureField>>) -> Self
The value field wells of a KPI visual.
sourcepub fn get_values(&self) -> &Option<Vec<MeasureField>>
pub fn get_values(&self) -> &Option<Vec<MeasureField>>
The value field wells of a KPI visual.
sourcepub fn target_values(self, input: MeasureField) -> Self
pub fn target_values(self, input: MeasureField) -> Self
Appends an item to target_values.
To override the contents of this collection use set_target_values.
The target value field wells of a KPI visual.
sourcepub fn set_target_values(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_target_values(self, input: Option<Vec<MeasureField>>) -> Self
The target value field wells of a KPI visual.
sourcepub fn get_target_values(&self) -> &Option<Vec<MeasureField>>
pub fn get_target_values(&self) -> &Option<Vec<MeasureField>>
The target value field wells of a KPI visual.
sourcepub fn trend_groups(self, input: DimensionField) -> Self
pub fn trend_groups(self, input: DimensionField) -> Self
Appends an item to trend_groups.
To override the contents of this collection use set_trend_groups.
The trend group field wells of a KPI visual.
sourcepub fn set_trend_groups(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_trend_groups(self, input: Option<Vec<DimensionField>>) -> Self
The trend group field wells of a KPI visual.
sourcepub fn get_trend_groups(&self) -> &Option<Vec<DimensionField>>
pub fn get_trend_groups(&self) -> &Option<Vec<DimensionField>>
The trend group field wells of a KPI visual.
sourcepub fn build(self) -> KpiFieldWells
pub fn build(self) -> KpiFieldWells
Consumes the builder and constructs a KpiFieldWells.
Trait Implementations§
source§impl Clone for KpiFieldWellsBuilder
impl Clone for KpiFieldWellsBuilder
source§fn clone(&self) -> KpiFieldWellsBuilder
fn clone(&self) -> KpiFieldWellsBuilder
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 KpiFieldWellsBuilder
impl Debug for KpiFieldWellsBuilder
source§impl Default for KpiFieldWellsBuilder
impl Default for KpiFieldWellsBuilder
source§fn default() -> KpiFieldWellsBuilder
fn default() -> KpiFieldWellsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for KpiFieldWellsBuilder
impl PartialEq for KpiFieldWellsBuilder
source§fn eq(&self, other: &KpiFieldWellsBuilder) -> bool
fn eq(&self, other: &KpiFieldWellsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KpiFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for KpiFieldWellsBuilder
impl RefUnwindSafe for KpiFieldWellsBuilder
impl Send for KpiFieldWellsBuilder
impl Sync for KpiFieldWellsBuilder
impl Unpin for KpiFieldWellsBuilder
impl UnwindSafe for KpiFieldWellsBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.