Class: Aws::QuickSight::Types::DefaultSliderControlOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::DefaultSliderControlOptions
- Includes:
- Structure
- Defined in:
- 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.
10477 10478 10479 10480 10481 10482 10483 10484 10485 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10477 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.
10477 10478 10479 10480 10481 10482 10483 10484 10485 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10477 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.
10477 10478 10479 10480 10481 10482 10483 10484 10485 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10477 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.
10477 10478 10479 10480 10481 10482 10483 10484 10485 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10477 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.
10477 10478 10479 10480 10481 10482 10483 10484 10485 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10477 class DefaultSliderControlOptions < Struct.new( :display_options, :type, :maximum_value, :minimum_value, :step_size) SENSITIVE = [] include Aws::Structure end |