Gateway
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());
}
}
Content copied to clipboard
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
Content copied to clipboard
Properties
Link copied to clipboard
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
AWS Account ID of the gateway.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard