Class: Aws::ConnectCases::Types::BooleanCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::BooleanCondition
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
BooleanCondition is a union - when making an API calls you must set exactly one of the members.
BooleanCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of BooleanCondition corresponding to the set member.
Boolean condition for a rule. In the Amazon Connect admin website, case rules are known as *case field conditions*. For more information about case field conditions, see [Add case field conditions to a case template].
[1]: docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
Direct Known Subclasses
Defined Under Namespace
Classes: EqualTo, NotEqualTo, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#equal_to ⇒ Types::BooleanOperands
Tests that operandOne is equal to operandTwo.
-
#not_equal_to ⇒ Types::BooleanOperands
Tests that operandOne is not equal to operandTwo.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#equal_to ⇒ Types::BooleanOperands
Tests that operandOne is equal to operandTwo.
306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/aws-sdk-connectcases/types.rb', line 306 class BooleanCondition < Struct.new( :equal_to, :not_equal_to, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EqualTo < BooleanCondition; end class NotEqualTo < BooleanCondition; end class Unknown < BooleanCondition; end end |
#not_equal_to ⇒ Types::BooleanOperands
Tests that operandOne is not equal to operandTwo.
306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'lib/aws-sdk-connectcases/types.rb', line 306 class BooleanCondition < Struct.new( :equal_to, :not_equal_to, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EqualTo < BooleanCondition; end class NotEqualTo < BooleanCondition; end class Unknown < BooleanCondition; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
306 307 308 |
# File 'lib/aws-sdk-connectcases/types.rb', line 306 def unknown @unknown end |