Module Values.ResourceCountsSummarySource

Summary counts of each Proton resource types.

Sourcetype nonrec t = {
  1. behindMajor : Integer.t option;
    (*

    The number of resources of this type in the Amazon Web Services account that need a major template version update.

    *)
  2. behindMinor : Integer.t option;
    (*

    The number of resources of this type in the Amazon Web Services account that need a minor template version update.

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

    The number of resources of this type in the Amazon Web Services account that failed to deploy.

    *)
  4. total : Integer.t option;
    (*

    The total number of resources of this type in the Amazon Web Services account.

    *)
  5. upToDate : Integer.t option;
    (*

    The number of resources of this type in the Amazon Web Services account that are up-to-date with their template.

    *)
}
Sourceval make : ?behindMajor:??? -> ?behindMinor:??? -> ?failed:??? -> ?total:??? -> ?upToDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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