Struct aws_sdk_quicksight::types::ScatterPlotVisual
source · #[non_exhaustive]pub struct ScatterPlotVisual {
pub visual_id: Option<String>,
pub title: Option<VisualTitleLabelOptions>,
pub subtitle: Option<VisualSubtitleLabelOptions>,
pub chart_configuration: Option<ScatterPlotConfiguration>,
pub actions: Option<Vec<VisualCustomAction>>,
pub column_hierarchies: Option<Vec<ColumnHierarchy>>,
}Expand description
A scatter plot.
For more information, see Using scatter plots in the Amazon QuickSight User Guide.
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.visual_id: Option<String>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.
title: Option<VisualTitleLabelOptions>The title that is displayed on the visual.
subtitle: Option<VisualSubtitleLabelOptions>The subtitle that is displayed on the visual.
chart_configuration: Option<ScatterPlotConfiguration>The configuration settings of the visual.
actions: Option<Vec<VisualCustomAction>>The list of custom actions that are configured for a visual.
column_hierarchies: Option<Vec<ColumnHierarchy>>The column hierarchy that is used during drill-downs and drill-ups.
Implementations§
source§impl ScatterPlotVisual
impl ScatterPlotVisual
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<&ScatterPlotConfiguration>
pub fn chart_configuration(&self) -> Option<&ScatterPlotConfiguration>
The configuration settings of the visual.
sourcepub fn actions(&self) -> Option<&[VisualCustomAction]>
pub fn actions(&self) -> Option<&[VisualCustomAction]>
The list of custom actions that are configured for a visual.
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.
source§impl ScatterPlotVisual
impl ScatterPlotVisual
sourcepub fn builder() -> ScatterPlotVisualBuilder
pub fn builder() -> ScatterPlotVisualBuilder
Creates a new builder-style object to manufacture ScatterPlotVisual.
Trait Implementations§
source§impl Clone for ScatterPlotVisual
impl Clone for ScatterPlotVisual
source§fn clone(&self) -> ScatterPlotVisual
fn clone(&self) -> ScatterPlotVisual
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ScatterPlotVisual
impl Debug for ScatterPlotVisual
source§impl PartialEq<ScatterPlotVisual> for ScatterPlotVisual
impl PartialEq<ScatterPlotVisual> for ScatterPlotVisual
source§fn eq(&self, other: &ScatterPlotVisual) -> bool
fn eq(&self, other: &ScatterPlotVisual) -> bool
self and other values to be equal, and is used
by ==.