import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetEndpointRequest, GetEndpointResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetEndpointCommand}. */ export interface GetEndpointCommandInput extends GetEndpointRequest { } /** * @public * * The output of {@link GetEndpointCommand}. */ export interface GetEndpointCommandOutput extends GetEndpointResponse, __MetadataBearer { } declare const GetEndpointCommand_base: { new (input: GetEndpointCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetEndpointCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets information about an Device Advisor endpoint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IotDeviceAdvisorClient, GetEndpointCommand } from "@aws-sdk/client-iotdeviceadvisor"; // ES Modules import * // const { IotDeviceAdvisorClient, GetEndpointCommand } = require("@aws-sdk/client-iotdeviceadvisor"); // CommonJS import * // import type { IotDeviceAdvisorClientConfig } from "@aws-sdk/client-iotdeviceadvisor"; * const config = {}; // type is IotDeviceAdvisorClientConfig * const client = new IotDeviceAdvisorClient(config); * const input = { // GetEndpointRequest * thingArn: "STRING_VALUE", * certificateArn: "STRING_VALUE", * deviceRoleArn: "STRING_VALUE", * authenticationMethod: "X509ClientCertificate" || "SignatureVersion4", * }; * const command = new GetEndpointCommand(input); * const response = await client.send(command); * // { // GetEndpointResponse * // endpoint: "STRING_VALUE", * // }; * * ``` * * @param GetEndpointCommandInput - {@link GetEndpointCommandInput} * @returns {@link GetEndpointCommandOutput} * @see {@link GetEndpointCommandInput} for command's `input` shape. * @see {@link GetEndpointCommandOutput} for command's `response` shape. * @see {@link IotDeviceAdvisorClientResolvedConfig | config} for IotDeviceAdvisorClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Sends an Internal Failure exception.

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

Sends a Resource Not Found exception.

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

Sends a validation exception.

* * @throws {@link IotDeviceAdvisorServiceException} *

Base exception class for all service exceptions from IotDeviceAdvisor service.

* * * @public */ export declare class GetEndpointCommand extends GetEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetEndpointRequest; output: GetEndpointResponse; }; sdk: { input: GetEndpointCommandInput; output: GetEndpointCommandOutput; }; }; }