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.

Direct Known Subclasses

AssistantAssociationIds, Unknown

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


6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6288

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



6288
6289
6290
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6288

def unknown
  @unknown
end