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.
44926 44927 44928 44929 44930 44931 44932 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 44926 class USD < Struct.new( :dollars, :cents, :tenth_fractions_of_a_cent) SENSITIVE = [] include Aws::Structure end |