AWSConnectSecurityProfileSearchCriteria

Objective-C

@interface AWSConnectSecurityProfileSearchCriteria

Swift

class AWSConnectSecurityProfileSearchCriteria

The search criteria to be used to return security profiles.

The name field support “contains” queries with a minimum of 2 characters and 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<AWSConnectSecurityProfileSearchCriteria *> *_Nullable andConditions;

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var orConditions: [AWSConnectSecurityProfileSearchCriteria]? { 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 }