Class: Aws::ConnectWisdomService::Types::AssistantAssociationInputData
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::AssistantAssociationInputData
- Defined in:
- gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/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 Wisdom as a result of the assistant association.
Direct Known Subclasses
Defined Under Namespace
Classes: KnowledgeBaseId, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#knowledge_base_id ⇒ String
The identifier of the knowledge base.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#knowledge_base_id ⇒ String
The identifier of the knowledge base.
152 153 154 155 156 157 158 159 160 161 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 152 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
152 153 154 |
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 152 def unknown @unknown end |