AWSConnectQueueSearchCriteria
Objective-C
@interface AWSConnectQueueSearchCriteria
Swift
class AWSConnectQueueSearchCriteria
The search criteria to be used to return queues.
The name and description fields support “contains” queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
-
A list of conditions which would be applied together with an AND condition.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectQueueSearchCriteria *> *_Nullable andConditions;Swift
var andConditions: [AWSConnectQueueSearchCriteria]? { get set } -
A list of conditions which would be applied together with an OR condition.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectQueueSearchCriteria *> *_Nullable orConditions;Swift
var orConditions: [AWSConnectQueueSearchCriteria]? { get set } -
The type of queue.
Declaration
Objective-C
@property (nonatomic) AWSConnectSearchableQueueType queueTypeCondition;Swift
var queueTypeCondition: AWSConnectSearchableQueueType { get set } -
A leaf node condition which can be used to specify a string condition.
The currently supported values for
FieldNamearename,description, andresourceID.Declaration
Objective-C
@property (nonatomic, strong) AWSConnectStringCondition *_Nullable stringCondition;Swift
var stringCondition: AWSConnectStringCondition? { get set }
View on GitHub
Install in Dash
AWSConnectQueueSearchCriteria Class Reference