Class: Aws::Glue::Types::DecimalNumber
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DecimalNumber
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass DecimalNumber data as a hash:
{
unscaled_value: "data", # required
scale: 1, # required
}
Contains a numeric value in decimal format.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scale ⇒ Integer
The scale that determines where the decimal point falls in the unscaled value.
-
#unscaled_value ⇒ String
The unscaled numeric value.
Instance Attribute Details
#scale ⇒ Integer
The scale that determines where the decimal point falls in the unscaled value.
5093 5094 5095 5096 5097 5098 |
# File 'lib/aws-sdk-glue/types.rb', line 5093 class DecimalNumber < Struct.new( :unscaled_value, :scale) SENSITIVE = [] include Aws::Structure end |
#unscaled_value ⇒ String
The unscaled numeric value.
5093 5094 5095 5096 5097 5098 |
# File 'lib/aws-sdk-glue/types.rb', line 5093 class DecimalNumber < Struct.new( :unscaled_value, :scale) SENSITIVE = [] include Aws::Structure end |