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.
8226 8227 8228 8229 8230 8231 8232 8233 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8226 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.
8226 8227 8228 8229 8230 8231 8232 8233 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8226 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.
8226 8227 8228 8229 8230 8231 8232 8233 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8226 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.
8226 8227 8228 8229 8230 8231 8232 8233 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 8226 class DecimalCondition < Struct.new( :field_name, :min_value, :max_value, :comparison_type) SENSITIVE = [] include Aws::Structure end |