@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class RecipeStep extends Object implements Serializable, Cloneable, StructuredPojo
Represents a single step from a DataBrew recipe to be performed.
Constructor and Description |
---|
RecipeStep() |
Modifier and Type | Method and Description |
---|---|
RecipeStep |
clone() |
boolean |
equals(Object obj) |
RecipeAction |
getAction()
The particular action to be performed in the recipe step.
|
List<ConditionExpression> |
getConditionExpressions()
One or more conditions that must be met for the recipe step to succeed.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setAction(RecipeAction action)
The particular action to be performed in the recipe step.
|
void |
setConditionExpressions(Collection<ConditionExpression> conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
String |
toString()
Returns a string representation of this object.
|
RecipeStep |
withAction(RecipeAction action)
The particular action to be performed in the recipe step.
|
RecipeStep |
withConditionExpressions(Collection<ConditionExpression> conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
RecipeStep |
withConditionExpressions(ConditionExpression... conditionExpressions)
One or more conditions that must be met for the recipe step to succeed.
|
public void setAction(RecipeAction action)
The particular action to be performed in the recipe step.
action
- The particular action to be performed in the recipe step.public RecipeAction getAction()
The particular action to be performed in the recipe step.
public RecipeStep withAction(RecipeAction action)
The particular action to be performed in the recipe step.
action
- The particular action to be performed in the recipe step.public List<ConditionExpression> getConditionExpressions()
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.
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.
public void setConditionExpressions(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.
public RecipeStep withConditionExpressions(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.
NOTE: This method appends the values to the existing list (if any). Use
setConditionExpressions(java.util.Collection)
or withConditionExpressions(java.util.Collection)
if you want to override the existing values.
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.
public RecipeStep withConditionExpressions(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.
public String toString()
toString
in class Object
Object.toString()
public RecipeStep clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.