Interface CfnAgent.AgentCollaboratorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAgent.AgentCollaboratorProperty.Jsii$Proxy
Enclosing class:
CfnAgent

@Stability(Stable) public static interface CfnAgent.AgentCollaboratorProperty extends software.amazon.jsii.JsiiSerializable
An agent collaborator.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 AgentCollaboratorProperty agentCollaboratorProperty = AgentCollaboratorProperty.builder()
         .agentDescriptor(AgentDescriptorProperty.builder()
                 .aliasArn("aliasArn")
                 .build())
         .collaborationInstruction("collaborationInstruction")
         .collaboratorName("collaboratorName")
         // the properties below are optional
         .relayConversationHistory("relayConversationHistory")
         .build();
 

See Also: