Struct aws_sdk_quicksight::types::TableConfiguration
source · #[non_exhaustive]pub struct TableConfiguration {
pub field_wells: Option<TableFieldWells>,
pub sort_configuration: Option<TableSortConfiguration>,
pub table_options: Option<TableOptions>,
pub total_options: Option<TotalOptions>,
pub field_options: Option<TableFieldOptions>,
pub paginated_report_options: Option<TablePaginatedReportOptions>,
pub table_inline_visualizations: Option<Vec<TableInlineVisualization>>,
}
Expand description
The configuration for a TableVisual
.
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.field_wells: Option<TableFieldWells>
The field wells of the visual.
sort_configuration: Option<TableSortConfiguration>
The sort configuration for a TableVisual
.
table_options: Option<TableOptions>
The table options for a table visual.
total_options: Option<TotalOptions>
The total options for a table visual.
field_options: Option<TableFieldOptions>
The field options for a table visual.
paginated_report_options: Option<TablePaginatedReportOptions>
The paginated report options for a table visual.
table_inline_visualizations: Option<Vec<TableInlineVisualization>>
A collection of inline visualizations to display within a chart.
Implementations§
source§impl TableConfiguration
impl TableConfiguration
sourcepub fn field_wells(&self) -> Option<&TableFieldWells>
pub fn field_wells(&self) -> Option<&TableFieldWells>
The field wells of the visual.
sourcepub fn sort_configuration(&self) -> Option<&TableSortConfiguration>
pub fn sort_configuration(&self) -> Option<&TableSortConfiguration>
The sort configuration for a TableVisual
.
sourcepub fn table_options(&self) -> Option<&TableOptions>
pub fn table_options(&self) -> Option<&TableOptions>
The table options for a table visual.
sourcepub fn total_options(&self) -> Option<&TotalOptions>
pub fn total_options(&self) -> Option<&TotalOptions>
The total options for a table visual.
sourcepub fn field_options(&self) -> Option<&TableFieldOptions>
pub fn field_options(&self) -> Option<&TableFieldOptions>
The field options for a table visual.
sourcepub fn paginated_report_options(&self) -> Option<&TablePaginatedReportOptions>
pub fn paginated_report_options(&self) -> Option<&TablePaginatedReportOptions>
The paginated report options for a table visual.
sourcepub fn table_inline_visualizations(&self) -> &[TableInlineVisualization]
pub fn table_inline_visualizations(&self) -> &[TableInlineVisualization]
A collection of inline visualizations to display within a chart.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .table_inline_visualizations.is_none()
.
source§impl TableConfiguration
impl TableConfiguration
sourcepub fn builder() -> TableConfigurationBuilder
pub fn builder() -> TableConfigurationBuilder
Creates a new builder-style object to manufacture TableConfiguration
.
Trait Implementations§
source§impl Clone for TableConfiguration
impl Clone for TableConfiguration
source§fn clone(&self) -> TableConfiguration
fn clone(&self) -> TableConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TableConfiguration
impl Debug for TableConfiguration
source§impl PartialEq for TableConfiguration
impl PartialEq for TableConfiguration
source§fn eq(&self, other: &TableConfiguration) -> bool
fn eq(&self, other: &TableConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.