Class: Aws::QuickSight::Types::EmptyVisual
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::EmptyVisual
- Includes:
- Structure
- Defined in:
- 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 Amazon QuickSight 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.
14072 14073 14074 14075 14076 14077 14078 |
# File 'lib/aws-sdk-quicksight/types.rb', line 14072 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.
14072 14073 14074 14075 14076 14077 14078 |
# File 'lib/aws-sdk-quicksight/types.rb', line 14072 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.
14072 14073 14074 14075 14076 14077 14078 |
# File 'lib/aws-sdk-quicksight/types.rb', line 14072 class EmptyVisual < Struct.new( :visual_id, :data_set_identifier, :actions) SENSITIVE = [] include Aws::Structure end |