import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { PreviewPrivacyImpactInput, PreviewPrivacyImpactOutput } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link PreviewPrivacyImpactCommand}. */ export interface PreviewPrivacyImpactCommandInput extends PreviewPrivacyImpactInput { } /** * @public * * The output of {@link PreviewPrivacyImpactCommand}. */ export interface PreviewPrivacyImpactCommandOutput extends PreviewPrivacyImpactOutput, __MetadataBearer { } declare const PreviewPrivacyImpactCommand_base: { new (input: PreviewPrivacyImpactCommandInput): import("@smithy/core/client").CommandImpl; new (input: PreviewPrivacyImpactCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

An estimate of the number of aggregation functions that the member who can query can run given epsilon and noise parameters.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, PreviewPrivacyImpactCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, PreviewPrivacyImpactCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms"; * const config = {}; // type is CleanRoomsClientConfig * const client = new CleanRoomsClient(config); * const input = { // PreviewPrivacyImpactInput * membershipIdentifier: "STRING_VALUE", // required * parameters: { // PreviewPrivacyImpactParametersInput Union: only one key present * differentialPrivacy: { // DifferentialPrivacyPreviewParametersInput * epsilon: Number("int"), // required * usersNoisePerQuery: Number("int"), // required * }, * }, * }; * const command = new PreviewPrivacyImpactCommand(input); * const response = await client.send(command); * // { // PreviewPrivacyImpactOutput * // privacyImpact: { // PrivacyImpact Union: only one key present * // differentialPrivacy: { // DifferentialPrivacyPrivacyImpact * // aggregations: [ // DifferentialPrivacyPreviewAggregationList // required * // { // DifferentialPrivacyPreviewAggregation * // type: "AVG" || "COUNT" || "COUNT_DISTINCT" || "SUM" || "STDDEV", // required * // maxCount: Number("int"), // required * // }, * // ], * // }, * // }, * // }; * * ``` * * @param PreviewPrivacyImpactCommandInput - {@link PreviewPrivacyImpactCommandInput} * @returns {@link PreviewPrivacyImpactCommandOutput} * @see {@link PreviewPrivacyImpactCommandInput} for command's `input` shape. * @see {@link PreviewPrivacyImpactCommandOutput} for command's `response` shape. * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Caller does not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error during processing of request.

* * @throws {@link ResourceNotFoundException} (client fault) *

Request references a resource which does not exist.

* * @throws {@link ThrottlingException} (client fault) *

Request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the specified constraints.

* * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* * * @public */ export declare class PreviewPrivacyImpactCommand extends PreviewPrivacyImpactCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: PreviewPrivacyImpactInput; output: PreviewPrivacyImpactOutput; }; sdk: { input: PreviewPrivacyImpactCommandInput; output: PreviewPrivacyImpactCommandOutput; }; }; }