Class CfnAgent.OrchestrationExecutorProperty
The structure of the executor invoking the actions in custom orchestration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAgent.OrchestrationExecutorProperty : CfnAgent.IOrchestrationExecutorProperty
Syntax (vb)
Public Class CfnAgent.OrchestrationExecutorProperty Implements CfnAgent.IOrchestrationExecutorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var orchestrationExecutorProperty = new OrchestrationExecutorProperty {
Lambda = "lambda"
};
Synopsis
Constructors
| OrchestrationExecutorProperty() | The structure of the executor invoking the actions in custom orchestration. |
Properties
| Lambda | The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action. |
Constructors
OrchestrationExecutorProperty()
The structure of the executor invoking the actions in custom orchestration.
public OrchestrationExecutorProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Bedrock;
var orchestrationExecutorProperty = new OrchestrationExecutorProperty {
Lambda = "lambda"
};
Properties
Lambda
The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.
public string Lambda { get; set; }