interface CustomOrchestrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.CustomOrchestrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_CustomOrchestrationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.CustomOrchestrationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.CustomOrchestrationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAgentPropsMixin » 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/cfn-property-mixins';
const customOrchestrationProperty: bedrock.CfnAgentPropsMixin.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