Module Values.DaemonDeploymentRevisionDetailSource

Details about a daemon revision during a deployment, including running and draining instance counts per capacity provider.

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

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

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

    The capacity providers associated with this daemon revision during the deployment.

    *)
  3. totalRunningInstanceCount : BoxedInteger.t option;
    (*

    The total number of instances running daemon tasks for this revision.

    *)
  4. totalDrainingInstanceCount : BoxedInteger.t option;
    (*

    The total number of instances being drained for this revision during the deployment.

    *)
}
Sourceval make : ?arn:??? -> ?capacityProviders:??? -> ?totalRunningInstanceCount:??? -> ?totalDrainingInstanceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BoxedInteger.t | `List of [> `Structure of (string * [> `Integer of BoxedInteger.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