Class: Aws::Connect::Types::Expression

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#and_expressionArray<Types::Expression>

List of routing expressions which will be AND-ed together.

Returns:



9415
9416
9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-connect/types.rb', line 9415

class Expression < Struct.new(
  :attribute_condition,
  :and_expression,
  :or_expression,
  :not_attribute_condition)
  SENSITIVE = []
  include Aws::Structure
end

#attribute_conditionTypes::AttributeCondition

An object to specify the predefined attribute condition.



9415
9416
9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-connect/types.rb', line 9415

class Expression < Struct.new(
  :attribute_condition,
  :and_expression,
  :or_expression,
  :not_attribute_condition)
  SENSITIVE = []
  include Aws::Structure
end

#not_attribute_conditionTypes::AttributeCondition

An object to specify the predefined attribute condition.



9415
9416
9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-connect/types.rb', line 9415

class Expression < Struct.new(
  :attribute_condition,
  :and_expression,
  :or_expression,
  :not_attribute_condition)
  SENSITIVE = []
  include Aws::Structure
end

#or_expressionArray<Types::Expression>

List of routing expressions which will be OR-ed together.

Returns:



9415
9416
9417
9418
9419
9420
9421
9422
# File 'lib/aws-sdk-connect/types.rb', line 9415

class Expression < Struct.new(
  :attribute_condition,
  :and_expression,
  :or_expression,
  :not_attribute_condition)
  SENSITIVE = []
  include Aws::Structure
end