TransitGatewayArgs

data class TransitGatewayArgs(val amazonSideAsn: Output<Int>? = null, val autoAcceptSharedAttachments: Output<String>? = null, val defaultRouteTableAssociation: Output<String>? = null, val defaultRouteTablePropagation: Output<String>? = null, val description: Output<String>? = null, val dnsSupport: Output<String>? = null, val multicastSupport: Output<String>? = null, val securityGroupReferencingSupport: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val transitGatewayCidrBlocks: Output<List<String>>? = null, val vpnEcmpSupport: Output<String>? = null) : ConvertibleToJava<TransitGatewayArgs>

Manages an EC2 Transit Gateway.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.ec2transitgateway.TransitGateway("example", {description: "example"});
import pulumi
import pulumi_aws as aws
example = aws.ec2transitgateway.TransitGateway("example", description="example")
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",
});
});
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
})
}
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());
}
}
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:

$ pulumi import aws:ec2transitgateway/transitGateway:TransitGateway example tgw-12345678

Constructors

Link copied to clipboard
constructor(amazonSideAsn: Output<Int>? = null, autoAcceptSharedAttachments: Output<String>? = null, defaultRouteTableAssociation: Output<String>? = null, defaultRouteTablePropagation: Output<String>? = null, description: Output<String>? = null, dnsSupport: Output<String>? = null, multicastSupport: Output<String>? = null, securityGroupReferencingSupport: Output<String>? = null, tags: Output<Map<String, String>>? = null, transitGatewayCidrBlocks: Output<List<String>>? = null, vpnEcmpSupport: Output<String>? = null)

Properties

Link copied to clipboard
val amazonSideAsn: Output<Int>? = null

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.

Link copied to clipboard
val autoAcceptSharedAttachments: Output<String>? = null

Whether resource attachment requests are automatically accepted. Valid values: disable, enable. Default value: disable.

Link copied to clipboard

Whether resource attachments are automatically associated with the default association route table. Valid values: disable, enable. Default value: enable.

Link copied to clipboard

Whether resource attachments automatically propagate routes to the default propagation route table. Valid values: disable, enable. Default value: enable.

Link copied to clipboard
val description: Output<String>? = null

Description of the EC2 Transit Gateway.

Link copied to clipboard
val dnsSupport: Output<String>? = null

Whether DNS support is enabled. Valid values: disable, enable. Default value: enable.

Link copied to clipboard
val multicastSupport: Output<String>? = null

Whether Multicast support is enabled. Required to use ec2_transit_gateway_multicast_domain. Valid values: disable, enable. Default value: disable.

Link copied to clipboard

Whether Security Group Referencing Support is enabled. Valid values: disable, enable. Default value: disable.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val transitGatewayCidrBlocks: Output<List<String>>? = null

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.

Link copied to clipboard
val vpnEcmpSupport: Output<String>? = null

Whether VPN Equal Cost Multipath Protocol support is enabled. Valid values: disable, enable. Default value: enable.

Functions

Link copied to clipboard
open override fun toJava(): TransitGatewayArgs