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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAgent.AgentCollaboratorProperty
static final class
An implementation forCfnAgent.AgentCollaboratorProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentDescriptor
The collaborator's agent descriptor.- See Also:
-
getCollaborationInstruction
The collaborator's instructions.- See Also:
-
getCollaboratorName
The collaborator's collaborator name.- See Also:
-
getRelayConversationHistory
The collaborator's relay conversation history.- See Also:
-
builder
-