Class: Aws::QuickSight::Types::AxisLinearScale

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

Overview

The liner axis scale setup.

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

#step_countInteger

The step count setup of a linear axis.

Returns:

  • (Integer)


2615
2616
2617
2618
2619
2620
# File 'lib/aws-sdk-quicksight/types.rb', line 2615

class AxisLinearScale < Struct.new(
  :step_count,
  :step_size)
  SENSITIVE = []
  include Aws::Structure
end

#step_sizeFloat

The step size setup of a linear axis.

Returns:

  • (Float)


2615
2616
2617
2618
2619
2620
# File 'lib/aws-sdk-quicksight/types.rb', line 2615

class AxisLinearScale < Struct.new(
  :step_count,
  :step_size)
  SENSITIVE = []
  include Aws::Structure
end