Module Values.ModifyDBClusterEndpointMessageSource

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

Sourcetype nonrec t = {
  1. dBClusterEndpointIdentifier : String_.t;
    (*

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

    *)
  2. endpointType : String_.t option;
    (*

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

    *)
  3. staticMembers : StringList.t option;
    (*

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

    *)
  4. excludedMembers : StringList.t option;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?endpointType:??? -> ?staticMembers:??? -> ?excludedMembers:??? -> dBClusterEndpointIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t