import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListProtectedQueriesInput, ListProtectedQueriesOutput } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListProtectedQueriesCommand}. */ export interface ListProtectedQueriesCommandInput extends ListProtectedQueriesInput { } /** * @public * * The output of {@link ListProtectedQueriesCommand}. */ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesOutput, __MetadataBearer { } declare const ListProtectedQueriesCommand_base: { new (input: ListProtectedQueriesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListProtectedQueriesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists protected queries, sorted by the most recent query.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, ListProtectedQueriesCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, ListProtectedQueriesCommand } = 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 = { // ListProtectedQueriesInput * membershipIdentifier: "STRING_VALUE", // required * status: "STRING_VALUE", * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListProtectedQueriesCommand(input); * const response = await client.send(command); * // { // ListProtectedQueriesOutput * // nextToken: "STRING_VALUE", * // protectedQueries: [ // ProtectedQuerySummaryList // required * // { // ProtectedQuerySummary * // id: "STRING_VALUE", // required * // membershipId: "STRING_VALUE", // required * // membershipArn: "STRING_VALUE", // required * // createTime: new Date("TIMESTAMP"), // required * // status: "STRING_VALUE", // required * // receiverConfigurations: [ // ReceiverConfigurationsList // required * // { // ReceiverConfiguration * // analysisType: "DIRECT_ANALYSIS" || "ADDITIONAL_ANALYSIS", // required * // configurationDetails: { // ConfigurationDetails Union: only one key present * // directAnalysisConfigurationDetails: { // DirectAnalysisConfigurationDetails * // receiverAccountIds: [ // ReceiverAccountIds * // "STRING_VALUE", * // ], * // }, * // }, * // }, * // ], * // queryComputePayerAccountId: "STRING_VALUE", * // intermediateTableConfiguration: { // IntermediateTableOutputConfiguration * // id: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // }, * // }, * // ], * // }; * * ``` * * @param ListProtectedQueriesCommandInput - {@link ListProtectedQueriesCommandInput} * @returns {@link ListProtectedQueriesCommandOutput} * @see {@link ListProtectedQueriesCommandInput} for command's `input` shape. * @see {@link ListProtectedQueriesCommandOutput} 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 ListProtectedQueriesCommand extends ListProtectedQueriesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListProtectedQueriesInput; output: ListProtectedQueriesOutput; }; sdk: { input: ListProtectedQueriesCommandInput; output: ListProtectedQueriesCommandOutput; }; }; }