All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.ec2transitgateway.kotlin.TransitGatewayArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.ec2transitgateway.kotlin

import com.pulumi.aws.ec2transitgateway.TransitGatewayArgs.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.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages an EC2 Transit Gateway.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const example = new aws.ec2transitgateway.TransitGateway("example", {description: "example"});
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * example = aws.ec2transitgateway.TransitGateway("example", description="example")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Aws.Ec2TransitGateway.TransitGateway("example", new()
 *     {
 *         Description = "example",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2transitgateway"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := ec2transitgateway.NewTransitGateway(ctx, "example", &ec2transitgateway.TransitGatewayArgs{
 * 			Description: pulumi.String("example"),
 * 		})
 * 		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.ec2transitgateway.TransitGateway;
 * import com.pulumi.aws.ec2transitgateway.TransitGatewayArgs;
 * 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 example = new TransitGateway("example", TransitGatewayArgs.builder()
 *             .description("example")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: aws:ec2transitgateway:TransitGateway
 *     properties:
 *       description: example
 * ```
 * 
 * ## Import
 * Using `pulumi import`, import `aws_ec2_transit_gateway` using the EC2 Transit Gateway identifier. For example:
 * ```sh
 * $ pulumi import aws:ec2transitgateway/transitGateway:TransitGateway example tgw-12345678
 * ```
 * @property amazonSideAsn Private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is `64512` to `65534` for 16-bit ASNs and `4200000000` to `4294967294` for 32-bit ASNs. Default value: `64512`.
 * > **NOTE:** Modifying `amazon_side_asn` on a Transit Gateway with active BGP sessions is [not allowed](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyTransitGatewayOptions.html). You must first delete all Transit Gateway attachments that have BGP configured prior to modifying `amazon_side_asn`.
 * @property autoAcceptSharedAttachments Whether resource attachment requests are automatically accepted. Valid values: `disable`, `enable`. Default value: `disable`.
 * @property defaultRouteTableAssociation Whether resource attachments are automatically associated with the default association route table. Valid values: `disable`, `enable`. Default value: `enable`.
 * @property defaultRouteTablePropagation Whether resource attachments automatically propagate routes to the default propagation route table. Valid values: `disable`, `enable`. Default value: `enable`.
 * @property description Description of the EC2 Transit Gateway.
 * @property dnsSupport Whether DNS support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
 * @property multicastSupport Whether Multicast support is enabled. Required to use `ec2_transit_gateway_multicast_domain`. Valid values: `disable`, `enable`. Default value: `disable`.
 * @property securityGroupReferencingSupport Whether Security Group Referencing Support is enabled. Valid values: `disable`, `enable`. Default value: `disable`.
 * @property tags Key-value tags for the EC2 Transit Gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
 * @property transitGatewayCidrBlocks One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.
 * @property vpnEcmpSupport Whether VPN Equal Cost Multipath Protocol support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
 */
public data class TransitGatewayArgs(
    public val amazonSideAsn: Output? = null,
    public val autoAcceptSharedAttachments: Output? = null,
    public val defaultRouteTableAssociation: Output? = null,
    public val defaultRouteTablePropagation: Output? = null,
    public val description: Output? = null,
    public val dnsSupport: Output? = null,
    public val multicastSupport: Output? = null,
    public val securityGroupReferencingSupport: Output? = null,
    public val tags: Output>? = null,
    public val transitGatewayCidrBlocks: Output>? = null,
    public val vpnEcmpSupport: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.ec2transitgateway.TransitGatewayArgs =
        com.pulumi.aws.ec2transitgateway.TransitGatewayArgs.builder()
            .amazonSideAsn(amazonSideAsn?.applyValue({ args0 -> args0 }))
            .autoAcceptSharedAttachments(autoAcceptSharedAttachments?.applyValue({ args0 -> args0 }))
            .defaultRouteTableAssociation(defaultRouteTableAssociation?.applyValue({ args0 -> args0 }))
            .defaultRouteTablePropagation(defaultRouteTablePropagation?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .dnsSupport(dnsSupport?.applyValue({ args0 -> args0 }))
            .multicastSupport(multicastSupport?.applyValue({ args0 -> args0 }))
            .securityGroupReferencingSupport(securityGroupReferencingSupport?.applyValue({ args0 -> args0 }))
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .transitGatewayCidrBlocks(
                transitGatewayCidrBlocks?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0
                    })
                }),
            )
            .vpnEcmpSupport(vpnEcmpSupport?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TransitGatewayArgs].
 */
@PulumiTagMarker
public class TransitGatewayArgsBuilder internal constructor() {
    private var amazonSideAsn: Output? = null

    private var autoAcceptSharedAttachments: Output? = null

    private var defaultRouteTableAssociation: Output? = null

    private var defaultRouteTablePropagation: Output? = null

    private var description: Output? = null

    private var dnsSupport: Output? = null

    private var multicastSupport: Output? = null

    private var securityGroupReferencingSupport: Output? = null

    private var tags: Output>? = null

    private var transitGatewayCidrBlocks: Output>? = null

    private var vpnEcmpSupport: Output? = null

    /**
     * @param value Private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is `64512` to `65534` for 16-bit ASNs and `4200000000` to `4294967294` for 32-bit ASNs. Default value: `64512`.
     * > **NOTE:** Modifying `amazon_side_asn` on a Transit Gateway with active BGP sessions is [not allowed](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyTransitGatewayOptions.html). You must first delete all Transit Gateway attachments that have BGP configured prior to modifying `amazon_side_asn`.
     */
    @JvmName("gnojrpepomptamaf")
    public suspend fun amazonSideAsn(`value`: Output) {
        this.amazonSideAsn = value
    }

    /**
     * @param value Whether resource attachment requests are automatically accepted. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("ccfijrjjirsrccxj")
    public suspend fun autoAcceptSharedAttachments(`value`: Output) {
        this.autoAcceptSharedAttachments = value
    }

    /**
     * @param value Whether resource attachments are automatically associated with the default association route table. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("mtimucxmycqivutj")
    public suspend fun defaultRouteTableAssociation(`value`: Output) {
        this.defaultRouteTableAssociation = value
    }

    /**
     * @param value Whether resource attachments automatically propagate routes to the default propagation route table. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("lehosoqwmkgxeosb")
    public suspend fun defaultRouteTablePropagation(`value`: Output) {
        this.defaultRouteTablePropagation = value
    }

    /**
     * @param value Description of the EC2 Transit Gateway.
     */
    @JvmName("mjqmjejuyqhfphrm")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value Whether DNS support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("gribyqyjwgkttgvv")
    public suspend fun dnsSupport(`value`: Output) {
        this.dnsSupport = value
    }

    /**
     * @param value Whether Multicast support is enabled. Required to use `ec2_transit_gateway_multicast_domain`. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("egqqpgsipekhpoay")
    public suspend fun multicastSupport(`value`: Output) {
        this.multicastSupport = value
    }

    /**
     * @param value Whether Security Group Referencing Support is enabled. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("eniyjkitunorusgo")
    public suspend fun securityGroupReferencingSupport(`value`: Output) {
        this.securityGroupReferencingSupport = value
    }

    /**
     * @param value Key-value tags for the EC2 Transit Gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("gmaxbnbbuufpidgd")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.
     */
    @JvmName("qxrfpmxypakotirt")
    public suspend fun transitGatewayCidrBlocks(`value`: Output>) {
        this.transitGatewayCidrBlocks = value
    }

    @JvmName("eutsvrqcaxenmnfr")
    public suspend fun transitGatewayCidrBlocks(vararg values: Output) {
        this.transitGatewayCidrBlocks = Output.all(values.asList())
    }

    /**
     * @param values One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.
     */
    @JvmName("htletyexqteimaef")
    public suspend fun transitGatewayCidrBlocks(values: List>) {
        this.transitGatewayCidrBlocks = Output.all(values)
    }

    /**
     * @param value Whether VPN Equal Cost Multipath Protocol support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("aqkdbixrjuhtmkub")
    public suspend fun vpnEcmpSupport(`value`: Output) {
        this.vpnEcmpSupport = value
    }

    /**
     * @param value Private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is `64512` to `65534` for 16-bit ASNs and `4200000000` to `4294967294` for 32-bit ASNs. Default value: `64512`.
     * > **NOTE:** Modifying `amazon_side_asn` on a Transit Gateway with active BGP sessions is [not allowed](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyTransitGatewayOptions.html). You must first delete all Transit Gateway attachments that have BGP configured prior to modifying `amazon_side_asn`.
     */
    @JvmName("qsqjkkfbtguvuhdi")
    public suspend fun amazonSideAsn(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.amazonSideAsn = mapped
    }

    /**
     * @param value Whether resource attachment requests are automatically accepted. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("odufflmipbbdbnpb")
    public suspend fun autoAcceptSharedAttachments(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.autoAcceptSharedAttachments = mapped
    }

    /**
     * @param value Whether resource attachments are automatically associated with the default association route table. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("ahljsitibaekaxvt")
    public suspend fun defaultRouteTableAssociation(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.defaultRouteTableAssociation = mapped
    }

    /**
     * @param value Whether resource attachments automatically propagate routes to the default propagation route table. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("tjxbvhkscociccku")
    public suspend fun defaultRouteTablePropagation(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.defaultRouteTablePropagation = mapped
    }

    /**
     * @param value Description of the EC2 Transit Gateway.
     */
    @JvmName("immnvygwdkkoedog")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value Whether DNS support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("lemfphqaovybfhna")
    public suspend fun dnsSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dnsSupport = mapped
    }

    /**
     * @param value Whether Multicast support is enabled. Required to use `ec2_transit_gateway_multicast_domain`. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("ynjlwdmvlkkilbbs")
    public suspend fun multicastSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.multicastSupport = mapped
    }

    /**
     * @param value Whether Security Group Referencing Support is enabled. Valid values: `disable`, `enable`. Default value: `disable`.
     */
    @JvmName("jnmlkespiqoboaaa")
    public suspend fun securityGroupReferencingSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.securityGroupReferencingSupport = mapped
    }

    /**
     * @param value Key-value tags for the EC2 Transit Gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("roslenagnkjlgdgn")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values Key-value tags for the EC2 Transit Gateway. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("sirhnihwxmqyfupu")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.
     */
    @JvmName("aharymkdukgjalxa")
    public suspend fun transitGatewayCidrBlocks(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.transitGatewayCidrBlocks = mapped
    }

    /**
     * @param values One or more IPv4 or IPv6 CIDR blocks for the transit gateway. Must be a size /24 CIDR block or larger for IPv4, or a size /64 CIDR block or larger for IPv6.
     */
    @JvmName("dwnucadrquwfrcko")
    public suspend fun transitGatewayCidrBlocks(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.transitGatewayCidrBlocks = mapped
    }

    /**
     * @param value Whether VPN Equal Cost Multipath Protocol support is enabled. Valid values: `disable`, `enable`. Default value: `enable`.
     */
    @JvmName("mnxkfciybbchtxhh")
    public suspend fun vpnEcmpSupport(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.vpnEcmpSupport = mapped
    }

    internal fun build(): TransitGatewayArgs = TransitGatewayArgs(
        amazonSideAsn = amazonSideAsn,
        autoAcceptSharedAttachments = autoAcceptSharedAttachments,
        defaultRouteTableAssociation = defaultRouteTableAssociation,
        defaultRouteTablePropagation = defaultRouteTablePropagation,
        description = description,
        dnsSupport = dnsSupport,
        multicastSupport = multicastSupport,
        securityGroupReferencingSupport = securityGroupReferencingSupport,
        tags = tags,
        transitGatewayCidrBlocks = transitGatewayCidrBlocks,
        vpnEcmpSupport = vpnEcmpSupport,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy