interface AgentCollaboratorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentPropsMixin.AgentCollaboratorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentPropsMixin_AgentCollaboratorProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentPropsMixin.AgentCollaboratorProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentPropsMixin.AgentCollaboratorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAgentPropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const agentCollaboratorProperty: bedrock_mixins.CfnAgentPropsMixin.AgentCollaboratorProperty = {
agentDescriptor: {
aliasArn: 'aliasArn',
},
collaborationInstruction: 'collaborationInstruction',
collaboratorName: 'collaboratorName',
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
(optional)
The collaborator's agent descriptor.
collaborationInstruction?
Type:
string
(optional)
The collaborator's instructions.
collaboratorName?
Type:
string
(optional)
The collaborator's collaborator name.
relayConversationHistory?
Type:
string
(optional)
The collaborator's relay conversation history.

.NET
Go
Java
Python
TypeScript