import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSchemasInput, ListSchemasOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListSchemasCommand}. */ export interface ListSchemasCommandInput extends ListSchemasInput { } /** * @public * * The output of {@link ListSchemasCommand}. */ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataBearer { } declare const ListSchemasCommand_base: { new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the schemas for relations within a collaboration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, ListSchemasCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, ListSchemasCommand } = 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 = { // ListSchemasInput * collaborationIdentifier: "STRING_VALUE", // required * schemaType: "TABLE" || "ID_MAPPING_TABLE" || "INTERMEDIATE_TABLE", * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListSchemasCommand(input); * const response = await client.send(command); * // { // ListSchemasOutput * // schemaSummaries: [ // SchemaSummaryList // required * // { // SchemaSummary * // name: "STRING_VALUE", // required * // type: "TABLE" || "ID_MAPPING_TABLE" || "INTERMEDIATE_TABLE", // required * // creatorAccountId: "STRING_VALUE", // required * // createTime: new Date("TIMESTAMP"), // required * // updateTime: new Date("TIMESTAMP"), // required * // collaborationId: "STRING_VALUE", // required * // collaborationArn: "STRING_VALUE", // required * // analysisRuleTypes: [ // AnalysisRuleTypeList // required * // "AGGREGATION" || "LIST" || "CUSTOM" || "ID_MAPPING_TABLE", * // ], * // analysisMethod: "DIRECT_QUERY" || "DIRECT_JOB" || "MULTIPLE", * // resourceArn: "STRING_VALUE", * // selectedAnalysisMethods: [ // SelectedAnalysisMethods * // "DIRECT_QUERY" || "DIRECT_JOB", * // ], * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSchemasCommandInput - {@link ListSchemasCommandInput} * @returns {@link ListSchemasCommandOutput} * @see {@link ListSchemasCommandInput} for command's `input` shape. * @see {@link ListSchemasCommandOutput} 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 ListSchemasCommand extends ListSchemasCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSchemasInput; output: ListSchemasOutput; }; sdk: { input: ListSchemasCommandInput; output: ListSchemasCommandOutput; }; }; }