Class: Aws::Connect::Types::SearchableContactAttributesCriteria

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

The search criteria based on user-defned contact attribute key and values to search on.

Constant Summary collapse

SENSITIVE =
[:key]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key containing a searchable user-defined contact attribute.

Returns:

  • (String)


16542
16543
16544
16545
16546
16547
# File 'lib/aws-sdk-connect/types.rb', line 16542

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

#valuesArray<String>

The list of values to search for within a user-defined contact attribute.

Returns:

  • (Array<String>)


16542
16543
16544
16545
16546
16547
# File 'lib/aws-sdk-connect/types.rb', line 16542

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