Gateway

class Gateway : KotlinCustomResource

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

Properties

Link copied to clipboard
val amazonSideAsn: Output<String>

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 id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the connection.

Link copied to clipboard
val ownerAccountId: Output<String>

AWS Account ID of the gateway.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>