Module Values.DaemonSummarySource

A summary of a daemon.

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

    The Amazon Resource Name (ARN) of the daemon.

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

    The status of the daemon.

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

    The Unix timestamp for the time when the daemon was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the daemon was last updated.

    *)
}
Sourceval make : ?daemonArn:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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