Module Values.DaemonRevisionDetailSource

Details about a daemon revision, including the running task counts per capacity provider.

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

    The Amazon Resource Name (ARN) of the daemon revision.

    *)
  2. capacityProviders : DaemonCapacityProviderList.t option;
    (*

    The capacity providers associated with this daemon revision.

    *)
  3. totalRunningCount : Integer.t option;
    (*

    The total number of daemon tasks running for this revision.

    *)
}
Sourceval make : ?arn:??? -> ?capacityProviders:??? -> ?totalRunningCount:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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