Struct aws_sdk_quicksight::types::TableVisual
source · #[non_exhaustive]pub struct TableVisual { /* private fields */ }Expand description
A table visual.
For more information, see Using tables as visuals in the Amazon QuickSight User Guide.
Implementations§
source§impl TableVisual
impl TableVisual
sourcepub fn visual_id(&self) -> Option<&str>
pub fn visual_id(&self) -> Option<&str>
The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers..
sourcepub fn title(&self) -> Option<&VisualTitleLabelOptions>
pub fn title(&self) -> Option<&VisualTitleLabelOptions>
The title that is displayed on the visual.
sourcepub fn subtitle(&self) -> Option<&VisualSubtitleLabelOptions>
pub fn subtitle(&self) -> Option<&VisualSubtitleLabelOptions>
The subtitle that is displayed on the visual.
sourcepub fn chart_configuration(&self) -> Option<&TableConfiguration>
pub fn chart_configuration(&self) -> Option<&TableConfiguration>
The configuration settings of the visual.
sourcepub fn conditional_formatting(&self) -> Option<&TableConditionalFormatting>
pub fn conditional_formatting(&self) -> Option<&TableConditionalFormatting>
The conditional formatting for a PivotTableVisual.
sourcepub fn actions(&self) -> Option<&[VisualCustomAction]>
pub fn actions(&self) -> Option<&[VisualCustomAction]>
The list of custom actions that are configured for a visual.
source§impl TableVisual
impl TableVisual
sourcepub fn builder() -> TableVisualBuilder
pub fn builder() -> TableVisualBuilder
Creates a new builder-style object to manufacture TableVisual.
Trait Implementations§
source§impl Clone for TableVisual
impl Clone for TableVisual
source§fn clone(&self) -> TableVisual
fn clone(&self) -> TableVisual
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 TableVisual
impl Debug for TableVisual
source§impl PartialEq<TableVisual> for TableVisual
impl PartialEq<TableVisual> for TableVisual
source§fn eq(&self, other: &TableVisual) -> bool
fn eq(&self, other: &TableVisual) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TableVisual
Auto Trait Implementations§
impl RefUnwindSafe for TableVisual
impl Send for TableVisual
impl Sync for TableVisual
impl Unpin for TableVisual
impl UnwindSafe for TableVisual
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