Class: Aws::QConnect::Types::AssistantAssociationOutputData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::AssistantAssociationOutputData
- 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
-
#external_bedrock_knowledge_base_config ⇒ Types::ExternalBedrockKnowledgeBaseConfig
The configuration for an external Bedrock knowledge base association in the output data.
-
#knowledge_base_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#external_bedrock_knowledge_base_config ⇒ Types::ExternalBedrockKnowledgeBaseConfig
The configuration for an external Bedrock knowledge base association in the output data.
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1240 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_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1240 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1240 1241 1242 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1240 def unknown @unknown end |