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 { BatchGetBlueprintsRequest, BatchGetBlueprintsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link BatchGetBlueprintsCommand}. */ export interface BatchGetBlueprintsCommandInput extends BatchGetBlueprintsRequest { } /** * @public * * The output of {@link BatchGetBlueprintsCommand}. */ export interface BatchGetBlueprintsCommandOutput extends BatchGetBlueprintsResponse, __MetadataBearer { } declare const BatchGetBlueprintsCommand_base: { new (input: BatchGetBlueprintsCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetBlueprintsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves information about a list of blueprints.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, BatchGetBlueprintsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, BatchGetBlueprintsCommand } = 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 = { // BatchGetBlueprintsRequest * Names: [ // BatchGetBlueprintNames // required * "STRING_VALUE", * ], * IncludeBlueprint: true || false, * IncludeParameterSpec: true || false, * }; * const command = new BatchGetBlueprintsCommand(input); * const response = await client.send(command); * // { // BatchGetBlueprintsResponse * // Blueprints: [ // Blueprints * // { // Blueprint * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // CreatedOn: new Date("TIMESTAMP"), * // LastModifiedOn: new Date("TIMESTAMP"), * // ParameterSpec: "STRING_VALUE", * // BlueprintLocation: "STRING_VALUE", * // BlueprintServiceLocation: "STRING_VALUE", * // Status: "CREATING" || "ACTIVE" || "UPDATING" || "FAILED", * // ErrorMessage: "STRING_VALUE", * // LastActiveDefinition: { // LastActiveDefinition * // Description: "STRING_VALUE", * // LastModifiedOn: new Date("TIMESTAMP"), * // ParameterSpec: "STRING_VALUE", * // BlueprintLocation: "STRING_VALUE", * // BlueprintServiceLocation: "STRING_VALUE", * // }, * // }, * // ], * // MissingBlueprints: [ // BlueprintNames * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetBlueprintsCommandInput - {@link BatchGetBlueprintsCommandInput} * @returns {@link BatchGetBlueprintsCommandOutput} * @see {@link BatchGetBlueprintsCommandInput} for command's `input` shape. * @see {@link BatchGetBlueprintsCommandOutput} 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 BatchGetBlueprintsCommand extends BatchGetBlueprintsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetBlueprintsRequest; output: BatchGetBlueprintsResponse; }; sdk: { input: BatchGetBlueprintsCommandInput; output: BatchGetBlueprintsCommandOutput; }; }; }