import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListVpcEndpointsCommand}. */ export interface ListVpcEndpointsCommandInput extends ListVpcEndpointsRequest { } /** * @public * * The output of {@link ListVpcEndpointsCommand}. */ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse, __MetadataBearer { } declare const ListVpcEndpointsCommand_base: { new (input: ListVpcEndpointsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListVpcEndpointsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current Amazon Web Services account and Region.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OpenSearchClient, ListVpcEndpointsCommand } from "@aws-sdk/client-opensearch"; // ES Modules import * // const { OpenSearchClient, ListVpcEndpointsCommand } = require("@aws-sdk/client-opensearch"); // CommonJS import * // import type { OpenSearchClientConfig } from "@aws-sdk/client-opensearch"; * const config = {}; // type is OpenSearchClientConfig * const client = new OpenSearchClient(config); * const input = { // ListVpcEndpointsRequest * NextToken: "STRING_VALUE", * }; * const command = new ListVpcEndpointsCommand(input); * const response = await client.send(command); * // { // ListVpcEndpointsResponse * // VpcEndpointSummaryList: [ // VpcEndpointSummaryList // required * // { // VpcEndpointSummary * // VpcEndpointId: "STRING_VALUE", * // VpcEndpointOwner: "STRING_VALUE", * // DomainArn: "STRING_VALUE", * // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "UPDATING" || "UPDATE_FAILED" || "DELETING" || "DELETE_FAILED", * // }, * // ], * // NextToken: "STRING_VALUE", // required * // }; * * ``` * * @param ListVpcEndpointsCommandInput - {@link ListVpcEndpointsCommandInput} * @returns {@link ListVpcEndpointsCommandOutput} * @see {@link ListVpcEndpointsCommandInput} for command's `input` shape. * @see {@link ListVpcEndpointsCommandOutput} for command's `response` shape. * @see {@link OpenSearchClientResolvedConfig | config} for OpenSearchClient's `config` shape. * * @throws {@link BaseException} (client fault) *

An error occurred while processing the request.

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

An error occured because the client wanted to access an unsupported operation.

* * @throws {@link InternalException} (server fault) *

Request processing failed because of an unknown error, exception, or internal failure.

* * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* * * @public */ export declare class ListVpcEndpointsCommand extends ListVpcEndpointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListVpcEndpointsRequest; output: ListVpcEndpointsResponse; }; sdk: { input: ListVpcEndpointsCommandInput; output: ListVpcEndpointsCommandOutput; }; }; }