Struct aws_sdk_quicksight::model::VisualCustomAction
source · #[non_exhaustive]pub struct VisualCustomAction { /* private fields */ }
Expand description
A custom action defined on a visual.
Implementations§
source§impl VisualCustomAction
impl VisualCustomAction
sourcepub fn custom_action_id(&self) -> Option<&str>
pub fn custom_action_id(&self) -> Option<&str>
The ID of the VisualCustomAction
.
sourcepub fn status(&self) -> Option<&WidgetStatus>
pub fn status(&self) -> Option<&WidgetStatus>
The status of the VisualCustomAction
.
sourcepub fn trigger(&self) -> Option<&VisualCustomActionTrigger>
pub fn trigger(&self) -> Option<&VisualCustomActionTrigger>
The trigger of the VisualCustomAction
.
Valid values are defined as follows:
-
DATA_POINT_CLICK
: Initiates a custom action by a left pointer click on a data point. -
DATA_POINT_MENU
: Initiates a custom action by right pointer click from the menu.
sourcepub fn action_operations(&self) -> Option<&[VisualCustomActionOperation]>
pub fn action_operations(&self) -> Option<&[VisualCustomActionOperation]>
A list of VisualCustomActionOperations
.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
source§impl VisualCustomAction
impl VisualCustomAction
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture VisualCustomAction
.
Trait Implementations§
source§impl Clone for VisualCustomAction
impl Clone for VisualCustomAction
source§fn clone(&self) -> VisualCustomAction
fn clone(&self) -> VisualCustomAction
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 VisualCustomAction
impl Debug for VisualCustomAction
source§impl PartialEq<VisualCustomAction> for VisualCustomAction
impl PartialEq<VisualCustomAction> for VisualCustomAction
source§fn eq(&self, other: &VisualCustomAction) -> bool
fn eq(&self, other: &VisualCustomAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.