Associate Agent Collaborator
| bedrockagent_associate_agent_collaborator | R Documentation |
Makes an agent a collaborator for another agent¶
Description¶
Makes an agent a collaborator for another agent.
Usage¶
bedrockagent_associate_agent_collaborator(agentId, agentVersion,
agentDescriptor, collaboratorName, collaborationInstruction,
relayConversationHistory, clientToken)
Arguments¶
agentId |
[required] The agent's ID. |
agentVersion |
[required] An agent version. |
agentDescriptor |
[required] The alias of the collaborator agent. |
collaboratorName |
[required] A name for the collaborator. |
collaborationInstruction |
[required] Instruction for the collaborator. |
relayConversationHistory |
A relay conversation history for the collaborator. |
clientToken |
A client token. |
Value¶
A list with the following syntax:
list(
agentCollaborator = list(
agentId = "string",
agentVersion = "string",
agentDescriptor = list(
aliasArn = "string"
),
collaboratorId = "string",
collaborationInstruction = "string",
collaboratorName = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
relayConversationHistory = "TO_COLLABORATOR"|"DISABLED",
clientToken = "string"
)
)
Request syntax¶
svc$associate_agent_collaborator(
agentId = "string",
agentVersion = "string",
agentDescriptor = list(
aliasArn = "string"
),
collaboratorName = "string",
collaborationInstruction = "string",
relayConversationHistory = "TO_COLLABORATOR"|"DISABLED",
clientToken = "string"
)