Class: Aws::SageMaker::Types::USD

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Represents an amount of money in United States dollars.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#centsInteger

The fractional portion, in cents, of the amount.

Returns:

  • (Integer)


42678
42679
42680
42681
42682
42683
42684
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42678

class USD < Struct.new(
  :dollars,
  :cents,
  :tenth_fractions_of_a_cent)
  SENSITIVE = []
  include Aws::Structure
end

#dollarsInteger

The whole number of dollars in the amount.

Returns:

  • (Integer)


42678
42679
42680
42681
42682
42683
42684
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42678

class USD < Struct.new(
  :dollars,
  :cents,
  :tenth_fractions_of_a_cent)
  SENSITIVE = []
  include Aws::Structure
end

#tenth_fractions_of_a_centInteger

Fractions of a cent, in tenths.

Returns:

  • (Integer)


42678
42679
42680
42681
42682
42683
42684
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42678

class USD < Struct.new(
  :dollars,
  :cents,
  :tenth_fractions_of_a_cent)
  SENSITIVE = []
  include Aws::Structure
end