Class: Aws::RDS::Types::DoubleRange

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

Overview

A range of double values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fromFloat

The minimum value in the range.

Returns:

  • (Float)


14928
14929
14930
14931
14932
14933
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14928

class DoubleRange < Struct.new(
  :from,
  :to)
  SENSITIVE = []
  include Aws::Structure
end

#toFloat

The maximum value in the range.

Returns:

  • (Float)


14928
14929
14930
14931
14932
14933
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14928

class DoubleRange < Struct.new(
  :from,
  :to)
  SENSITIVE = []
  include Aws::Structure
end