VpcEndpointService

class VpcEndpointService : KotlinCustomResource

Provides a Private Link Vpc Endpoint Service resource. For information about Private Link Vpc Endpoint Service and how to use it, see What is Vpc Endpoint Service.

NOTE: Available since v1.109.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.privatelink.VpcEndpointService;
import com.pulumi.alicloud.privatelink.VpcEndpointServiceArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf_example");
var example = new VpcEndpointService("example", VpcEndpointServiceArgs.builder()
.serviceDescription(name)
.connectBandwidth(103)
.autoAcceptConnection(false)
.build());
}
}

Import

Private Link Vpc Endpoint Service can be imported using the id, e.g.

$ pulumi import alicloud:privatelink/vpcEndpointService:VpcEndpointService example <service_id>

Properties

Link copied to clipboard

Whether to automatically accept terminal node connections.

Link copied to clipboard
val connectBandwidth: Output<Int>

The connection bandwidth.

Link copied to clipboard
val dryRun: Output<Boolean>?

Whether to pre-check this request only. Default to: false

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val payer: Output<String>?

The payer type. Valid Value: EndpointService, Endpoint. Default to: Endpoint.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The business status of Vpc Endpoint Service.

Link copied to clipboard

The description of the terminal node service.

Link copied to clipboard
val serviceDomain: Output<String>

Service Domain.

Link copied to clipboard
val status: Output<String>

The status of Vpc Endpoint Service.

Link copied to clipboard
val urn: Output<String>