interface OrchestrationExecutorProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_bedrock.CfnAgent.OrchestrationExecutorProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAgent_OrchestrationExecutorProperty | 
|  Java | software.amazon.awscdk.services.bedrock.CfnAgent.OrchestrationExecutorProperty | 
|  Python | aws_cdk.aws_bedrock.CfnAgent.OrchestrationExecutorProperty | 
|  TypeScript | aws-cdk-lib»aws_bedrock»CfnAgent»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-lib';
const orchestrationExecutorProperty: bedrock.CfnAgent.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
The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.
