interface OrchestrationExecutorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAgentPropsMixin.OrchestrationExecutorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAgentPropsMixin_OrchestrationExecutorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAgentPropsMixin.OrchestrationExecutorProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAgentPropsMixin.OrchestrationExecutorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAgentPropsMixin » OrchestrationExecutorProperty |
The structure of the executor invoking the actions in custom orchestration.
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 orchestrationExecutorProperty: bedrock.CfnAgentPropsMixin.OrchestrationExecutorProperty = {
lambda: 'lambda',
};
Properties
| Name | Type | Description |
|---|---|---|
| lambda? | string | The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action. |
lambda?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

.NET
Go
Java
Python
TypeScript