Class: Aws::Connect::Types::DecimalCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DecimalCondition
- Defined in:
- gems/aws-sdk-connect/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.
6544 6545 6546 6547 6548 6549 6550 6551 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6544 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.
6544 6545 6546 6547 6548 6549 6550 6551 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6544 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.
6544 6545 6546 6547 6548 6549 6550 6551 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6544 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.
6544 6545 6546 6547 6548 6549 6550 6551 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 6544 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |