Class: Aws::QConnect::Types::AssistantAssociationOutputData

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

Overview

Note:

AssistantAssociationOutputData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssistantAssociationOutputData corresponding to the set member.

The data that is output as a result of the assistant association.

Defined Under Namespace

Classes: ExternalBedrockKnowledgeBaseConfig, KnowledgeBaseAssociation, 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 in the output data.



1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1201

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

  class KnowledgeBaseAssociation < AssistantAssociationOutputData; end
  class ExternalBedrockKnowledgeBaseConfig < AssistantAssociationOutputData; end
  class Unknown < AssistantAssociationOutputData; end
end

#knowledge_base_associationTypes::KnowledgeBaseAssociationData

The knowledge base where output data is sent.



1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1201

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

  class KnowledgeBaseAssociation < AssistantAssociationOutputData; end
  class ExternalBedrockKnowledgeBaseConfig < AssistantAssociationOutputData; end
  class Unknown < AssistantAssociationOutputData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1201
1202
1203
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1201

def unknown
  @unknown
end