Struct aws_sdk_quicksight::types::PivotTableConfiguration
source · #[non_exhaustive]pub struct PivotTableConfiguration {
pub field_wells: Option<PivotTableFieldWells>,
pub sort_configuration: Option<PivotTableSortConfiguration>,
pub table_options: Option<PivotTableOptions>,
pub total_options: Option<PivotTableTotalOptions>,
pub field_options: Option<PivotTableFieldOptions>,
pub paginated_report_options: Option<PivotTablePaginatedReportOptions>,
}
Expand description
The configuration for a PivotTableVisual
.
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<PivotTableFieldWells>
The field wells of the visual.
sort_configuration: Option<PivotTableSortConfiguration>
The sort configuration for a PivotTableVisual
.
table_options: Option<PivotTableOptions>
The table options for a pivot table visual.
total_options: Option<PivotTableTotalOptions>
The total options for a pivot table visual.
field_options: Option<PivotTableFieldOptions>
The field options for a pivot table visual.
paginated_report_options: Option<PivotTablePaginatedReportOptions>
The paginated report options for a pivot table visual.
Implementations§
source§impl PivotTableConfiguration
impl PivotTableConfiguration
sourcepub fn field_wells(&self) -> Option<&PivotTableFieldWells>
pub fn field_wells(&self) -> Option<&PivotTableFieldWells>
The field wells of the visual.
sourcepub fn sort_configuration(&self) -> Option<&PivotTableSortConfiguration>
pub fn sort_configuration(&self) -> Option<&PivotTableSortConfiguration>
The sort configuration for a PivotTableVisual
.
sourcepub fn table_options(&self) -> Option<&PivotTableOptions>
pub fn table_options(&self) -> Option<&PivotTableOptions>
The table options for a pivot table visual.
sourcepub fn total_options(&self) -> Option<&PivotTableTotalOptions>
pub fn total_options(&self) -> Option<&PivotTableTotalOptions>
The total options for a pivot table visual.
sourcepub fn field_options(&self) -> Option<&PivotTableFieldOptions>
pub fn field_options(&self) -> Option<&PivotTableFieldOptions>
The field options for a pivot table visual.
sourcepub fn paginated_report_options(
&self
) -> Option<&PivotTablePaginatedReportOptions>
pub fn paginated_report_options( &self ) -> Option<&PivotTablePaginatedReportOptions>
The paginated report options for a pivot table visual.
source§impl PivotTableConfiguration
impl PivotTableConfiguration
sourcepub fn builder() -> PivotTableConfigurationBuilder
pub fn builder() -> PivotTableConfigurationBuilder
Creates a new builder-style object to manufacture PivotTableConfiguration
.
Trait Implementations§
source§impl Clone for PivotTableConfiguration
impl Clone for PivotTableConfiguration
source§fn clone(&self) -> PivotTableConfiguration
fn clone(&self) -> PivotTableConfiguration
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 PivotTableConfiguration
impl Debug for PivotTableConfiguration
source§impl PartialEq for PivotTableConfiguration
impl PartialEq for PivotTableConfiguration
source§fn eq(&self, other: &PivotTableConfiguration) -> bool
fn eq(&self, other: &PivotTableConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PivotTableConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for PivotTableConfiguration
impl Send for PivotTableConfiguration
impl Sync for PivotTableConfiguration
impl Unpin for PivotTableConfiguration
impl UnwindSafe for PivotTableConfiguration
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.