ClusterEndpointArgs

data class ClusterEndpointArgs(val clusterEndpointIdentifier: Output<String>? = null, val clusterIdentifier: Output<String>? = null, val endpointType: Output<String>? = null, val excludedMembers: Output<List<String>>? = null, val staticMembers: Output<List<String>>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ClusterEndpointArgs>

Provides an Neptune Cluster Endpoint Resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.neptune.ClusterEndpoint("example", {
clusterIdentifier: test.clusterIdentifier,
clusterEndpointIdentifier: "example",
endpointType: "READER",
});
import pulumi
import pulumi_aws as aws
example = aws.neptune.ClusterEndpoint("example",
cluster_identifier=test["clusterIdentifier"],
cluster_endpoint_identifier="example",
endpoint_type="READER")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Neptune.ClusterEndpoint("example", new()
{
ClusterIdentifier = test.ClusterIdentifier,
ClusterEndpointIdentifier = "example",
EndpointType = "READER",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/neptune"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := neptune.NewClusterEndpoint(ctx, "example", &neptune.ClusterEndpointArgs{
ClusterIdentifier: pulumi.Any(test.ClusterIdentifier),
ClusterEndpointIdentifier: pulumi.String("example"),
EndpointType: pulumi.String("READER"),
})
if err != nil {
return err
}
return nil
})
}
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(test.clusterIdentifier())
.clusterEndpointIdentifier("example")
.endpointType("READER")
.build());
}
}
resources:
example:
type: aws:neptune:ClusterEndpoint
properties:
clusterIdentifier: ${test.clusterIdentifier}
clusterEndpointIdentifier: example
endpointType: READER

Import

Using pulumi import, import aws_neptune_cluster_endpoint using the cluster-identifier:endpoint-identfier. For example:

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

Constructors

Link copied to clipboard
constructor(clusterEndpointIdentifier: Output<String>? = null, clusterIdentifier: Output<String>? = null, endpointType: Output<String>? = null, excludedMembers: Output<List<String>>? = null, staticMembers: Output<List<String>>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val clusterEndpointIdentifier: Output<String>? = null

The identifier of the endpoint.

Link copied to clipboard
val clusterIdentifier: Output<String>? = null

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

Link copied to clipboard
val endpointType: Output<String>? = null

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

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

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

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

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

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.

Functions

Link copied to clipboard
open override fun toJava(): ClusterEndpointArgs