Class: Aws::QConnect::Types::AssociationConfigurationData

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

Overview

Note:

AssociationConfigurationData is a union - when making an API calls you must set exactly one of the members.

Note:

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

A typed union of the data of the configuration for an Amazon Q in Connect Assistant Association.

Defined Under Namespace

Classes: KnowledgeBaseAssociationConfigurationData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#knowledge_base_association_configuration_dataTypes::KnowledgeBaseAssociationConfigurationData

The data of the configuration for a KNOWLEDGE_BASE type Amazon Q in Connect Assistant Association.



1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1328

class AssociationConfigurationData < Struct.new(
  :knowledge_base_association_configuration_data,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class KnowledgeBaseAssociationConfigurationData < AssociationConfigurationData; end
  class Unknown < AssociationConfigurationData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1328
1329
1330
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1328

def unknown
  @unknown
end