Interface ConditionExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConditionExpression.Builder,ConditionExpression>,SdkBuilder<ConditionExpression.Builder,ConditionExpression>,SdkPojo
- Enclosing class:
- ConditionExpression
public static interface ConditionExpression.Builder extends SdkPojo, CopyableBuilder<ConditionExpression.Builder,ConditionExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConditionExpression.Buildercondition(String condition)The condition of the condition expression.ConditionExpression.BuildertargetColumn(String targetColumn)The target column of the condition expressions.ConditionExpression.Buildervalue(String value)The value of the condition expression.-
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
-
condition
ConditionExpression.Builder condition(String condition)
The condition of the condition expression.
- Parameters:
condition- The condition of the condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ConditionExpression.Builder value(String value)
The value of the condition expression.
- Parameters:
value- The value of the condition expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetColumn
ConditionExpression.Builder targetColumn(String targetColumn)
The target column of the condition expressions.
- Parameters:
targetColumn- The target column of the condition expressions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-