Interface NotInExpression.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NotInExpression.Builder,NotInExpression>,SdkBuilder<NotInExpression.Builder,NotInExpression>,SdkPojo
- Enclosing class:
- NotInExpression
public static interface NotInExpression.Builder extends SdkPojo, CopyableBuilder<NotInExpression.Builder,NotInExpression>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotInExpression.BuildercolumnName(String columnName)The name of the column.NotInExpression.Buildervalues(String... values)The value that might not be in the expression.NotInExpression.Buildervalues(Collection<String> values)The value that might not be in the 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, sdkFields
-
-
-
-
Method Detail
-
columnName
NotInExpression.Builder columnName(String columnName)
The name of the column.
- Parameters:
columnName- The name of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
NotInExpression.Builder values(Collection<String> values)
The value that might not be in the expression.
- Parameters:
values- The value that might not be in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
NotInExpression.Builder values(String... values)
The value that might not be in the expression.
- Parameters:
values- The value that might not be in the expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-