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

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

Overview

A range of double values.

Instance Attribute Summary collapse

Instance Attribute Details

#fromFloat

The minimum value in the range.

Returns:

  • (Float)


8794
8795
8796
8797
8798
# File 'lib/aws-sdk-rds/types.rb', line 8794

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

#toFloat

The maximum value in the range.

Returns:

  • (Float)


8794
8795
8796
8797
8798
# File 'lib/aws-sdk-rds/types.rb', line 8794

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