Class: Aws::QConnect::Types::Filter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb

Overview

A search filter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field ⇒ String

The field on which to filter.

Returns:

  • (String)


4766
4767
4768
4769
4770
4771
4772
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4766

class Filter < Struct.new(
  :field,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#operator ⇒ String

The operator to use for comparing the field’s value with the provided value.

Returns:

  • (String)


4766
4767
4768
4769
4770
4771
4772
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4766

class Filter < Struct.new(
  :field,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#value ⇒ String

The desired field value on which to filter.

Returns:

  • (String)


4766
4767
4768
4769
4770
4771
4772
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4766

class Filter < Struct.new(
  :field,
  :operator,
  :value)
  SENSITIVE = []
  include Aws::Structure
end