Class: Aws::ComputeOptimizerAutomation::Types::IntegerCriteriaCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizerAutomation::Types::IntegerCriteriaCondition
- Defined in:
- gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb
Overview
Defines a condition for filtering based on integer values with comparison operators.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The comparison operator to use, such as equals, greater than, less than, etc.
-
#values ⇒ Array<Integer>
The list of integer values to compare against using the specified comparison operator.
Instance Attribute Details
#comparison ⇒ String
The comparison operator to use, such as equals, greater than, less than, etc.
1084 1085 1086 1087 1088 1089 |
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 1084 class IntegerCriteriaCondition < Struct.new( :comparison, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<Integer>
The list of integer values to compare against using the specified comparison operator.
1084 1085 1086 1087 1088 1089 |
# File 'gems/aws-sdk-computeoptimizerautomation/lib/aws-sdk-computeoptimizerautomation/types.rb', line 1084 class IntegerCriteriaCondition < Struct.new( :comparison, :values) SENSITIVE = [] include Aws::Structure end |