Class: Aws::Connect::Types::NameCriteria

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

Overview

The search criteria based on the contact name

Constant Summary collapse

SENSITIVE =
[:search_text]

Instance Attribute Summary collapse

Instance Attribute Details

#match_typeString

The match type combining name search criteria using multiple search texts in a name criteria.

Returns:

  • (String)


17895
17896
17897
17898
17899
17900
# File 'lib/aws-sdk-connect/types.rb', line 17895

class NameCriteria < Struct.new(
  :search_text,
  :match_type)
  SENSITIVE = [:search_text]
  include Aws::Structure
end

#search_textArray<String>

The words or phrases used to match the contact name.

Returns:

  • (Array<String>)


17895
17896
17897
17898
17899
17900
# File 'lib/aws-sdk-connect/types.rb', line 17895

class NameCriteria < Struct.new(
  :search_text,
  :match_type)
  SENSITIVE = [:search_text]
  include Aws::Structure
end