Class: Aws::QuickSight::Types::EmptyVisual
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::QuickSight::Types::EmptyVisual
 
 
- Defined in:
 - gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
 
Overview
An empty visual.
Empty visuals are used in layouts but have not been configured to show
any data. A new visual created in the Quick Sight console is
considered an EmptyVisual until a visual type is selected.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #actions  ⇒ Array<Types::VisualCustomAction> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of custom actions that are configured for a visual.
 - 
  
    
      #data_set_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data set that is used in the empty visual.
 - 
  
    
      #visual_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of a visual.
 
Instance Attribute Details
#actions ⇒ Array<Types::VisualCustomAction>
The list of custom actions that are configured for a visual.
      16357 16358 16359 16360 16361 16362 16363  | 
    
      # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16357 class EmptyVisual < Struct.new( :visual_id, :data_set_identifier, :actions) SENSITIVE = [] include Aws::Structure end  | 
  
#data_set_identifier ⇒ String
The data set that is used in the empty visual. Every visual requires a dataset to render.
      16357 16358 16359 16360 16361 16362 16363  | 
    
      # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16357 class EmptyVisual < Struct.new( :visual_id, :data_set_identifier, :actions) SENSITIVE = [] include Aws::Structure end  | 
  
#visual_id ⇒ String
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.
      16357 16358 16359 16360 16361 16362 16363  | 
    
      # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 16357 class EmptyVisual < Struct.new( :visual_id, :data_set_identifier, :actions) SENSITIVE = [] include Aws::Structure end  |