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 { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListBlueprintsCommand}. */ export interface ListBlueprintsCommandInput extends ListBlueprintsRequest { } /** * @public * * The output of {@link ListBlueprintsCommand}. */ export interface ListBlueprintsCommandOutput extends ListBlueprintsResponse, __MetadataBearer { } declare const ListBlueprintsCommand_base: { new (input: ListBlueprintsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListBlueprintsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Lists all the blueprint names in an account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListBlueprintsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListBlueprintsCommand } = 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 = { // ListBlueprintsRequest * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * Tags: { // TagsMap * "": "STRING_VALUE", * }, * }; * const command = new ListBlueprintsCommand(input); * const response = await client.send(command); * // { // ListBlueprintsResponse * // Blueprints: [ // BlueprintNames * // "STRING_VALUE", * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListBlueprintsCommandInput - {@link ListBlueprintsCommandInput} * @returns {@link ListBlueprintsCommandOutput} * @see {@link ListBlueprintsCommandInput} for command's `input` shape. * @see {@link ListBlueprintsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListBlueprintsCommand extends ListBlueprintsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListBlueprintsRequest; output: ListBlueprintsResponse; }; sdk: { input: ListBlueprintsCommandInput; output: ListBlueprintsCommandOutput; }; }; }