Struct aws_sdk_quicksight::types::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() -> VisualCustomActionBuilder
pub fn builder() -> VisualCustomActionBuilder
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 ==.impl StructuralPartialEq for VisualCustomAction
Auto Trait Implementations§
impl RefUnwindSafe for VisualCustomAction
impl Send for VisualCustomAction
impl Sync for VisualCustomAction
impl Unpin for VisualCustomAction
impl UnwindSafe for VisualCustomAction
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