public static interface RecipeStep.Builder extends SdkPojo, CopyableBuilder<RecipeStep.Builder,RecipeStep>
| Modifier and Type | Method and Description |
|---|---|
default RecipeStep.Builder |
action(Consumer<RecipeAction.Builder> action)
The particular action to be performed in the recipe step.
|
RecipeStep.Builder |
action(RecipeAction action)
The particular action to be performed in the recipe step.
|
RecipeStep.Builder |
conditionExpressions(Collection<ConditionExpression> conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
RecipeStep.Builder |
conditionExpressions(ConditionExpression... conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
RecipeStep.Builder |
conditionExpressions(Consumer<ConditionExpression.Builder>... conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildRecipeStep.Builder action(RecipeAction action)
The particular action to be performed in the recipe step.
action - The particular action to be performed in the recipe step.default RecipeStep.Builder action(Consumer<RecipeAction.Builder> action)
The particular action to be performed in the recipe step.
This is a convenience method that creates an instance of theRecipeAction.Builder avoiding the need
to create one manually via RecipeAction.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to action(RecipeAction).
action - a consumer that will call methods on RecipeAction.Builderaction(RecipeAction)RecipeStep.Builder conditionExpressions(Collection<ConditionExpression> conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
conditionExpressions - One or more conditions that must be met for the recipe step to succeed. All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
RecipeStep.Builder conditionExpressions(ConditionExpression... conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
conditionExpressions - One or more conditions that must be met for the recipe step to succeed. All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
RecipeStep.Builder conditionExpressions(Consumer<ConditionExpression.Builder>... conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
ConditionExpression.Builder avoiding the need to
create one manually via ConditionExpression.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #conditionExpressions(List.
conditionExpressions - a consumer that will call methods on
ConditionExpression.Builder#conditionExpressions(java.util.Collection) Copyright © 2023. All rights reserved.