Private Virtual Interface
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
Properties
The address family for the BGP peer. ipv4
or ipv6
.
The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
The authentication key for BGP configuration.
The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
The ID of the Direct Connect gateway to which to connect the virtual interface.
Indicates whether jumbo frames (9001 MTU) are supported.
Indicates whether to enable or disable SiteLink.
The ID of the virtual private gateway to which to connect the virtual interface.