import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces */ export declare class LocalGatewayVirtualInterfaceGroup extends pulumi.CustomResource { /** * Get an existing LocalGatewayVirtualInterfaceGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): LocalGatewayVirtualInterfaceGroup; /** * Returns true if the given object is an instance of LocalGatewayVirtualInterfaceGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LocalGatewayVirtualInterfaceGroup; /** * The current state of the local gateway virtual interface group */ readonly configurationState: pulumi.Output; /** * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP) */ readonly localBgpAsn: pulumi.Output; /** * The extended 32-bit ASN for the local BGP configuration */ readonly localBgpAsnExtended: pulumi.Output; /** * The ID of the local gateway */ readonly localGatewayId: pulumi.Output; /** * The Amazon Resource Number (ARN) of the local gateway virtual interface group */ readonly localGatewayVirtualInterfaceGroupArn: pulumi.Output; /** * The ID of the virtual interface group */ readonly localGatewayVirtualInterfaceGroupId: pulumi.Output; /** * The IDs of the virtual interfaces */ readonly localGatewayVirtualInterfaceIds: pulumi.Output; /** * The ID of the Amazon Web Services account that owns the local gateway virtual interface group */ readonly ownerId: pulumi.Output; /** * The tags assigned to the virtual interface group */ readonly tags: pulumi.Output; /** * Create a LocalGatewayVirtualInterfaceGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LocalGatewayVirtualInterfaceGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a LocalGatewayVirtualInterfaceGroup resource. */ export interface LocalGatewayVirtualInterfaceGroupArgs { /** * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP) */ localBgpAsn?: pulumi.Input; /** * The extended 32-bit ASN for the local BGP configuration */ localBgpAsnExtended?: pulumi.Input; /** * The ID of the local gateway */ localGatewayId: pulumi.Input; /** * The tags assigned to the virtual interface group */ tags?: pulumi.Input[]>; }