Interface CfnAgent.CustomOrchestrationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAgent.CustomOrchestrationProperty.Jsii$Proxy
- Enclosing class:
CfnAgent
@Stability(Stable)
public static interface CfnAgent.CustomOrchestrationProperty
extends software.amazon.jsii.JsiiSerializable
Contains details of the custom orchestration configured for the agent.
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.*;
CustomOrchestrationProperty customOrchestrationProperty = CustomOrchestrationProperty.builder()
.executor(OrchestrationExecutorProperty.builder()
.lambda("lambda")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAgent.CustomOrchestrationPropertystatic final classAn implementation forCfnAgent.CustomOrchestrationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutor
The structure of the executor invoking the actions in custom orchestration.Returns union: either
IResolvableorCfnAgent.OrchestrationExecutorProperty- See Also:
-
builder
-