interface AgentCollaborationConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Alpha.AgentCollaborationConfig |
Go | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#AgentCollaborationConfig |
Java | software.amazon.awscdk.services.bedrock.alpha.AgentCollaborationConfig |
Python | aws_cdk.aws_bedrock_alpha.AgentCollaborationConfig |
TypeScript (source) | @aws-cdk/aws-bedrock-alpha ยป AgentCollaborationConfig |
Configuration for agent collaboration settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_alpha from '@aws-cdk/aws-bedrock-alpha';
declare const agentCollaborator: bedrock_alpha.AgentCollaborator;
const agentCollaborationConfig: bedrock_alpha.AgentCollaborationConfig = {
collaborators: [agentCollaborator],
type: bedrock_alpha.AgentCollaboratorType.SUPERVISOR,
};
Properties
| Name | Type | Description |
|---|---|---|
| collaborators | Agent[] | Collaborators that this agent will work with. |
| type | Agent | The collaboration type for the agent. |
collaborators
Type:
Agent[]
Collaborators that this agent will work with.
type
Type:
Agent
The collaboration type for the agent.

.NET
Go
Java
Python
TypeScript (