Class: Aws::QConnect::Types::MultiAgentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::MultiAgentConfiguration
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
MultiAgentConfiguration is a union - when making an API calls you must set exactly one of the members.
MultiAgentConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MultiAgentConfiguration corresponding to the set member.
A union that configures a single collaborator agent for an Orchestration AI Agent, as either a delegate or a handoff.
Defined Under Namespace
Classes: DelegateAgentConfiguration, HandoffAgentConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delegate_agent_configuration ⇒ Types::DelegateAgentConfiguration
Configures the collaborator agent as a delegate that the Orchestration AI Agent invokes while retaining control of the conversation.
-
#handoff_agent_configuration ⇒ Types::HandoffAgentConfiguration
Configures the collaborator agent as a handoff target that the Orchestration AI Agent transfers control of the conversation to.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#delegate_agent_configuration ⇒ Types::DelegateAgentConfiguration
Configures the collaborator agent as a delegate that the Orchestration AI Agent invokes while retaining control of the conversation.
8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8246 class MultiAgentConfiguration < Struct.new( :delegate_agent_configuration, :handoff_agent_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DelegateAgentConfiguration < MultiAgentConfiguration; end class HandoffAgentConfiguration < MultiAgentConfiguration; end class Unknown < MultiAgentConfiguration; end end |
#handoff_agent_configuration ⇒ Types::HandoffAgentConfiguration
Configures the collaborator agent as a handoff target that the Orchestration AI Agent transfers control of the conversation to.
8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8246 class MultiAgentConfiguration < Struct.new( :delegate_agent_configuration, :handoff_agent_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DelegateAgentConfiguration < MultiAgentConfiguration; end class HandoffAgentConfiguration < MultiAgentConfiguration; end class Unknown < MultiAgentConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8246 8247 8248 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8246 def unknown @unknown end |