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)


6924
6925
6926
6927
6928
6929
# File 'lib/aws-sdk-glue/types.rb', line 6924

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

#unscaled_valueString

The unscaled numeric value.

Returns:

  • (String)


6924
6925
6926
6927
6928
6929
# File 'lib/aws-sdk-glue/types.rb', line 6924

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