Class: Aws::Connect::Types::SearchableSegmentAttributesCriteria

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

Overview

The search criteria based on searchable segment attribute key and values to search on.

Constant Summary collapse

SENSITIVE =
[:key, :values]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key containing a searchable segment attribute.

Returns:

  • (String)


20692
20693
20694
20695
20696
20697
# File 'lib/aws-sdk-connect/types.rb', line 20692

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

#valuesArray<String>

The list of values to search for within a searchable segment attribute.

Returns:

  • (Array<String>)


20692
20693
20694
20695
20696
20697
# File 'lib/aws-sdk-connect/types.rb', line 20692

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