Class: Aws::QuickSight::Types::DefaultSliderControlOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::DefaultSliderControlOptions
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
The default options that correspond to the Slider
filter control
type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#display_options ⇒ Types::SliderControlDisplayOptions
The display options of a control.
-
#maximum_value ⇒ Float
The larger value that is displayed at the right of the slider.
-
#minimum_value ⇒ Float
The smaller value that is displayed at the left of the slider.
-
#step_size ⇒ Float
The number of increments that the slider bar is divided into.
-
#type ⇒ String
The type of the
DefaultSliderControlOptions
.
Instance Attribute Details
#display_options ⇒ Types::SliderControlDisplayOptions
The display options of a control.
10574 10575 10576 10577 10578 10579 10580 10581 10582 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10574 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |
#maximum_value ⇒ Float
The larger value that is displayed at the right of the slider.
10574 10575 10576 10577 10578 10579 10580 10581 10582 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10574 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |
#minimum_value ⇒ Float
The smaller value that is displayed at the left of the slider.
10574 10575 10576 10577 10578 10579 10580 10581 10582 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10574 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |
#step_size ⇒ Float
The number of increments that the slider bar is divided into.
10574 10575 10576 10577 10578 10579 10580 10581 10582 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10574 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the DefaultSliderControlOptions
. Choose one of the
following options:
SINGLE_POINT
: Filter against(equals) a single data point.RANGE
: Filter data that is in a specified range.
10574 10575 10576 10577 10578 10579 10580 10581 10582 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 10574 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |