Struct aws_sdk_quicksight::types::KpiConfiguration
source · #[non_exhaustive]pub struct KpiConfiguration {
pub field_wells: Option<KpiFieldWells>,
pub sort_configuration: Option<KpiSortConfiguration>,
pub kpi_options: Option<KpiOptions>,
}
Expand description
The configuration of a KPI visual.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_wells: Option<KpiFieldWells>
The field well configuration of a KPI visual.
sort_configuration: Option<KpiSortConfiguration>
The sort configuration of a KPI visual.
kpi_options: Option<KpiOptions>
The options that determine the presentation of a KPI visual.
Implementations§
source§impl KpiConfiguration
impl KpiConfiguration
sourcepub fn field_wells(&self) -> Option<&KpiFieldWells>
pub fn field_wells(&self) -> Option<&KpiFieldWells>
The field well configuration of a KPI visual.
sourcepub fn sort_configuration(&self) -> Option<&KpiSortConfiguration>
pub fn sort_configuration(&self) -> Option<&KpiSortConfiguration>
The sort configuration of a KPI visual.
sourcepub fn kpi_options(&self) -> Option<&KpiOptions>
pub fn kpi_options(&self) -> Option<&KpiOptions>
The options that determine the presentation of a KPI visual.
source§impl KpiConfiguration
impl KpiConfiguration
sourcepub fn builder() -> KpiConfigurationBuilder
pub fn builder() -> KpiConfigurationBuilder
Creates a new builder-style object to manufacture KpiConfiguration
.
Trait Implementations§
source§impl Clone for KpiConfiguration
impl Clone for KpiConfiguration
source§fn clone(&self) -> KpiConfiguration
fn clone(&self) -> KpiConfiguration
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 KpiConfiguration
impl Debug for KpiConfiguration
source§impl PartialEq for KpiConfiguration
impl PartialEq for KpiConfiguration
source§fn eq(&self, other: &KpiConfiguration) -> bool
fn eq(&self, other: &KpiConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for KpiConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for KpiConfiguration
impl Send for KpiConfiguration
impl Sync for KpiConfiguration
impl Unpin for KpiConfiguration
impl UnwindSafe for KpiConfiguration
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>
Creates a shared type from an unshared type.