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)


2369
2370
2371
2372
2373
2374
# File 'lib/aws-sdk-quicksight/types.rb', line 2369

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)


2369
2370
2371
2372
2373
2374
# File 'lib/aws-sdk-quicksight/types.rb', line 2369

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