Struct aws_sdk_quicksight::types::builders::KpiConfigurationBuilder
source · #[non_exhaustive]pub struct KpiConfigurationBuilder { /* private fields */ }Expand description
A builder for KpiConfiguration.
Implementations§
source§impl KpiConfigurationBuilder
impl KpiConfigurationBuilder
sourcepub fn field_wells(self, input: KpiFieldWells) -> Self
pub fn field_wells(self, input: KpiFieldWells) -> Self
The field well configuration of a KPI visual.
sourcepub fn set_field_wells(self, input: Option<KpiFieldWells>) -> Self
pub fn set_field_wells(self, input: Option<KpiFieldWells>) -> Self
The field well configuration of a KPI visual.
sourcepub fn get_field_wells(&self) -> &Option<KpiFieldWells>
pub fn get_field_wells(&self) -> &Option<KpiFieldWells>
The field well configuration of a KPI visual.
sourcepub fn sort_configuration(self, input: KpiSortConfiguration) -> Self
pub fn sort_configuration(self, input: KpiSortConfiguration) -> Self
The sort configuration of a KPI visual.
sourcepub fn set_sort_configuration(self, input: Option<KpiSortConfiguration>) -> Self
pub fn set_sort_configuration(self, input: Option<KpiSortConfiguration>) -> Self
The sort configuration of a KPI visual.
sourcepub fn get_sort_configuration(&self) -> &Option<KpiSortConfiguration>
pub fn get_sort_configuration(&self) -> &Option<KpiSortConfiguration>
The sort configuration of a KPI visual.
sourcepub fn kpi_options(self, input: KpiOptions) -> Self
pub fn kpi_options(self, input: KpiOptions) -> Self
The options that determine the presentation of a KPI visual.
sourcepub fn set_kpi_options(self, input: Option<KpiOptions>) -> Self
pub fn set_kpi_options(self, input: Option<KpiOptions>) -> Self
The options that determine the presentation of a KPI visual.
sourcepub fn get_kpi_options(&self) -> &Option<KpiOptions>
pub fn get_kpi_options(&self) -> &Option<KpiOptions>
The options that determine the presentation of a KPI visual.
sourcepub fn interactions(self, input: VisualInteractionOptions) -> Self
pub fn interactions(self, input: VisualInteractionOptions) -> Self
The general visual interactions setup for a visual.
sourcepub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
pub fn set_interactions(self, input: Option<VisualInteractionOptions>) -> Self
The general visual interactions setup for a visual.
sourcepub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
pub fn get_interactions(&self) -> &Option<VisualInteractionOptions>
The general visual interactions setup for a visual.
sourcepub fn build(self) -> KpiConfiguration
pub fn build(self) -> KpiConfiguration
Consumes the builder and constructs a KpiConfiguration.
Trait Implementations§
source§impl Clone for KpiConfigurationBuilder
impl Clone for KpiConfigurationBuilder
source§fn clone(&self) -> KpiConfigurationBuilder
fn clone(&self) -> KpiConfigurationBuilder
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 KpiConfigurationBuilder
impl Debug for KpiConfigurationBuilder
source§impl Default for KpiConfigurationBuilder
impl Default for KpiConfigurationBuilder
source§fn default() -> KpiConfigurationBuilder
fn default() -> KpiConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for KpiConfigurationBuilder
impl PartialEq for KpiConfigurationBuilder
source§fn eq(&self, other: &KpiConfigurationBuilder) -> bool
fn eq(&self, other: &KpiConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KpiConfigurationBuilder
Auto Trait Implementations§
impl Freeze for KpiConfigurationBuilder
impl RefUnwindSafe for KpiConfigurationBuilder
impl Send for KpiConfigurationBuilder
impl Sync for KpiConfigurationBuilder
impl Unpin for KpiConfigurationBuilder
impl UnwindSafe for KpiConfigurationBuilder
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.