Class: Aws::Inspector2::Types::NumberFilter

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

Overview

An object that describes the details of a number filter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lower_inclusiveFloat

The lowest number to be included in the filter.

Returns:

  • (Float)


5455
5456
5457
5458
5459
5460
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 5455

class NumberFilter < Struct.new(
  :lower_inclusive,
  :upper_inclusive)
  SENSITIVE = []
  include Aws::Structure
end

#upper_inclusiveFloat

The highest number to be included in the filter.

Returns:

  • (Float)


5455
5456
5457
5458
5459
5460
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 5455

class NumberFilter < Struct.new(
  :lower_inclusive,
  :upper_inclusive)
  SENSITIVE = []
  include Aws::Structure
end