Class: Aws::Connect::Types::Expression
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::Expression
- Defined in:
- gems/aws-sdk-connect/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.
-
#not_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.
9126 9127 9128 9129 9130 9131 9132 9133 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9126 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression, :not_attribute_condition) SENSITIVE = [] include Aws::Structure end |
#attribute_condition ⇒ Types::AttributeCondition
An object to specify the predefined attribute condition.
9126 9127 9128 9129 9130 9131 9132 9133 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9126 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression, :not_attribute_condition) SENSITIVE = [] include Aws::Structure end |
#not_attribute_condition ⇒ Types::AttributeCondition
An object to specify the predefined attribute condition.
9126 9127 9128 9129 9130 9131 9132 9133 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9126 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression, :not_attribute_condition) SENSITIVE = [] include Aws::Structure end |
#or_expression ⇒ Array<Types::Expression>
List of routing expressions which will be OR-ed together.
9126 9127 9128 9129 9130 9131 9132 9133 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9126 class Expression < Struct.new( :attribute_condition, :and_expression, :or_expression, :not_attribute_condition) SENSITIVE = [] include Aws::Structure end |