Class: Aws::QConnect::Types::KnowledgeSource

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

Overview

Note:

KnowledgeSource is a union - when making an API calls you must set exactly one of the members.

A knowledge source that provides content for recommendations.

Defined Under Namespace

Classes: AssistantAssociationIds, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#assistant_association_idsArray<String>

The list of assistant association identifiers for the knowledge source.

Returns:

  • (Array<String>)


6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6410

class KnowledgeSource < Struct.new(
  :assistant_association_ids,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AssistantAssociationIds < KnowledgeSource; end
  class Unknown < KnowledgeSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6410
6411
6412
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6410

def unknown
  @unknown
end