Class: Aws::Glue::Types::DecimalNumber

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

Overview

Contains a numeric value in decimal format.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scaleInteger

The scale that determines where the decimal point falls in the unscaled value.

Returns:

  • (Integer)


6818
6819
6820
6821
6822
6823
# File 'lib/aws-sdk-glue/types.rb', line 6818

class DecimalNumber < Struct.new(
  :unscaled_value,
  :scale)
  SENSITIVE = []
  include Aws::Structure
end

#unscaled_valueString

The unscaled numeric value.

Returns:

  • (String)


6818
6819
6820
6821
6822
6823
# File 'lib/aws-sdk-glue/types.rb', line 6818

class DecimalNumber < Struct.new(
  :unscaled_value,
  :scale)
  SENSITIVE = []
  include Aws::Structure
end