Module Values.NodeSource

Represents an individual node within a DAX cluster.

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

    A system-generated identifier for the node.

    *)
  2. endpoint : Endpoint.t option;
    (*

    The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.

    *)
  3. nodeCreateTime : TStamp.t option;
    (*

    The date and time (in UNIX epoch format) when the node was launched.

    *)
  4. availabilityZone : String_.t option;
    (*

    The Availability Zone (AZ) in which the node has been deployed.

    *)
  5. nodeStatus : String_.t option;
    (*

    The current status of the node. For example: available.

    *)
  6. parameterGroupStatus : String_.t option;
    (*

    The status of the parameter group associated with this node. For example, in-sync.

    *)
}
Sourceval make : ?nodeId:??? -> ?endpoint:??? -> ?nodeCreateTime:??? -> ?availabilityZone:??? -> ?nodeStatus:??? -> ?parameterGroupStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list | `Timestamp of TStamp.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