Class CfnAgentPropsMixin.OrchestrationExecutorProperty
The structure of the executor invoking the actions in custom orchestration.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAgentPropsMixin.OrchestrationExecutorProperty : CfnAgentPropsMixin.IOrchestrationExecutorProperty
Syntax (vb)
Public Class CfnAgentPropsMixin.OrchestrationExecutorProperty Implements CfnAgentPropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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; }