Class: Aws::QuickSight::Types::VisualCustomAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QuickSight::Types::VisualCustomAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-quicksight/types.rb
 
Overview
A custom action defined on a visual.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action_operations  ⇒ Array<Types::VisualCustomActionOperation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of ‘VisualCustomActionOperations`.
 - 
  
    
      #custom_action_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the ‘VisualCustomAction`.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the ‘VisualCustomAction`.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the ‘VisualCustomAction`.
 - 
  
    
      #trigger  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The trigger of the ‘VisualCustomAction`.
 
Instance Attribute Details
#action_operations ⇒ Array<Types::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.
      38161 38162 38163 38164 38165 38166 38167 38168 38169  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 38161 class VisualCustomAction < Struct.new( :custom_action_id, :name, :status, :trigger, :action_operations) SENSITIVE = [] include Aws::Structure end  | 
  
#custom_action_id ⇒ String
The ID of the ‘VisualCustomAction`.
      38161 38162 38163 38164 38165 38166 38167 38168 38169  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 38161 class VisualCustomAction < Struct.new( :custom_action_id, :name, :status, :trigger, :action_operations) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the ‘VisualCustomAction`.
      38161 38162 38163 38164 38165 38166 38167 38168 38169  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 38161 class VisualCustomAction < Struct.new( :custom_action_id, :name, :status, :trigger, :action_operations) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the ‘VisualCustomAction`.
      38161 38162 38163 38164 38165 38166 38167 38168 38169  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 38161 class VisualCustomAction < Struct.new( :custom_action_id, :name, :status, :trigger, :action_operations) SENSITIVE = [] include Aws::Structure end  | 
  
#trigger ⇒ String
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.
 
      38161 38162 38163 38164 38165 38166 38167 38168 38169  | 
    
      # File 'lib/aws-sdk-quicksight/types.rb', line 38161 class VisualCustomAction < Struct.new( :custom_action_id, :name, :status, :trigger, :action_operations) SENSITIVE = [] include Aws::Structure end  |