Class: Aws::Connect::Types::Expression
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::Expression
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
A tagged union to specify expression for a routing step.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#and_expression ⇒ Array<Types::Expression>
List of routing expressions which will be AND-ed together.
-
#attribute_condition ⇒ Types::AttributeCondition
An object to specify the predefined attribute condition.
-
#or_expression ⇒ Array<Types::Expression>
List of routing expressions which will be OR-ed together.
Instance Attribute Details
#and_expression ⇒ Array<Types::Expression>
List of routing expressions which will be AND-ed together.
8153 8154 8155 8156 8157 8158 8159 |
# File 'lib/aws-sdk-connect/types.rb', line 8153 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression) SENSITIVE = [] include Aws::Structure end |
#attribute_condition ⇒ Types::AttributeCondition
An object to specify the predefined attribute condition.
8153 8154 8155 8156 8157 8158 8159 |
# File 'lib/aws-sdk-connect/types.rb', line 8153 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression) SENSITIVE = [] include Aws::Structure end |
#or_expression ⇒ Array<Types::Expression>
List of routing expressions which will be OR-ed together.
8153 8154 8155 8156 8157 8158 8159 |
# File 'lib/aws-sdk-connect/types.rb', line 8153 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression) SENSITIVE = [] include Aws::Structure end |