@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)
120 lines (119 loc) • 4.13 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
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 class LocalGatewayVirtualInterface extends pulumi.CustomResource {
/**
* Get an existing LocalGatewayVirtualInterface 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<pulumi.ID>, opts?: pulumi.CustomResourceOptions): LocalGatewayVirtualInterface;
/**
* Returns true if the given object is an instance of LocalGatewayVirtualInterface. 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 LocalGatewayVirtualInterface;
/**
* The current state of the local gateway virtual interface
*/
readonly configurationState: pulumi.Output<string>;
/**
* The local address.
*/
readonly localAddress: pulumi.Output<string>;
/**
* The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
*/
readonly localBgpAsn: pulumi.Output<number>;
/**
* The ID of the local gateway
*/
readonly localGatewayId: pulumi.Output<string>;
/**
* The ID of the virtual interface group
*/
readonly localGatewayVirtualInterfaceGroupId: pulumi.Output<string>;
/**
* The ID of the virtual interface
*/
readonly localGatewayVirtualInterfaceId: pulumi.Output<string>;
/**
* The Outpost LAG ID.
*/
readonly outpostLagId: pulumi.Output<string>;
/**
* The ID of the Amazon Web Services account that owns the local gateway virtual interface group
*/
readonly ownerId: pulumi.Output<string>;
/**
* The peer address.
*/
readonly peerAddress: pulumi.Output<string>;
/**
* The peer BGP ASN.
*/
readonly peerBgpAsn: pulumi.Output<number | undefined>;
/**
* The extended 32-bit ASN of the BGP peer for use with larger ASN values.
*/
readonly peerBgpAsnExtended: pulumi.Output<number | undefined>;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
/**
* The ID of the VLAN.
*/
readonly vlan: pulumi.Output<number>;
/**
* Create a LocalGatewayVirtualInterface 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: LocalGatewayVirtualInterfaceArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a LocalGatewayVirtualInterface resource.
*/
export interface LocalGatewayVirtualInterfaceArgs {
/**
* The local address.
*/
localAddress: pulumi.Input<string>;
/**
* The ID of the virtual interface group
*/
localGatewayVirtualInterfaceGroupId: pulumi.Input<string>;
/**
* The Outpost LAG ID.
*/
outpostLagId: pulumi.Input<string>;
/**
* The peer address.
*/
peerAddress: pulumi.Input<string>;
/**
* The peer BGP ASN.
*/
peerBgpAsn?: pulumi.Input<number>;
/**
* The extended 32-bit ASN of the BGP peer for use with larger ASN values.
*/
peerBgpAsnExtended?: pulumi.Input<number>;
/**
* An array of key-value pairs to apply to this resource.
*/
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
/**
* The ID of the VLAN.
*/
vlan: pulumi.Input<number>;
}