Interface ComparisonControls.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ComparisonControls.Builder,,ComparisonControls> SdkBuilder<ComparisonControls.Builder,,ComparisonControls> SdkPojo
- Enclosing class:
ComparisonControls
-
Method Summary
Modifier and TypeMethodDescriptionallowedColumnComparisonColumns(String... allowedColumnComparisonColumns) The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function.allowedColumnComparisonColumns(Collection<String> allowedColumnComparisonColumns) The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function.allowedLiteralComparisonColumns(String... allowedLiteralComparisonColumns) The columns that a query can compare to literal values, for example, in a WHERE clause.allowedLiteralComparisonColumns(Collection<String> allowedLiteralComparisonColumns) The columns that a query can compare to literal values, for example, in a WHERE clause.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
-
allowedLiteralComparisonColumns
ComparisonControls.Builder allowedLiteralComparisonColumns(Collection<String> allowedLiteralComparisonColumns) The columns that a query can compare to literal values, for example, in a WHERE clause. Clean Rooms rejects a query that compares any other column to a literal value. Specify an empty list to block literal comparison on every column. You can't specify a column that you also use as an identity column in an aggregation threshold.
- Parameters:
allowedLiteralComparisonColumns- The columns that a query can compare to literal values, for example, in a WHERE clause. Clean Rooms rejects a query that compares any other column to a literal value. Specify an empty list to block literal comparison on every column. You can't specify a column that you also use as an identity column in an aggregation threshold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedLiteralComparisonColumns
ComparisonControls.Builder allowedLiteralComparisonColumns(String... allowedLiteralComparisonColumns) The columns that a query can compare to literal values, for example, in a WHERE clause. Clean Rooms rejects a query that compares any other column to a literal value. Specify an empty list to block literal comparison on every column. You can't specify a column that you also use as an identity column in an aggregation threshold.
- Parameters:
allowedLiteralComparisonColumns- The columns that a query can compare to literal values, for example, in a WHERE clause. Clean Rooms rejects a query that compares any other column to a literal value. Specify an empty list to block literal comparison on every column. You can't specify a column that you also use as an identity column in an aggregation threshold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedColumnComparisonColumns
ComparisonControls.Builder allowedColumnComparisonColumns(Collection<String> allowedColumnComparisonColumns) The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function. Clean Rooms rejects a query that uses any other column in a column-to-column comparison. Specify an empty list to block column-to-column comparison on every column.
- Parameters:
allowedColumnComparisonColumns- The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function. Clean Rooms rejects a query that uses any other column in a column-to-column comparison. Specify an empty list to block column-to-column comparison on every column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedColumnComparisonColumns
The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function. Clean Rooms rejects a query that uses any other column in a column-to-column comparison. Specify an empty list to block column-to-column comparison on every column.
- Parameters:
allowedColumnComparisonColumns- The columns that a query can compare to another column, for example, in a join, a WHERE clause, a GROUP BY clause, or a window function. Clean Rooms rejects a query that uses any other column in a column-to-column comparison. Specify an empty list to block column-to-column comparison on every column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-