interface CustomOrchestrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAgentPropsMixin.CustomOrchestrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAgentPropsMixin_CustomOrchestrationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAgentPropsMixin.CustomOrchestrationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAgentPropsMixin.CustomOrchestrationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const customOrchestrationProperty: bedrock_mixins.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