Class: Aws::QConnect::Types::MultiAgentConfiguration

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

Overview

Note:

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

Note:

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

Instance Attribute Details

#delegate_agent_configurationTypes::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_configurationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8246
8247
8248
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8246

def unknown
  @unknown
end