Class: Aws::QuickSight::Types::AxisDataOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AxisDataOptions
- Defined in:
- gems/aws-sdk-quicksight/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.
2434 2435 2436 2437 2438 2439 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2434 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.
2434 2435 2436 2437 2438 2439 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2434 class AxisDataOptions < Struct.new( :numeric_axis_options, :date_axis_options) SENSITIVE = [] include Aws::Structure end |