Interface InlineCodeFlowNodeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InlineCodeFlowNodeConfiguration.Builder,InlineCodeFlowNodeConfiguration>,SdkBuilder<InlineCodeFlowNodeConfiguration.Builder,InlineCodeFlowNodeConfiguration>,SdkPojo
- Enclosing class:
- InlineCodeFlowNodeConfiguration
@Mutable @NotThreadSafe public static interface InlineCodeFlowNodeConfiguration.Builder extends SdkPojo, CopyableBuilder<InlineCodeFlowNodeConfiguration.Builder,InlineCodeFlowNodeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InlineCodeFlowNodeConfiguration.Buildercode(String code)The code that's executed in your inline code node.InlineCodeFlowNodeConfiguration.Builderlanguage(String language)The programming language used by your inline code node.InlineCodeFlowNodeConfiguration.Builderlanguage(SupportedLanguages language)The programming language used by your inline code node.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
code
InlineCodeFlowNodeConfiguration.Builder code(String code)
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
languagethat you specify.- Parameters:
code- 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
languagethat you specify.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
language
InlineCodeFlowNodeConfiguration.Builder language(String language)
The programming language used by your inline code node.
The code must be valid in the programming
languagethat you specify. Currently, only Python 3 (Python_3) is supported.- Parameters:
language- The programming language used by your inline code node.The code must be valid in the programming
languagethat you specify. Currently, only Python 3 (Python_3) is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SupportedLanguages,SupportedLanguages
-
language
InlineCodeFlowNodeConfiguration.Builder language(SupportedLanguages language)
The programming language used by your inline code node.
The code must be valid in the programming
languagethat you specify. Currently, only Python 3 (Python_3) is supported.- Parameters:
language- The programming language used by your inline code node.The code must be valid in the programming
languagethat you specify. Currently, only Python 3 (Python_3) is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SupportedLanguages,SupportedLanguages
-
-