Interface CfnFlowVersion.InlineCodeFlowNodeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.InlineCodeFlowNodeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.InlineCodeFlowNodeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for an inline code node in your flow.
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.bedrock.*; InlineCodeFlowNodeConfigurationProperty inlineCodeFlowNodeConfigurationProperty = InlineCodeFlowNodeConfigurationProperty.builder() .code("code") .language("language") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowVersion.InlineCodeFlowNodeConfigurationProperty
static final class
An implementation forCfnFlowVersion.InlineCodeFlowNodeConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCode
The code that's executed in your inline code node.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.- See Also:
-
getLanguage
The programming language used by your inline code node.The code must be valid in the programming
language
that you specify. Currently, only Python 3 (Python_3
) is supported.- See Also:
-
builder
-