Class: Aws::GroundStation::Types::IntegerRange

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

Overview

An integer range that has a minimum and maximum value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximumInteger

A maximum value.

Returns:

  • (Integer)


1829
1830
1831
1832
1833
1834
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1829

class IntegerRange < Struct.new(
  :maximum,
  :minimum)
  SENSITIVE = []
  include Aws::Structure
end

#minimumInteger

A minimum value.

Returns:

  • (Integer)


1829
1830
1831
1832
1833
1834
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1829

class IntegerRange < Struct.new(
  :maximum,
  :minimum)
  SENSITIVE = []
  include Aws::Structure
end