com.pulumi.aws.directconnect.kotlin.HostedPrivateVirtualInterfaceArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.directconnect.kotlin
import com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* 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
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const foo = new aws.directconnect.HostedPrivateVirtualInterface("foo", {
* connectionId: "dxcon-zzzzzzzz",
* name: "vif-foo",
* vlan: 4094,
* addressFamily: "ipv4",
* bgpAsn: 65352,
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* foo = aws.directconnect.HostedPrivateVirtualInterface("foo",
* connection_id="dxcon-zzzzzzzz",
* name="vif-foo",
* vlan=4094,
* address_family="ipv4",
* bgp_asn=65352)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var foo = new Aws.DirectConnect.HostedPrivateVirtualInterface("foo", new()
* {
* ConnectionId = "dxcon-zzzzzzzz",
* Name = "vif-foo",
* Vlan = 4094,
* AddressFamily = "ipv4",
* BgpAsn = 65352,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/directconnect"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := directconnect.NewHostedPrivateVirtualInterface(ctx, "foo", &directconnect.HostedPrivateVirtualInterfaceArgs{
* ConnectionId: pulumi.String("dxcon-zzzzzzzz"),
* Name: pulumi.String("vif-foo"),
* Vlan: pulumi.Int(4094),
* AddressFamily: pulumi.String("ipv4"),
* BgpAsn: pulumi.Int(65352),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* 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()
* .connectionId("dxcon-zzzzzzzz")
* .name("vif-foo")
* .vlan(4094)
* .addressFamily("ipv4")
* .bgpAsn(65352)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* foo:
* type: aws:directconnect:HostedPrivateVirtualInterface
* properties:
* connectionId: dxcon-zzzzzzzz
* name: vif-foo
* vlan: 4094
* addressFamily: ipv4
* bgpAsn: 65352
* ```
*
* ## Import
* Using `pulumi import`, import Direct Connect hosted private virtual interfaces using the VIF `id`. For example:
* ```sh
* $ pulumi import aws:directconnect/hostedPrivateVirtualInterface:HostedPrivateVirtualInterface test dxvif-33cc44dd
* ```
* @property addressFamily The address family for the BGP peer. `ipv4 ` or `ipv6`.
* @property amazonAddress The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
* @property bgpAsn The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
* @property bgpAuthKey The authentication key for BGP configuration.
* @property connectionId The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
* @property customerAddress The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
* @property mtu 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`.
* @property name The name for the virtual interface.
* @property ownerAccountId The AWS account that will own the new virtual interface.
* @property vlan The VLAN ID.
*/
public data class HostedPrivateVirtualInterfaceArgs(
public val addressFamily: Output? = null,
public val amazonAddress: Output? = null,
public val bgpAsn: Output? = null,
public val bgpAuthKey: Output? = null,
public val connectionId: Output? = null,
public val customerAddress: Output? = null,
public val mtu: Output? = null,
public val name: Output? = null,
public val ownerAccountId: Output? = null,
public val vlan: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceArgs =
com.pulumi.aws.directconnect.HostedPrivateVirtualInterfaceArgs.builder()
.addressFamily(addressFamily?.applyValue({ args0 -> args0 }))
.amazonAddress(amazonAddress?.applyValue({ args0 -> args0 }))
.bgpAsn(bgpAsn?.applyValue({ args0 -> args0 }))
.bgpAuthKey(bgpAuthKey?.applyValue({ args0 -> args0 }))
.connectionId(connectionId?.applyValue({ args0 -> args0 }))
.customerAddress(customerAddress?.applyValue({ args0 -> args0 }))
.mtu(mtu?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.ownerAccountId(ownerAccountId?.applyValue({ args0 -> args0 }))
.vlan(vlan?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HostedPrivateVirtualInterfaceArgs].
*/
@PulumiTagMarker
public class HostedPrivateVirtualInterfaceArgsBuilder internal constructor() {
private var addressFamily: Output? = null
private var amazonAddress: Output? = null
private var bgpAsn: Output? = null
private var bgpAuthKey: Output? = null
private var connectionId: Output? = null
private var customerAddress: Output? = null
private var mtu: Output? = null
private var name: Output? = null
private var ownerAccountId: Output? = null
private var vlan: Output? = null
/**
* @param value The address family for the BGP peer. `ipv4 ` or `ipv6`.
*/
@JvmName("rhxvptbybitcqliy")
public suspend fun addressFamily(`value`: Output) {
this.addressFamily = value
}
/**
* @param value The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
*/
@JvmName("xmxjnnhbjhviqxmd")
public suspend fun amazonAddress(`value`: Output) {
this.amazonAddress = value
}
/**
* @param value The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
*/
@JvmName("igbagblntgskpyew")
public suspend fun bgpAsn(`value`: Output) {
this.bgpAsn = value
}
/**
* @param value The authentication key for BGP configuration.
*/
@JvmName("cluknmjbsvldjlhn")
public suspend fun bgpAuthKey(`value`: Output) {
this.bgpAuthKey = value
}
/**
* @param value The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
*/
@JvmName("ywyovsdjkpfcdpus")
public suspend fun connectionId(`value`: Output) {
this.connectionId = value
}
/**
* @param value The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
*/
@JvmName("qlbirvrsddhjmsdn")
public suspend fun customerAddress(`value`: Output) {
this.customerAddress = value
}
/**
* @param value 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`.
*/
@JvmName("mucameqxarpwlsue")
public suspend fun mtu(`value`: Output) {
this.mtu = value
}
/**
* @param value The name for the virtual interface.
*/
@JvmName("nvabklmsjpwwuqbj")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The AWS account that will own the new virtual interface.
*/
@JvmName("uvdmmkwclqghfimj")
public suspend fun ownerAccountId(`value`: Output) {
this.ownerAccountId = value
}
/**
* @param value The VLAN ID.
*/
@JvmName("oktwbudsrvyfgbmv")
public suspend fun vlan(`value`: Output) {
this.vlan = value
}
/**
* @param value The address family for the BGP peer. `ipv4 ` or `ipv6`.
*/
@JvmName("ukdollmokgcssgqu")
public suspend fun addressFamily(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.addressFamily = mapped
}
/**
* @param value The IPv4 CIDR address to use to send traffic to Amazon. Required for IPv4 BGP peers.
*/
@JvmName("sswmajmxiwuiywpe")
public suspend fun amazonAddress(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.amazonAddress = mapped
}
/**
* @param value The autonomous system (AS) number for Border Gateway Protocol (BGP) configuration.
*/
@JvmName("cicgconwxsopdnkt")
public suspend fun bgpAsn(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.bgpAsn = mapped
}
/**
* @param value The authentication key for BGP configuration.
*/
@JvmName("oynuaxscxpiptdak")
public suspend fun bgpAuthKey(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.bgpAuthKey = mapped
}
/**
* @param value The ID of the Direct Connect connection (or LAG) on which to create the virtual interface.
*/
@JvmName("lnidomdhucxietmm")
public suspend fun connectionId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.connectionId = mapped
}
/**
* @param value The IPv4 CIDR destination address to which Amazon should send traffic. Required for IPv4 BGP peers.
*/
@JvmName("ibrjogacbpelnmuf")
public suspend fun customerAddress(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.customerAddress = mapped
}
/**
* @param value 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`.
*/
@JvmName("iuldrbgppdoakpmo")
public suspend fun mtu(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mtu = mapped
}
/**
* @param value The name for the virtual interface.
*/
@JvmName("cbnnbcokcysafviu")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The AWS account that will own the new virtual interface.
*/
@JvmName("mrkkhwnecbsupvxf")
public suspend fun ownerAccountId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ownerAccountId = mapped
}
/**
* @param value The VLAN ID.
*/
@JvmName("yavhduqxmtahxbwt")
public suspend fun vlan(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.vlan = mapped
}
internal fun build(): HostedPrivateVirtualInterfaceArgs = HostedPrivateVirtualInterfaceArgs(
addressFamily = addressFamily,
amazonAddress = amazonAddress,
bgpAsn = bgpAsn,
bgpAuthKey = bgpAuthKey,
connectionId = connectionId,
customerAddress = customerAddress,
mtu = mtu,
name = name,
ownerAccountId = ownerAccountId,
vlan = vlan,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy