Class: Aws::Connect::Types::DecimalCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DecimalCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
A decimal search condition for Search APIs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison_type ⇒ String
The type of comparison to be made when evaluating the decimal condition.
-
#field_name ⇒ String
A name of the decimal property to be searched.
-
#max_value ⇒ Float
A maximum value of the decimal property.
-
#min_value ⇒ Float
A minimum value of the decimal property.
Instance Attribute Details
#comparison_type ⇒ String
The type of comparison to be made when evaluating the decimal condition.
8412 8413 8414 8415 8416 8417 8418 8419 |
# File 'lib/aws-sdk-connect/types.rb', line 8412 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |
#field_name ⇒ String
A name of the decimal property to be searched.
8412 8413 8414 8415 8416 8417 8418 8419 |
# File 'lib/aws-sdk-connect/types.rb', line 8412 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |
#max_value ⇒ Float
A maximum value of the decimal property.
8412 8413 8414 8415 8416 8417 8418 8419 |
# File 'lib/aws-sdk-connect/types.rb', line 8412 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ Float
A minimum value of the decimal property.
8412 8413 8414 8415 8416 8417 8418 8419 |
# File 'lib/aws-sdk-connect/types.rb', line 8412 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |