Module Values.AwsRedshiftClusterClusterNodeSource

A node in an Amazon Redshift cluster.

Sourcetype nonrec t = {
  1. nodeRole : NonEmptyString.t option;
    (*

    The role of the node. A node might be a leader node or a compute node.

    *)
  2. privateIpAddress : NonEmptyString.t option;
    (*

    The private IP address of the node.

    *)
  3. publicIpAddress : NonEmptyString.t option;
    (*

    The public IP address of the node.

    *)
}
Sourceval make : ?nodeRole:??? -> ?privateIpAddress:??? -> ?publicIpAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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