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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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.

Defined Under Namespace

Classes: ExternalBedrockKnowledgeBaseConfig, KnowledgeBaseId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#external_bedrock_knowledge_base_configTypes::ExternalBedrockKnowledgeBaseConfig

The configuration for an external Bedrock knowledge base association.



1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
# File 'lib/aws-sdk-qconnect/types.rb', line 1173

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

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

#knowledge_base_idString

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



1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
# File 'lib/aws-sdk-qconnect/types.rb', line 1173

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

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

#unknownObject

Returns the value of attribute unknown



1173
1174
1175
# File 'lib/aws-sdk-qconnect/types.rb', line 1173

def unknown
  @unknown
end