Interface PreviewPrivacyImpactResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CleanRoomsResponse.Builder,CopyableBuilder<PreviewPrivacyImpactResponse.Builder,PreviewPrivacyImpactResponse>,SdkBuilder<PreviewPrivacyImpactResponse.Builder,PreviewPrivacyImpactResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PreviewPrivacyImpactResponse
public static interface PreviewPrivacyImpactResponse.Builder extends CleanRoomsResponse.Builder, SdkPojo, CopyableBuilder<PreviewPrivacyImpactResponse.Builder,PreviewPrivacyImpactResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PreviewPrivacyImpactResponse.BuilderprivacyImpact(Consumer<PrivacyImpact.Builder> privacyImpact)An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.PreviewPrivacyImpactResponse.BuilderprivacyImpact(PrivacyImpact privacyImpact)An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters.-
Methods inherited from interface software.amazon.awssdk.services.cleanrooms.model.CleanRoomsResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
privacyImpact
PreviewPrivacyImpactResponse.Builder privacyImpact(PrivacyImpact privacyImpact)
An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters. This does not change the privacy budget.
- Parameters:
privacyImpact- An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters. This does not change the privacy budget.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
privacyImpact
default PreviewPrivacyImpactResponse.Builder privacyImpact(Consumer<PrivacyImpact.Builder> privacyImpact)
An estimate of the number of aggregation functions that the member who can query can run given the epsilon and noise parameters. This does not change the privacy budget.
This is a convenience method that creates an instance of thePrivacyImpact.Builderavoiding the need to create one manually viaPrivacyImpact.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprivacyImpact(PrivacyImpact).- Parameters:
privacyImpact- a consumer that will call methods onPrivacyImpact.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
privacyImpact(PrivacyImpact)
-
-