import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListPrivacyBudgetsInput, ListPrivacyBudgetsOutput } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListPrivacyBudgetsCommand}. */ export interface ListPrivacyBudgetsCommandInput extends ListPrivacyBudgetsInput { } /** * @public * * The output of {@link ListPrivacyBudgetsCommand}. */ export interface ListPrivacyBudgetsCommandOutput extends ListPrivacyBudgetsOutput, __MetadataBearer { } declare const ListPrivacyBudgetsCommand_base: { new (input: ListPrivacyBudgetsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListPrivacyBudgetsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns detailed information about the privacy budgets in a specified membership.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, ListPrivacyBudgetsCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, ListPrivacyBudgetsCommand } = 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 = { // ListPrivacyBudgetsInput * membershipIdentifier: "STRING_VALUE", // required * privacyBudgetType: "DIFFERENTIAL_PRIVACY" || "ACCESS_BUDGET", // required * nextToken: "STRING_VALUE", * maxResults: Number("int"), * accessBudgetResourceArn: "STRING_VALUE", * }; * const command = new ListPrivacyBudgetsCommand(input); * const response = await client.send(command); * // { // ListPrivacyBudgetsOutput * // privacyBudgetSummaries: [ // PrivacyBudgetSummaryList // required * // { // PrivacyBudgetSummary * // id: "STRING_VALUE", // required * // privacyBudgetTemplateId: "STRING_VALUE", // required * // privacyBudgetTemplateArn: "STRING_VALUE", // required * // membershipId: "STRING_VALUE", // required * // membershipArn: "STRING_VALUE", // required * // collaborationId: "STRING_VALUE", // required * // collaborationArn: "STRING_VALUE", // required * // type: "DIFFERENTIAL_PRIVACY" || "ACCESS_BUDGET", // required * // createTime: new Date("TIMESTAMP"), // required * // updateTime: new Date("TIMESTAMP"), // required * // budget: { // PrivacyBudget Union: only one key present * // differentialPrivacy: { // DifferentialPrivacyPrivacyBudget * // aggregations: [ // DifferentialPrivacyPrivacyBudgetAggregationList // required * // { // DifferentialPrivacyPrivacyBudgetAggregation * // type: "AVG" || "COUNT" || "COUNT_DISTINCT" || "SUM" || "STDDEV", // required * // maxCount: Number("int"), // required * // remainingCount: Number("int"), // required * // }, * // ], * // epsilon: Number("int"), // required * // }, * // accessBudget: { // AccessBudget * // resourceArn: "STRING_VALUE", // required * // details: [ // AccessBudgetDetailsList // required * // { // AccessBudgetDetails * // startTime: new Date("TIMESTAMP"), // required * // endTime: new Date("TIMESTAMP"), * // remainingBudget: Number("int"), // required * // budget: Number("int"), // required * // budgetType: "CALENDAR_DAY" || "CALENDAR_MONTH" || "CALENDAR_WEEK" || "LIFETIME", // required * // autoRefresh: "ENABLED" || "DISABLED", * // }, * // ], * // aggregateRemainingBudget: Number("int"), // required * // }, * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPrivacyBudgetsCommandInput - {@link ListPrivacyBudgetsCommandInput} * @returns {@link ListPrivacyBudgetsCommandOutput} * @see {@link ListPrivacyBudgetsCommandInput} for command's `input` shape. * @see {@link ListPrivacyBudgetsCommandOutput} 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 ListPrivacyBudgetsCommand extends ListPrivacyBudgetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPrivacyBudgetsInput; output: ListPrivacyBudgetsOutput; }; sdk: { input: ListPrivacyBudgetsCommandInput; output: ListPrivacyBudgetsCommandOutput; }; }; }