Interface FlowOutputField.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FlowOutputField.Builder,
,FlowOutputField> SdkBuilder<FlowOutputField.Builder,
,FlowOutputField> SdkPojo
- Enclosing class:
FlowOutputField
@Mutable
@NotThreadSafe
public static interface FlowOutputField.Builder
extends SdkPojo, CopyableBuilder<FlowOutputField.Builder,FlowOutputField>
-
Method Summary
Modifier and TypeMethodDescriptiondefault FlowOutputField.Builder
content
(Consumer<FlowExecutionContent.Builder> content) The content of the output field, which can contain text or structured data.content
(FlowExecutionContent content) The content of the output field, which can contain text or structured data.The name of the output field as defined in the flow's output schema.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 Details
-
content
The content of the output field, which can contain text or structured data.
- Parameters:
content
- The content of the output field, which can contain text or structured data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
The content of the output field, which can contain text or structured data.
This is a convenience method that creates an instance of theFlowExecutionContent.Builder
avoiding the need to create one manually viaFlowExecutionContent.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocontent(FlowExecutionContent)
.- Parameters:
content
- a consumer that will call methods onFlowExecutionContent.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
name
The name of the output field as defined in the flow's output schema.
- Parameters:
name
- The name of the output field as defined in the flow's output schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-