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 { GetCustomEntityTypeRequest, GetCustomEntityTypeResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetCustomEntityTypeCommand}. */ export interface GetCustomEntityTypeCommandInput extends GetCustomEntityTypeRequest { } /** * @public * * The output of {@link GetCustomEntityTypeCommand}. */ export interface GetCustomEntityTypeCommandOutput extends GetCustomEntityTypeResponse, __MetadataBearer { } declare const GetCustomEntityTypeCommand_base: { new (input: GetCustomEntityTypeCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetCustomEntityTypeCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the details of a custom pattern by specifying its name.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetCustomEntityTypeCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetCustomEntityTypeCommand } = 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 = { // GetCustomEntityTypeRequest * Name: "STRING_VALUE", // required * }; * const command = new GetCustomEntityTypeCommand(input); * const response = await client.send(command); * // { // GetCustomEntityTypeResponse * // Name: "STRING_VALUE", * // RegexString: "STRING_VALUE", * // ContextWords: [ // ContextWords * // "STRING_VALUE", * // ], * // }; * * ``` * * @param GetCustomEntityTypeCommandInput - {@link GetCustomEntityTypeCommandInput} * @returns {@link GetCustomEntityTypeCommandOutput} * @see {@link GetCustomEntityTypeCommandInput} for command's `input` shape. * @see {@link GetCustomEntityTypeCommandOutput} 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 OperationTimeoutException} (client fault) *

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetCustomEntityTypeCommand extends GetCustomEntityTypeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetCustomEntityTypeRequest; output: GetCustomEntityTypeResponse; }; sdk: { input: GetCustomEntityTypeCommandInput; output: GetCustomEntityTypeCommandOutput; }; }; }