Class: Aws::QConnect::Types::AssistantAssociationInputData

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

Overview

Note:

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

The data that is input into Amazon Q in Connect as a result of the assistant association.

Direct Known Subclasses

KnowledgeBaseId, Unknown

Defined Under Namespace

Classes: KnowledgeBaseId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_idString

The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base.

Returns:

  • (String)


1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1027

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

  class KnowledgeBaseId < AssistantAssociationInputData; end
  class Unknown < AssistantAssociationInputData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1027
1028
1029
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1027

def unknown
  @unknown
end