Hosted Private Virtual Interface Args
data class HostedPrivateVirtualInterfaceArgs(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 mtu: Output<Int>? = null, val name: Output<String>? = null, val ownerAccountId: Output<String>? = null, val vlan: Output<Int>? = null) : ConvertibleToJava<HostedPrivateVirtualInterfaceArgs>
Provides a Direct Connect hosted private virtual interface resource. This resource represents the allocator's side of the hosted virtual interface. A hosted virtual interface is a virtual interface that is owned by another AWS account.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directconnect.HostedPrivateVirtualInterface;
import com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceArgs;
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 HostedPrivateVirtualInterface("foo", HostedPrivateVirtualInterfaceArgs.builder()
.addressFamily("ipv4")
.bgpAsn(65352)
.connectionId("dxcon-zzzzzzzz")
.vlan(4094)
.build());
}
}
Content copied to clipboard
Import
Direct Connect hosted private virtual interfaces can be imported using the vif id
, e.g.,
$ pulumi import aws:directconnect/hostedPrivateVirtualInterface:HostedPrivateVirtualInterface test dxvif-33cc44dd
Content copied to clipboard
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, mtu: Output<Int>? = null, name: Output<String>? = null, ownerAccountId: Output<String>? = null, vlan: Output<Int>? = null)
Properties
Link copied to clipboard
The address family for the BGP peer. ipv4
or ipv6
.
Link copied to clipboard
The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
Link copied to clipboard
The authentication key for BGP configuration.
Link copied to clipboard
The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
Link copied to clipboard
The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
Link copied to clipboard
The AWS account that will own the new virtual interface.