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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-quicksight/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)


3046
3047
3048
3049
3050
3051
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 3046

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)


3046
3047
3048
3049
3050
3051
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 3046

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