Module Values.NodeSummarySource

A summary of configuration properties for a node.

Sourcetype nonrec t = {
  1. id : ResourceIdString.t option;
    (*

    The unique identifier of the node.

    *)
  2. status : NodeStatus.t option;
    (*

    The status of the node.

    *)
  3. creationDate : Timestamp.t option;
    (*

    The date and time that the node was created.

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

    The Availability Zone in which the node exists.

    *)
  5. instanceType : InstanceTypeString.t option;
    (*

    The EC2 instance type for the node.

    *)
  6. arn : ArnString.t option;
    (*

    The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

    *)
}
Sourceval make : ?id:??? -> ?status:??? -> ?creationDate:??? -> ?availabilityZone:??? -> ?instanceType:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceIdString.t | `Timestamp of Timestamp.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