Interface QueryConstraint.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<QueryConstraint.Builder,,QueryConstraint> SdkBuilder<QueryConstraint.Builder,,QueryConstraint> SdkPojo
- Enclosing class:
 QueryConstraint
@Mutable
@NotThreadSafe
public static interface QueryConstraint.Builder
extends SdkPojo, CopyableBuilder<QueryConstraint.Builder,QueryConstraint> 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault QueryConstraint.BuilderrequireOverlap(Consumer<QueryConstraintRequireOverlap.Builder> requireOverlap) An array of column names that specifies which columns are required in the JOIN statement.requireOverlap(QueryConstraintRequireOverlap requireOverlap) An array of column names that specifies which columns are required in the JOIN statement.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
requireOverlap
An array of column names that specifies which columns are required in the JOIN statement.
- Parameters:
 requireOverlap- An array of column names that specifies which columns are required in the JOIN statement.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
requireOverlap
default QueryConstraint.Builder requireOverlap(Consumer<QueryConstraintRequireOverlap.Builder> requireOverlap) An array of column names that specifies which columns are required in the JOIN statement.
This is a convenience method that creates an instance of theQueryConstraintRequireOverlap.Builderavoiding the need to create one manually viaQueryConstraintRequireOverlap.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torequireOverlap(QueryConstraintRequireOverlap).- Parameters:
 requireOverlap- a consumer that will call methods onQueryConstraintRequireOverlap.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -