PrivateVirtualInterfaceArgs

data class PrivateVirtualInterfaceArgs(val addressFamily: Output<String>? = null, val amazonAddress: Output<String>? = null, val bgpAsn: Output<Int>? = null, val bgpAuthKey: Output<String>? = null, val connectionId: Output<String>? = null, val customerAddress: Output<String>? = null, val dxGatewayId: Output<String>? = null, val mtu: Output<Int>? = null, val name: Output<String>? = null, val sitelinkEnabled: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null, val vlan: Output<Int>? = null, val vpnGatewayId: Output<String>? = null) : ConvertibleToJava<PrivateVirtualInterfaceArgs>

Provides a Direct Connect private virtual interface resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directconnect.PrivateVirtualInterface;
import com.pulumi.aws.directconnect.PrivateVirtualInterfaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new PrivateVirtualInterface("foo", PrivateVirtualInterfaceArgs.builder()
.addressFamily("ipv4")
.bgpAsn(65352)
.connectionId("dxcon-zzzzzzzz")
.vlan(4094)
.build());
}
}

Import

Direct Connect private virtual interfaces can be imported using the vif id, e.g.,

$ pulumi import aws:directconnect/privateVirtualInterface:PrivateVirtualInterface test dxvif-33cc44dd

Constructors

Link copied to clipboard
constructor(addressFamily: Output<String>? = null, amazonAddress: Output<String>? = null, bgpAsn: Output<Int>? = null, bgpAuthKey: Output<String>? = null, connectionId: Output<String>? = null, customerAddress: Output<String>? = null, dxGatewayId: Output<String>? = null, mtu: Output<Int>? = null, name: Output<String>? = null, sitelinkEnabled: Output<Boolean>? = null, tags: Output<Map<String, String>>? = null, vlan: Output<Int>? = null, vpnGatewayId: Output<String>? = null)

Properties

Link copied to clipboard
val addressFamily: Output<String>? = null

The address family for the BGP peer. ipv4 or ipv6.

Link copied to clipboard
val amazonAddress: Output<String>? = null

The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.

Link copied to clipboard
val bgpAsn: Output<Int>? = null

The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.

Link copied to clipboard
val bgpAuthKey: Output<String>? = null

The authentication key for BGP configuration.

Link copied to clipboard
val connectionId: Output<String>? = null

The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.

Link copied to clipboard
val customerAddress: Output<String>? = null

The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.

Link copied to clipboard
val dxGatewayId: Output<String>? = null

The ID of the Direct Connect gateway to which to connect the virtual interface.

Link copied to clipboard
val mtu: Output<Int>? = null

The maximum transmission unit (MTU) is the size, in bytes, of the largest permissible packet that can be passed over the connection. The MTU of a virtual private interface can be either 1500 or 9001 (jumbo frames). Default is 1500.

Link copied to clipboard
val name: Output<String>? = null

The name for the virtual interface.

Link copied to clipboard
val sitelinkEnabled: Output<Boolean>? = null

Indicates whether to enable or disable SiteLink.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val vlan: Output<Int>? = null

The VLAN ID.

Link copied to clipboard
val vpnGatewayId: Output<String>? = null

The ID of the virtual private gateway to which to connect the virtual interface.

Functions

Link copied to clipboard
open override fun toJava(): PrivateVirtualInterfaceArgs