Class: Aws::Connect::Types::NumberCondition

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

Overview

A leaf node condition which can be used to specify a numeric condition.

The currently supported value for FieldName is limit.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comparison_typeString

The type of comparison to be made when evaluating the number condition.

Returns:

  • (String)


16414
16415
16416
16417
16418
16419
16420
16421
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16414

class NumberCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#field_nameString

The name of the field in the number condition.

Returns:

  • (String)


16414
16415
16416
16417
16418
16419
16420
16421
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16414

class NumberCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#max_valueInteger

The maxValue to be used while evaluating the number condition.

Returns:

  • (Integer)


16414
16415
16416
16417
16418
16419
16420
16421
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16414

class NumberCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueInteger

The minValue to be used while evaluating the number condition.

Returns:

  • (Integer)


16414
16415
16416
16417
16418
16419
16420
16421
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16414

class NumberCondition < Struct.new(
  :field_name,
  :min_value,
  :max_value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end