GatewayArgs

data class GatewayArgs(val amazonSideAsn: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<GatewayArgs>

Provides a Direct Connect Gateway.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.directconnect.Gateway;
import com.pulumi.aws.directconnect.GatewayArgs;
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 Gateway("example", GatewayArgs.builder()
.amazonSideAsn("64512")
.build());
}
}

Import

Direct Connect Gateways can be imported using the gateway id, e.g.,

$ pulumi import aws:directconnect/gateway:Gateway test abcd1234-dcba-5678-be23-cdef9876ab45

Constructors

Link copied to clipboard
constructor(amazonSideAsn: Output<String>? = null, name: Output<String>? = null)

Properties

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

The ASN to be configured on the Amazon side of the connection. The ASN must be in the private range of 64,512 to 65,534 or 4,200,000,000 to 4,294,967,294.

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

The name of the connection.

Functions

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