Interface DifferentialPrivacySensitivityParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DifferentialPrivacySensitivityParameters.Builder,DifferentialPrivacySensitivityParameters>,SdkBuilder<DifferentialPrivacySensitivityParameters.Builder,DifferentialPrivacySensitivityParameters>,SdkPojo
- Enclosing class:
- DifferentialPrivacySensitivityParameters
public static interface DifferentialPrivacySensitivityParameters.Builder extends SdkPojo, CopyableBuilder<DifferentialPrivacySensitivityParameters.Builder,DifferentialPrivacySensitivityParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DifferentialPrivacySensitivityParameters.BuilderaggregationExpression(String aggregationExpression)The aggregation expression that was run.DifferentialPrivacySensitivityParameters.BuilderaggregationType(String aggregationType)The type of aggregation function that was run.DifferentialPrivacySensitivityParameters.BuilderaggregationType(DifferentialPrivacyAggregationType aggregationType)The type of aggregation function that was run.DifferentialPrivacySensitivityParameters.BuildermaxColumnValue(Float maxColumnValue)The upper bound of the aggregation expression.DifferentialPrivacySensitivityParameters.BuilderminColumnValue(Float minColumnValue)The lower bound of the aggregation expression.DifferentialPrivacySensitivityParameters.BuilderuserContributionLimit(Integer userContributionLimit)The maximum number of rows contributed by a user in a SQL query.-
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
-
aggregationType
DifferentialPrivacySensitivityParameters.Builder aggregationType(String aggregationType)
The type of aggregation function that was run.
- Parameters:
aggregationType- The type of aggregation function that was run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DifferentialPrivacyAggregationType,DifferentialPrivacyAggregationType
-
aggregationType
DifferentialPrivacySensitivityParameters.Builder aggregationType(DifferentialPrivacyAggregationType aggregationType)
The type of aggregation function that was run.
- Parameters:
aggregationType- The type of aggregation function that was run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DifferentialPrivacyAggregationType,DifferentialPrivacyAggregationType
-
aggregationExpression
DifferentialPrivacySensitivityParameters.Builder aggregationExpression(String aggregationExpression)
The aggregation expression that was run.
- Parameters:
aggregationExpression- The aggregation expression that was run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userContributionLimit
DifferentialPrivacySensitivityParameters.Builder userContributionLimit(Integer userContributionLimit)
The maximum number of rows contributed by a user in a SQL query.
- Parameters:
userContributionLimit- The maximum number of rows contributed by a user in a SQL query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minColumnValue
DifferentialPrivacySensitivityParameters.Builder minColumnValue(Float minColumnValue)
The lower bound of the aggregation expression.
- Parameters:
minColumnValue- The lower bound of the aggregation expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxColumnValue
DifferentialPrivacySensitivityParameters.Builder maxColumnValue(Float maxColumnValue)
The upper bound of the aggregation expression.
- Parameters:
maxColumnValue- The upper bound of the aggregation expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-