import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { ListSchemasInput, ListSchemasResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSchemasCommand}. */ export interface ListSchemasCommandInput extends ListSchemasInput { } /** * @public * * The output of {@link ListSchemasCommand}. */ export interface ListSchemasCommandOutput extends ListSchemasResponse, __MetadataBearer { } declare const ListSchemasCommand_base: { new (input: ListSchemasCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListSchemasCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns a list of schemas with minimal details. Schemas in Deleting status will not be included in the results. Empty results will be returned if there are no schemas available.

*

When the RegistryId is not provided, all the schemas across registries will be part of the API response.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListSchemasCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListSchemasCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // ListSchemasInput * RegistryId: { // RegistryId * RegistryName: "STRING_VALUE", * RegistryArn: "STRING_VALUE", * }, * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListSchemasCommand(input); * const response = await client.send(command); * // { // ListSchemasResponse * // Schemas: [ // SchemaListDefinition * // { // SchemaListItem * // RegistryName: "STRING_VALUE", * // SchemaName: "STRING_VALUE", * // SchemaArn: "STRING_VALUE", * // Description: "STRING_VALUE", * // SchemaStatus: "AVAILABLE" || "PENDING" || "DELETING", * // CreatedTime: "STRING_VALUE", * // UpdatedTime: "STRING_VALUE", * // }, * // ], * // 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 GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to a resource was denied.

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

A specified entity does not exist

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

An internal service error occurred.

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

The input provided was not valid.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListSchemasCommand extends ListSchemasCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSchemasInput; output: ListSchemasResponse; }; sdk: { input: ListSchemasCommandInput; output: ListSchemasCommandOutput; }; }; }