AWSConnectPredefinedAttributeSearchCriteria

Objective-C

@interface AWSConnectPredefinedAttributeSearchCriteria

Swift

class AWSConnectPredefinedAttributeSearchCriteria

The search criteria to be used to return predefined attributes.

  • A list of conditions which would be applied together with an AND condition.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectPredefinedAttributeSearchCriteria *> *_Nullable andConditions;

    Swift

    var andConditions: [AWSConnectPredefinedAttributeSearchCriteria]? { get set }
  • A list of conditions which would be applied together with an OR condition.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectPredefinedAttributeSearchCriteria *> *_Nullable orConditions;

    Swift

    var orConditions: [AWSConnectPredefinedAttributeSearchCriteria]? { get set }
  • A leaf node condition which can be used to specify a string condition.

    The currently supported values for FieldName are name and description.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectStringCondition *_Nullable stringCondition;

    Swift

    var stringCondition: AWSConnectStringCondition? { get set }