Module Values.CreateDBClusterEndpointMessageSource

Creates a new custom endpoint and associates it with an Amazon Neptune DB cluster.

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

    The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

    *)
  2. dBClusterEndpointIdentifier : String_.t;
    (*

    The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

    *)
  3. endpointType : String_.t;
    (*

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

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

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

    *)
  5. 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.

    *)
  6. tags : TagList.t option;
    (*

    The tags to be assigned to the Amazon Neptune resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?staticMembers:??? -> ?excludedMembers:??? -> ?tags:??? -> dBClusterIdentifier:String_.t -> dBClusterEndpointIdentifier:String_.t -> endpointType:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] 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