Class: Aws::CustomerProfiles::Types::ObjectFilter

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

Overview

The filter applied to ListProfileObjects response to include profile objects with the specified index values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_nameString

A searchable identifier of a profile object. The predefined keys you can use to search for _asset include: _assetId, _assetName, and _serialNumber. The predefined keys you can use to search for _case include: _caseId. The predefined keys you can use to search for _order include: _orderId.

Returns:

  • (String)


3921
3922
3923
3924
3925
3926
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3921

class ObjectFilter < Struct.new(
  :key_name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

A list of key values.

Returns:

  • (Array<String>)


3921
3922
3923
3924
3925
3926
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3921

class ObjectFilter < Struct.new(
  :key_name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end