Class: Aws::SageMaker::Types::USD
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::USD
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Represents an amount of money in United States dollars.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cents  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fractional portion, in cents, of the amount.
 - 
  
    
      #dollars  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The whole number of dollars in the amount.
 - 
  
    
      #tenth_fractions_of_a_cent  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Fractions of a cent, in tenths.
 
Instance Attribute Details
#cents ⇒ Integer
The fractional portion, in cents, of the amount.
      46979 46980 46981 46982 46983 46984 46985  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 46979 class USD < Struct.new( :dollars, :cents, :tenth_fractions_of_a_cent) SENSITIVE = [] include Aws::Structure end  |