Struct aws_sdk_quicksight::model::empty_visual::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for EmptyVisual
.
Implementations§
source§impl Builder
impl Builder
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 data_set_identifier(self, input: impl Into<String>) -> Self
pub fn data_set_identifier(self, input: impl Into<String>) -> Self
The data set that is used in the empty visual. Every visual requires a dataset to render.
sourcepub fn set_data_set_identifier(self, input: Option<String>) -> Self
pub fn set_data_set_identifier(self, input: Option<String>) -> Self
The data set that is used in the empty visual. Every visual requires a dataset to render.
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) -> EmptyVisual
pub fn build(self) -> EmptyVisual
Consumes the builder and constructs a EmptyVisual
.