Class: Aws::QuickSight::Types::TooltipOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::TooltipOptions
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The display options for the visual tooltip.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_based_tooltip ⇒ Types::FieldBasedTooltip
The setup for the detailed tooltip.
-
#selected_tooltip_type ⇒ String
The selected type for the tooltip.
-
#tooltip_visibility ⇒ String
Determines whether or not the tooltip is visible.
Instance Attribute Details
#field_based_tooltip ⇒ Types::FieldBasedTooltip
The setup for the detailed tooltip. The tooltip setup is always saved. The display type is decided based on the tooltip type.
33276 33277 33278 33279 33280 33281 33282 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33276 class TooltipOptions < Struct.new( :tooltip_visibility, :selected_tooltip_type, :field_based_tooltip) SENSITIVE = [] include Aws::Structure end |
#selected_tooltip_type ⇒ String
The selected type for the tooltip. Choose one of the following options:
BASIC
: A basic tooltip.DETAILED
: A detailed tooltip.
33276 33277 33278 33279 33280 33281 33282 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33276 class TooltipOptions < Struct.new( :tooltip_visibility, :selected_tooltip_type, :field_based_tooltip) SENSITIVE = [] include Aws::Structure end |
#tooltip_visibility ⇒ String
Determines whether or not the tooltip is visible.
33276 33277 33278 33279 33280 33281 33282 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 33276 class TooltipOptions < Struct.new( :tooltip_visibility, :selected_tooltip_type, :field_based_tooltip) SENSITIVE = [] include Aws::Structure end |