Class: Aws::QuickSight::Types::AxisScale

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

The scale setup options for a numeric axis display.

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

Instance Attribute Details

#linearTypes::AxisLinearScale

The linear axis scale setup.



2405
2406
2407
2408
2409
2410
# File 'lib/aws-sdk-quicksight/types.rb', line 2405

class AxisScale < Struct.new(
  :linear,
  :logarithmic)
  SENSITIVE = []
  include Aws::Structure
end

#logarithmicTypes::AxisLogarithmicScale

The logarithmic axis scale setup.



2405
2406
2407
2408
2409
2410
# File 'lib/aws-sdk-quicksight/types.rb', line 2405

class AxisScale < Struct.new(
  :linear,
  :logarithmic)
  SENSITIVE = []
  include Aws::Structure
end