AWSConnectExpression
Objective-C
@interface AWSConnectExpression
Swift
class AWSConnectExpression
A tagged union to specify expression for a routing step.
-
List of routing expressions which will be AND-ed together.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectExpression *> *_Nullable andExpression;
Swift
var andExpression: [AWSConnectExpression]? { get set }
-
An object to specify the predefined attribute condition.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectAttributeCondition *_Nullable attributeCondition;
Swift
var attributeCondition: AWSConnectAttributeCondition? { get set }
-
List of routing expressions which will be OR-ed together.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectExpression *> *_Nullable orExpression;
Swift
var orExpression: [AWSConnectExpression]? { get set }