interface AgentCollaboratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnAgent.AgentCollaboratorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_AgentCollaboratorProperty |
Java | software.amazon.awscdk.services.bedrock.CfnAgent.AgentCollaboratorProperty |
Python | aws_cdk.aws_bedrock.CfnAgent.AgentCollaboratorProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnAgent » AgentCollaboratorProperty |
An agent collaborator.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const agentCollaboratorProperty: bedrock.CfnAgent.AgentCollaboratorProperty = {
agentDescriptor: {
aliasArn: 'aliasArn',
},
collaborationInstruction: 'collaborationInstruction',
collaboratorName: 'collaboratorName',
// the properties below are optional
relayConversationHistory: 'relayConversationHistory',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Agent | The collaborator's agent descriptor. |
| collaboration | string | The collaborator's instructions. |
| collaborator | string | The collaborator's collaborator name. |
| relay | string | The collaborator's relay conversation history. |
agentDescriptor
Type:
IResolvable | Agent
The collaborator's agent descriptor.
collaborationInstruction
Type:
string
The collaborator's instructions.
collaboratorName
Type:
string
The collaborator's collaborator name.
relayConversationHistory?
Type:
string
(optional)
The collaborator's relay conversation history.

.NET
Go
Java
Python
TypeScript