Class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty
Contains configurations for an inline code node in your flow.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty : CfnFlowPropsMixin.IInlineCodeFlowNodeConfigurationProperty
Syntax (vb)
Public Class CfnFlowPropsMixin.InlineCodeFlowNodeConfigurationProperty Implements CfnFlowPropsMixin.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
Constructors
| InlineCodeFlowNodeConfigurationProperty() | Contains configurations for an inline code node in your flow. |
Properties
| Code | The code that's executed in your inline code node. |
| Language | The programming language used by your inline code node. |
Constructors
InlineCodeFlowNodeConfigurationProperty()
Contains configurations for an inline code node in your flow.
public InlineCodeFlowNodeConfigurationProperty()
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"
};
Properties
Code
The code that's executed in your inline code node.
public string? Code { get; set; }
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.
public string? Language { get; set; }
Property Value
Remarks
The code must be valid in the programming language that you specify. Currently, only Python 3 ( Python_3 ) is supported.