Interface CfnFlowVersionPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Contains configurations for an inline code node in your flow.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnFlowVersionPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Syntax (vb)
Public Interface CfnFlowVersionPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Remarks
Inline code nodes let you write and execute code directly within your flow, enabling data transformations, custom logic, and integrations without needing an external Lambda function.
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.Mixins.Preview.AWS.Bedrock.Mixins;
var inlineCodeFlowNodeConfigurationProperty = new InlineCodeFlowNodeConfigurationProperty {
Code = "code",
Language = "language"
};
Synopsis
Properties
| Code | The code that's executed in your inline code node. |
| Language | The programming language used by your inline code node. |
Properties
Code
The code that's executed in your inline code node.
string? Code { get; }
Property Value
Remarks
The code can access input data from previous nodes in the flow, perform operations on that data, and produce output that can be used by other nodes in your flow.
The code must be valid in the programming language that you specify.
Language
The programming language used by your inline code node.
string? Language { get; }
Property Value
Remarks
The code must be valid in the programming language that you specify. Currently, only Python 3 ( Python_3 ) is supported.