Class: Aws::QuickSight::Types::AxisDataOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AxisDataOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The data options for an axis.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_axis_options ⇒ Types::DateAxisOptions
The options for an axis with a date field.
-
#numeric_axis_options ⇒ Types::NumericAxisOptions
The options for an axis with a numeric field.
Instance Attribute Details
#date_axis_options ⇒ Types::DateAxisOptions
The options for an axis with a date field.
2453 2454 2455 2456 2457 2458 |
# File 'lib/aws-sdk-quicksight/types.rb', line 2453 class AxisDataOptions < Struct.new( :numeric_axis_options, :date_axis_options) SENSITIVE = [] include Aws::Structure end |
#numeric_axis_options ⇒ Types::NumericAxisOptions
The options for an axis with a numeric field.
2453 2454 2455 2456 2457 2458 |
# File 'lib/aws-sdk-quicksight/types.rb', line 2453 class AxisDataOptions < Struct.new( :numeric_axis_options, :date_axis_options) SENSITIVE = [] include Aws::Structure end |