import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import type { ListVpcIngressConnectionsRequest, ListVpcIngressConnectionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListVpcIngressConnectionsCommand}. */ export interface ListVpcIngressConnectionsCommandInput extends ListVpcIngressConnectionsRequest { } /** * @public * * The output of {@link ListVpcIngressConnectionsCommand}. */ export interface ListVpcIngressConnectionsCommandOutput extends ListVpcIngressConnectionsResponse, __MetadataBearer { } declare const ListVpcIngressConnectionsCommand_base: { new (input: ListVpcIngressConnectionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListVpcIngressConnectionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { AppRunnerClient, ListVpcIngressConnectionsCommand } from "@aws-sdk/client-apprunner"; // ES Modules import * // const { AppRunnerClient, ListVpcIngressConnectionsCommand } = require("@aws-sdk/client-apprunner"); // CommonJS import * // import type { AppRunnerClientConfig } from "@aws-sdk/client-apprunner"; * const config = {}; // type is AppRunnerClientConfig * const client = new AppRunnerClient(config); * const input = { // ListVpcIngressConnectionsRequest * Filter: { // ListVpcIngressConnectionsFilter * ServiceArn: "STRING_VALUE", * VpcEndpointId: "STRING_VALUE", * }, * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListVpcIngressConnectionsCommand(input); * const response = await client.send(command); * // { // ListVpcIngressConnectionsResponse * // VpcIngressConnectionSummaryList: [ // VpcIngressConnectionSummaryList // required * // { // VpcIngressConnectionSummary * // VpcIngressConnectionArn: "STRING_VALUE", * // ServiceArn: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListVpcIngressConnectionsCommandInput - {@link ListVpcIngressConnectionsCommandInput} * @returns {@link ListVpcIngressConnectionsCommandOutput} * @see {@link ListVpcIngressConnectionsCommandInput} for command's `input` shape. * @see {@link ListVpcIngressConnectionsCommandOutput} for command's `response` shape. * @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape. * * @throws {@link InternalServiceErrorException} (server fault) *

An unexpected service exception occurred.

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

One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.

* * @throws {@link AppRunnerServiceException} *

Base exception class for all service exceptions from AppRunner service.

* * * @public */ export declare class ListVpcIngressConnectionsCommand extends ListVpcIngressConnectionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListVpcIngressConnectionsRequest; output: ListVpcIngressConnectionsResponse; }; sdk: { input: ListVpcIngressConnectionsCommandInput; output: ListVpcIngressConnectionsCommandOutput; }; }; }