Class: Aws::ConnectWisdomService::Types::AssistantAssociationOutputData

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectwisdomservice/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

KnowledgeBaseAssociation, Unknown

Defined Under Namespace

Classes: KnowledgeBaseAssociation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_associationTypes::KnowledgeBaseAssociationData

The knowledge base where output data is sent.



186
187
188
189
190
191
192
193
194
195
# File 'gems/aws-sdk-connectwisdomservice/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



186
187
188
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 186

def unknown
  @unknown
end