Class: Aws::QConnect::Types::AssociationConfigurationData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::AssociationConfigurationData
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
AssociationConfigurationData is a union - when making an API calls you must set exactly one of the members.
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.
Direct Known Subclasses
Defined Under Namespace
Classes: KnowledgeBaseAssociationConfigurationData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#knowledge_base_association_configuration_data ⇒ Types::KnowledgeBaseAssociationConfigurationData
The data of the configuration for a
KNOWLEDGE_BASE
type Amazon Q in Connect Assistant Association. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#knowledge_base_association_configuration_data ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1328 1329 1330 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1328 def unknown @unknown end |