VpcEndpointServiceConnection

class VpcEndpointServiceConnection : KotlinCustomResource

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

NOTE: Available in v1.110.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.VpcEndpointServiceConnection;
import com.pulumi.alicloud.privatelink.VpcEndpointServiceConnectionArgs;
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 VpcEndpointServiceConnection("example", VpcEndpointServiceConnectionArgs.builder()
.bandwidth("1024")
.endpointId("example_value")
.serviceId("example_value")
.build());
}
}

Import

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

$ pulumi import alicloud:privatelink/vpcEndpointServiceConnection:VpcEndpointServiceConnection example <service_id>:<endpoint_id>

Properties

Link copied to clipboard
val bandwidth: Output<Int>

The Bandwidth.

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

The dry run.

Link copied to clipboard
val endpointId: Output<String>

The ID of the Vpc Endpoint.

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

The ID of the Vpc Endpoint Service.

Link copied to clipboard
val status: Output<String>

The status of Vpc Endpoint Connection.

Link copied to clipboard
val urn: Output<String>