AWSConnectStringCondition
Objective-C
@interface AWSConnectStringCondition
Swift
class AWSConnectStringCondition
A leaf node condition which can be used to specify a string condition.
The currently supported values for FieldName
are name
and description
.
-
The type of comparison to be made when evaluating the string condition.
Declaration
Objective-C
@property (nonatomic) AWSConnectStringComparisonType comparisonType;
Swift
var comparisonType: AWSConnectStringComparisonType { get set }
-
The name of the field in the string condition.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable fieldName;
Swift
var fieldName: String? { get set }
-
The value of the string.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable value;
Swift
var value: String? { get set }