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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fromFloat

The minimum value in the range.

Returns:

  • (Float)


15344
15345
15346
15347
15348
15349
# File 'lib/aws-sdk-rds/types.rb', line 15344

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

#toFloat

The maximum value in the range.

Returns:

  • (Float)


15344
15345
15346
15347
15348
15349
# File 'lib/aws-sdk-rds/types.rb', line 15344

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