interface CustomOrchestrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnAgent.CustomOrchestrationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_CustomOrchestrationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnAgent.CustomOrchestrationProperty |
Python | aws_cdk.aws_bedrock.CfnAgent.CustomOrchestrationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnAgent » CustomOrchestrationProperty |
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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const customOrchestrationProperty: bedrock.CfnAgent.CustomOrchestrationProperty = {
executor: {
lambda: 'lambda',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| executor? | IResolvable | Orchestration | The structure of the executor invoking the actions in custom orchestration. |
executor?
Type:
IResolvable | Orchestration
(optional)
The structure of the executor invoking the actions in custom orchestration.

.NET
Go
Java
Python
TypeScript