ClusterEndpoint

class ClusterEndpoint : KotlinCustomResource

Provides an Neptune Cluster Endpoint Resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.neptune.ClusterEndpoint;
import com.pulumi.aws.neptune.ClusterEndpointArgs;
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 ClusterEndpoint("example", ClusterEndpointArgs.builder()
.clusterIdentifier(aws_neptune_cluster.test().cluster_identifier())
.clusterEndpointIdentifier("example")
.endpointType("READER")
.build());
}
}

Import

aws_neptune_cluster_endpoint can be imported by using the cluster-identifier:endpoint-identfier, e.g.,

$ pulumi import aws:neptune/clusterEndpoint:ClusterEndpoint example my-cluster:my-endpoint

Properties

Link copied to clipboard
val arn: Output<String>

The Neptune Cluster Endpoint Amazon Resource Name (ARN).

Link copied to clipboard

The identifier of the endpoint.

Link copied to clipboard

The DB cluster identifier of the DB cluster associated with the endpoint.

Link copied to clipboard
val endpoint: Output<String>

The DNS address of the endpoint.

Link copied to clipboard
val endpointType: Output<String>

The type of the endpoint. One of: READER, WRITER, ANY.

Link copied to clipboard
val excludedMembers: Output<List<String>>?

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

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 staticMembers: Output<List<String>>?

List of DB instance identifiers that are part of the custom endpoint group.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the Neptune cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>