import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeEndpointCommand}. */ export interface DescribeEndpointCommandInput extends DescribeEndpointRequest { } /** * @public * * The output of {@link DescribeEndpointCommand}. */ export interface DescribeEndpointCommandOutput extends DescribeEndpointResponse, __MetadataBearer { } declare const DescribeEndpointCommand_base: { new (input: DescribeEndpointCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeEndpointCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets the properties associated with a specific endpoint. Use this operation to get the * status of an endpoint. * For information about endpoints, see Managing endpoints.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ComprehendClient, DescribeEndpointCommand } from "@aws-sdk/client-comprehend"; // ES Modules import * // const { ComprehendClient, DescribeEndpointCommand } = require("@aws-sdk/client-comprehend"); // CommonJS import * // import type { ComprehendClientConfig } from "@aws-sdk/client-comprehend"; * const config = {}; // type is ComprehendClientConfig * const client = new ComprehendClient(config); * const input = { // DescribeEndpointRequest * EndpointArn: "STRING_VALUE", // required * }; * const command = new DescribeEndpointCommand(input); * const response = await client.send(command); * // { // DescribeEndpointResponse * // EndpointProperties: { // EndpointProperties * // EndpointArn: "STRING_VALUE", * // Status: "CREATING" || "DELETING" || "FAILED" || "IN_SERVICE" || "UPDATING", * // Message: "STRING_VALUE", * // ModelArn: "STRING_VALUE", * // DesiredModelArn: "STRING_VALUE", * // DesiredInferenceUnits: Number("int"), * // CurrentInferenceUnits: Number("int"), * // CreationTime: new Date("TIMESTAMP"), * // LastModifiedTime: new Date("TIMESTAMP"), * // DataAccessRoleArn: "STRING_VALUE", * // DesiredDataAccessRoleArn: "STRING_VALUE", * // FlywheelArn: "STRING_VALUE", * // }, * // }; * * ``` * * @param DescribeEndpointCommandInput - {@link DescribeEndpointCommandInput} * @returns {@link DescribeEndpointCommandOutput} * @see {@link DescribeEndpointCommandInput} for command's `input` shape. * @see {@link DescribeEndpointCommandOutput} for command's `response` shape. * @see {@link ComprehendClientResolvedConfig | config} for ComprehendClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An internal server error occurred. Retry your request.

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

The request is invalid.

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

The specified resource ARN was not found. Check the ARN and try your request again.

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

The number of requests exceeds the limit. Resubmit your request later.

* * @throws {@link ComprehendServiceException} *

Base exception class for all service exceptions from Comprehend service.

* * * @public */ export declare class DescribeEndpointCommand extends DescribeEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeEndpointRequest; output: DescribeEndpointResponse; }; sdk: { input: DescribeEndpointCommandInput; output: DescribeEndpointCommandOutput; }; }; }