Module Values.DaemonDetailSource

The detailed information about a daemon.

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

    The Amazon Resource Name (ARN) of the daemon.

    *)
  2. clusterArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the cluster that the daemon is running in.

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

    The status of the daemon.

    *)
  4. currentRevisions : DaemonRevisionDetailList.t option;
    (*

    The current daemon revision details, including the running task counts per capacity provider.

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

    The Amazon Resource Name (ARN) of the most recent daemon deployment.

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

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

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

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

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