Skip to content

Modify Db Cluster Endpoint

neptune_modify_db_cluster_endpoint R Documentation

Modifies the properties of an endpoint in an Amazon Neptune DB cluster

Description

Modifies the properties of an endpoint in an Amazon Neptune DB cluster.

Usage

neptune_modify_db_cluster_endpoint(DBClusterEndpointIdentifier,
  EndpointType, StaticMembers, ExcludedMembers)

Arguments

DBClusterEndpointIdentifier

[required] The identifier of the endpoint to modify. This parameter is stored as a lowercase string.

EndpointType

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

StaticMembers

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

ExcludedMembers

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.

Value

A list with the following syntax:

list(
  DBClusterEndpointIdentifier = "string",
  DBClusterIdentifier = "string",
  DBClusterEndpointResourceIdentifier = "string",
  Endpoint = "string",
  Status = "string",
  EndpointType = "string",
  CustomEndpointType = "string",
  StaticMembers = list(
    "string"
  ),
  ExcludedMembers = list(
    "string"
  ),
  DBClusterEndpointArn = "string"
)

Request syntax

svc$modify_db_cluster_endpoint(
  DBClusterEndpointIdentifier = "string",
  EndpointType = "string",
  StaticMembers = list(
    "string"
  ),
  ExcludedMembers = list(
    "string"
  )
)