UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

49 lines (48 loc) 1.85 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for Local Gateway Virtual Interface which describes a virtual interface for AWS Outposts local gateways. */ export declare function getLocalGatewayVirtualInterface(args: GetLocalGatewayVirtualInterfaceArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalGatewayVirtualInterfaceResult>; export interface GetLocalGatewayVirtualInterfaceArgs { /** * The ID of the virtual interface */ localGatewayVirtualInterfaceId: string; } export interface GetLocalGatewayVirtualInterfaceResult { /** * The current state of the local gateway virtual interface */ readonly configurationState?: string; /** * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP) */ readonly localBgpAsn?: number; /** * The ID of the local gateway */ readonly localGatewayId?: string; /** * The ID of the virtual interface */ readonly localGatewayVirtualInterfaceId?: string; /** * The ID of the Amazon Web Services account that owns the local gateway virtual interface group */ readonly ownerId?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for Local Gateway Virtual Interface which describes a virtual interface for AWS Outposts local gateways. */ export declare function getLocalGatewayVirtualInterfaceOutput(args: GetLocalGatewayVirtualInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalGatewayVirtualInterfaceResult>; export interface GetLocalGatewayVirtualInterfaceOutputArgs { /** * The ID of the virtual interface */ localGatewayVirtualInterfaceId: pulumi.Input<string>; }