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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/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)


20654
20655
20656
20657
20658
20659
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 20654

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>)


20654
20655
20656
20657
20658
20659
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 20654

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