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

Registers a blueprint with Glue.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, CreateBlueprintCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, CreateBlueprintCommand } = 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 = { // CreateBlueprintRequest * Name: "STRING_VALUE", // required * Description: "STRING_VALUE", * BlueprintLocation: "STRING_VALUE", // required * Tags: { // TagsMap * "": "STRING_VALUE", * }, * }; * const command = new CreateBlueprintCommand(input); * const response = await client.send(command); * // { // CreateBlueprintResponse * // Name: "STRING_VALUE", * // }; * * ``` * * @param CreateBlueprintCommandInput - {@link CreateBlueprintCommandInput} * @returns {@link CreateBlueprintCommandOutput} * @see {@link CreateBlueprintCommandInput} for command's `input` shape. * @see {@link CreateBlueprintCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AlreadyExistsException} (client fault) *

A resource to be created or added already exists.

* * @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 ResourceNumberLimitExceededException} (client fault) *

A resource numerical limit was exceeded.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class CreateBlueprintCommand extends CreateBlueprintCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateBlueprintRequest; output: CreateBlueprintResponse; }; sdk: { input: CreateBlueprintCommandInput; output: CreateBlueprintCommandOutput; }; }; }