Interface FlowOutputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowOutputEvent.Builder,FlowOutputEvent>,SdkBuilder<FlowOutputEvent.Builder,FlowOutputEvent>,SdkPojo
- All Known Subinterfaces:
DefaultFlowOutputEvent.Builder
- All Known Implementing Classes:
FlowOutputEvent.BuilderImpl
- Enclosing class:
- FlowOutputEvent
@Mutable @NotThreadSafe public static interface FlowOutputEvent.Builder extends SdkPojo, CopyableBuilder<FlowOutputEvent.Builder,FlowOutputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FlowOutputEvent.Buildercontent(Consumer<FlowOutputContent.Builder> content)The content in the output.FlowOutputEvent.Buildercontent(FlowOutputContent content)The content in the output.FlowOutputEvent.BuildernodeName(String nodeName)The name of the flow output node that the output is from.FlowOutputEvent.BuildernodeType(String nodeType)The type of the node that the output is from.FlowOutputEvent.BuildernodeType(NodeType nodeType)The type of the node that the output is from.-
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
-
content
FlowOutputEvent.Builder content(FlowOutputContent content)
The content in the output.
- Parameters:
content- The content in the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
default FlowOutputEvent.Builder content(Consumer<FlowOutputContent.Builder> content)
The content in the output.
This is a convenience method that creates an instance of theFlowOutputContent.Builderavoiding the need to create one manually viaFlowOutputContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontent(FlowOutputContent).- Parameters:
content- a consumer that will call methods onFlowOutputContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
content(FlowOutputContent)
-
nodeName
FlowOutputEvent.Builder nodeName(String nodeName)
The name of the flow output node that the output is from.
- Parameters:
nodeName- The name of the flow output node that the output is from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeType
FlowOutputEvent.Builder nodeType(String nodeType)
The type of the node that the output is from.
-
nodeType
FlowOutputEvent.Builder nodeType(NodeType nodeType)
The type of the node that the output is from.
-
-