Module Values.CountsSummarySource

Summary counts of each Proton resource type.

Sourcetype nonrec t = {
  1. components : ResourceCountsSummary.t option;
    (*

    The total number of components in the Amazon Web Services account. The semantics of the components field are different from the semantics of results for other infrastructure-provisioning resources. That's because at this time components don't have associated templates, therefore they don't have the concept of staleness. The components object will only contain total and failed members.

    *)
  2. environmentTemplates : ResourceCountsSummary.t option;
    (*

    The total number of environment templates in the Amazon Web Services account. The environmentTemplates object will only contain total members.

    *)
  3. environments : ResourceCountsSummary.t option;
    (*

    The staleness counts for Proton environments in the Amazon Web Services account. The environments object will only contain total members.

    *)
  4. pipelines : ResourceCountsSummary.t option;
    (*

    The staleness counts for Proton pipelines in the Amazon Web Services account.

    *)
  5. serviceInstances : ResourceCountsSummary.t option;
    (*

    The staleness counts for Proton service instances in the Amazon Web Services account.

    *)
  6. serviceTemplates : ResourceCountsSummary.t option;
    (*

    The total number of service templates in the Amazon Web Services account. The serviceTemplates object will only contain total members.

    *)
  7. services : ResourceCountsSummary.t option;
    (*

    The staleness counts for Proton services in the Amazon Web Services account.

    *)
}
Sourceval make : ?components:??? -> ?environmentTemplates:??? -> ?environments:??? -> ?pipelines:??? -> ?serviceInstances:??? -> ?serviceTemplates:??? -> ?services:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t ]) list ]) 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