CustomRoutingEndpoint

Provides a Global Accelerator (GA) Custom Routing Endpoint resource. For information about Global Accelerator (GA) Custom Routing Endpoint and how to use it, see What is Custom Routing Endpoint.

NOTE: Available in v1.197.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ga.CustomRoutingEndpoint;
import com.pulumi.alicloud.ga.CustomRoutingEndpointArgs;
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 default_ = new CustomRoutingEndpoint("default", CustomRoutingEndpointArgs.builder()
.endpoint("your_vswitch_id")
.endpointGroupId("your_custom_routing_endpoint_group_id")
.trafficToEndpointPolicy("DenyAll")
.type("PrivateSubNet")
.build());
}
}

Import

Global Accelerator (GA) Custom Routing Endpoint can be imported using the id, e.g.

$ pulumi import alicloud:ga/customRoutingEndpoint:CustomRoutingEndpoint example <endpoint_group_id>:<custom_routing_endpoint_id>

Properties

Link copied to clipboard
val acceleratorId: Output<String>

The ID of the GA instance with which the endpoint is associated.

Link copied to clipboard

The ID of the Custom Routing Endpoint.

Link copied to clipboard
val endpoint: Output<String>

The ID of the endpoint (vSwitch).

Link copied to clipboard
val endpointGroupId: Output<String>

The ID of the endpoint group in which to create endpoints.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val listenerId: Output<String>

The ID of the listener with which the endpoint is associated.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val status: Output<String>

The status of the Custom Routing Endpoint.

Link copied to clipboard

The access policy of traffic to the endpoint. Default value: DenyAll. Valid values:

Link copied to clipboard
val type: Output<String>

The backend service type of the endpoint. Valid values: PrivateSubNet.

Link copied to clipboard
val urn: Output<String>