Struct aws_sdk_quicksight::types::HeatMapVisual
source · #[non_exhaustive]pub struct HeatMapVisual { /* private fields */ }Expand description
A heat map.
For more information, see Using heat maps in the Amazon QuickSight User Guide.
Implementations§
source§impl HeatMapVisual
impl HeatMapVisual
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<&HeatMapConfiguration>
pub fn chart_configuration(&self) -> Option<&HeatMapConfiguration>
The configuration of a heat map.
sourcepub fn column_hierarchies(&self) -> Option<&[ColumnHierarchy]>
pub fn column_hierarchies(&self) -> Option<&[ColumnHierarchy]>
The column hierarchy that is used during drill-downs and drill-ups.
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 HeatMapVisual
impl HeatMapVisual
sourcepub fn builder() -> HeatMapVisualBuilder
pub fn builder() -> HeatMapVisualBuilder
Creates a new builder-style object to manufacture HeatMapVisual.
Trait Implementations§
source§impl Clone for HeatMapVisual
impl Clone for HeatMapVisual
source§fn clone(&self) -> HeatMapVisual
fn clone(&self) -> HeatMapVisual
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 HeatMapVisual
impl Debug for HeatMapVisual
source§impl PartialEq<HeatMapVisual> for HeatMapVisual
impl PartialEq<HeatMapVisual> for HeatMapVisual
source§fn eq(&self, other: &HeatMapVisual) -> bool
fn eq(&self, other: &HeatMapVisual) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for HeatMapVisual
Auto Trait Implementations§
impl RefUnwindSafe for HeatMapVisual
impl Send for HeatMapVisual
impl Sync for HeatMapVisual
impl Unpin for HeatMapVisual
impl UnwindSafe for HeatMapVisual
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