Class: Aws::ConnectWisdomService::Types::AssistantAssociationOutputData
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::AssistantAssociationOutputData
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectwisdomservice/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.
Direct Known Subclasses
Defined Under Namespace
Classes: KnowledgeBaseAssociation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#knowledge_base_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#knowledge_base_association ⇒ Types::KnowledgeBaseAssociationData
The knowledge base where output data is sent.
186 187 188 189 190 191 192 193 194 195 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 186 class AssistantAssociationOutputData < Struct.new( :knowledge_base_association, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class KnowledgeBaseAssociation < AssistantAssociationOutputData; end class Unknown < AssistantAssociationOutputData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
186 187 188 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 186 def unknown @unknown end |