Class: Aws::Glue::Types::DecimalNumber
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Glue::Types::DecimalNumber
 
 
- Defined in:
 - gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
 
Overview
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.
      8881 8882 8883 8884 8885 8886  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8881 class DecimalNumber < Struct.new( :unscaled_value, :scale) SENSITIVE = [] include Aws::Structure end  | 
  
#unscaled_value ⇒ String
The unscaled numeric value.
      8881 8882 8883 8884 8885 8886  | 
    
      # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8881 class DecimalNumber < Struct.new( :unscaled_value, :scale) SENSITIVE = [] include Aws::Structure end  |