HostedPublicVirtualInterface

class HostedPublicVirtualInterface : KotlinCustomResource

Provides a Direct Connect hosted public 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.HostedPublicVirtualInterface;
import com.pulumi.aws.directconnect.HostedPublicVirtualInterfaceArgs;
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 HostedPublicVirtualInterface("foo", HostedPublicVirtualInterfaceArgs.builder()
.addressFamily("ipv4")
.amazonAddress("175.45.176.2/30")
.bgpAsn(65352)
.connectionId("dxcon-zzzzzzzz")
.customerAddress("175.45.176.1/30")
.routeFilterPrefixes(
"210.52.109.0/24",
"175.45.176.0/22")
.vlan(4094)
.build());
}
}

Import

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

$ pulumi import aws:directconnect/hostedPublicVirtualInterface:HostedPublicVirtualInterface test dxvif-33cc44dd

Properties

Link copied to clipboard
val addressFamily: Output<String>

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

Link copied to clipboard
val amazonAddress: Output<String>

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

Link copied to clipboard
val amazonSideAsn: Output<String>
Link copied to clipboard
val arn: Output<String>

The ARN of the virtual interface.

Link copied to clipboard
val awsDevice: Output<String>

The Direct Connect endpoint on which the virtual interface terminates.

Link copied to clipboard
val bgpAsn: Output<Int>

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

Link copied to clipboard
val bgpAuthKey: Output<String>

The authentication key for BGP configuration.

Link copied to clipboard
val connectionId: Output<String>

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

Link copied to clipboard
val customerAddress: Output<String>

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

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name for the virtual interface.

Link copied to clipboard
val ownerAccountId: Output<String>

The AWS account that will own the new virtual interface.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

A list of routes to be advertised to the AWS network in this region.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val vlan: Output<Int>

The VLAN ID.