AWSConnectControlPlaneTagFilter
Objective-C
@interface AWSConnectControlPlaneTagFilter
Swift
class AWSConnectControlPlaneTagFilter
An object that can be used to specify Tag conditions inside the SearchFilter
. This accepts an OR
of AND
(List of List) input where:
Top level list specifies conditions that need to be applied with
OR
operatorInner list specifies conditions that need to be applied with
AND
operator.
-
A list of conditions which would be applied together with an
AND
condition.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectTagCondition *> *_Nullable andConditions;
Swift
var andConditions: [AWSConnectTagCondition]? { get set }
-
A list of conditions which would be applied together with an
OR
condition.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSArray<AWSConnectTagCondition *> *> *_Nullable orConditions;
Swift
var orConditions: [[AWSConnectTagCondition]]? { get set }
-
A leaf node condition which can be used to specify a tag condition.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectTagCondition *_Nullable tagCondition;
Swift
var tagCondition: AWSConnectTagCondition? { get set }