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