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)


2189
2190
2191
2192
2193
2194
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2189

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

#minimumInteger

A minimum value.

Returns:

  • (Integer)


2189
2190
2191
2192
2193
2194
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2189

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