Get Agent Collaborator
bedrockagent_get_agent_collaborator | R Documentation |
Retrieves information about an agent's collaborator¶
Description¶
Retrieves information about an agent's collaborator.
Usage¶
Arguments¶
agentId
[required] The agent's ID.
agentVersion
[required] The agent's version.
collaboratorId
[required] The collaborator's ID.
Value¶
A list with the following syntax:
list(
agentCollaborator = list(
agentDescriptor = list(
aliasArn = "string"
),
agentId = "string",
agentVersion = "string",
clientToken = "string",
collaborationInstruction = "string",
collaboratorId = "string",
collaboratorName = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
relayConversationHistory = "TO_COLLABORATOR"|"DISABLED"
)
)