Struct aws_sdk_quicksight::types::builders::TableVisualBuilder
source · #[non_exhaustive]pub struct TableVisualBuilder { /* private fields */ }
Expand description
A builder for TableVisual
.
Implementations§
source§impl TableVisualBuilder
impl TableVisualBuilder
sourcepub fn visual_id(self, input: impl Into<String>) -> Self
pub fn visual_id(self, input: impl Into<String>) -> Self
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 set_visual_id(self, input: Option<String>) -> Self
pub fn set_visual_id(self, input: Option<String>) -> Self
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, input: VisualTitleLabelOptions) -> Self
pub fn title(self, input: VisualTitleLabelOptions) -> Self
The title that is displayed on the visual.
sourcepub fn set_title(self, input: Option<VisualTitleLabelOptions>) -> Self
pub fn set_title(self, input: Option<VisualTitleLabelOptions>) -> Self
The title that is displayed on the visual.
sourcepub fn subtitle(self, input: VisualSubtitleLabelOptions) -> Self
pub fn subtitle(self, input: VisualSubtitleLabelOptions) -> Self
The subtitle that is displayed on the visual.
sourcepub fn set_subtitle(self, input: Option<VisualSubtitleLabelOptions>) -> Self
pub fn set_subtitle(self, input: Option<VisualSubtitleLabelOptions>) -> Self
The subtitle that is displayed on the visual.
sourcepub fn chart_configuration(self, input: TableConfiguration) -> Self
pub fn chart_configuration(self, input: TableConfiguration) -> Self
The configuration settings of the visual.
sourcepub fn set_chart_configuration(self, input: Option<TableConfiguration>) -> Self
pub fn set_chart_configuration(self, input: Option<TableConfiguration>) -> Self
The configuration settings of the visual.
sourcepub fn conditional_formatting(self, input: TableConditionalFormatting) -> Self
pub fn conditional_formatting(self, input: TableConditionalFormatting) -> Self
The conditional formatting for a PivotTableVisual
.
sourcepub fn set_conditional_formatting(
self,
input: Option<TableConditionalFormatting>
) -> Self
pub fn set_conditional_formatting( self, input: Option<TableConditionalFormatting> ) -> Self
The conditional formatting for a PivotTableVisual
.
sourcepub fn actions(self, input: VisualCustomAction) -> Self
pub fn actions(self, input: VisualCustomAction) -> Self
Appends an item to actions
.
To override the contents of this collection use set_actions
.
The list of custom actions that are configured for a visual.
sourcepub fn set_actions(self, input: Option<Vec<VisualCustomAction>>) -> Self
pub fn set_actions(self, input: Option<Vec<VisualCustomAction>>) -> Self
The list of custom actions that are configured for a visual.
sourcepub fn build(self) -> TableVisual
pub fn build(self) -> TableVisual
Consumes the builder and constructs a TableVisual
.
Trait Implementations§
source§impl Clone for TableVisualBuilder
impl Clone for TableVisualBuilder
source§fn clone(&self) -> TableVisualBuilder
fn clone(&self) -> TableVisualBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TableVisualBuilder
impl Debug for TableVisualBuilder
source§impl Default for TableVisualBuilder
impl Default for TableVisualBuilder
source§fn default() -> TableVisualBuilder
fn default() -> TableVisualBuilder
source§impl PartialEq<TableVisualBuilder> for TableVisualBuilder
impl PartialEq<TableVisualBuilder> for TableVisualBuilder
source§fn eq(&self, other: &TableVisualBuilder) -> bool
fn eq(&self, other: &TableVisualBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.