Interface FlowInput.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FlowInput.Builder,
,FlowInput> SdkBuilder<FlowInput.Builder,
,FlowInput> SdkPojo
- Enclosing class:
FlowInput
public static interface FlowInput.Builder
extends SdkPojo, CopyableBuilder<FlowInput.Builder,FlowInput>
-
Method Summary
Modifier and TypeMethodDescriptiondefault FlowInput.Builder
content
(Consumer<FlowInputContent.Builder> content) Contains information about an input into the flow.content
(FlowInputContent content) Contains information about an input into the flow.A name for the input of the flow input node.nodeOutputName
(String nodeOutputName) A name for the output of the flow input 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, sdkFields
-
Method Details
-
content
Contains information about an input into the flow.
- Parameters:
content
- Contains information about an input into the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
Contains information about an input into the flow.
This is a convenience method that creates an instance of theFlowInputContent.Builder
avoiding the need to create one manually viaFlowInputContent.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocontent(FlowInputContent)
.- Parameters:
content
- a consumer that will call methods onFlowInputContent.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
nodeName
A name for the input of the flow input node.
- Parameters:
nodeName
- A name for the input of the flow input node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeOutputName
A name for the output of the flow input node.
- Parameters:
nodeOutputName
- A name for the output of the flow input node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-