Interface CfnFlow.InlineCodeFlowNodeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.InlineCodeFlowNodeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.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: