Interface ConditionFlowNodeConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ConditionFlowNodeConfiguration.Builder,
,ConditionFlowNodeConfiguration> SdkBuilder<ConditionFlowNodeConfiguration.Builder,
,ConditionFlowNodeConfiguration> SdkPojo
- Enclosing class:
ConditionFlowNodeConfiguration
public static interface ConditionFlowNodeConfiguration.Builder
extends SdkPojo, CopyableBuilder<ConditionFlowNodeConfiguration.Builder,ConditionFlowNodeConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionconditions
(Collection<FlowCondition> conditions) An array of conditions.conditions
(Consumer<FlowCondition.Builder>... conditions) An array of conditions.conditions
(FlowCondition... conditions) An array of conditions.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
-
conditions
An array of conditions. Each member contains the name of a condition and an expression that defines the condition.
- Parameters:
conditions
- An array of conditions. Each member contains the name of a condition and an expression that defines the condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conditions
An array of conditions. Each member contains the name of a condition and an expression that defines the condition.
- Parameters:
conditions
- An array of conditions. Each member contains the name of a condition and an expression that defines the condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conditions
An array of conditions. Each member contains the name of a condition and an expression that defines the condition.
This is a convenience method that creates an instance of theFlowCondition.Builder
avoiding the need to create one manually viaFlowCondition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconditions(List<FlowCondition>)
.- Parameters:
conditions
- a consumer that will call methods onFlowCondition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-