Module Values.EC2ResourceUtilizationSource

Utilization metrics for the instance.

Sourcetype nonrec t = {
  1. maxCpuUtilizationPercentage : GenericString.t option;
    (*

    The maximum observed or expected CPU utilization of the instance.

    *)
  2. maxMemoryUtilizationPercentage : GenericString.t option;
    (*

    The maximum observed or expected memory utilization of the instance.

    *)
  3. maxStorageUtilizationPercentage : GenericString.t option;
    (*

    The maximum observed or expected storage utilization of the instance. This doesn't include EBS storage.

    *)
  4. eBSResourceUtilization : EBSResourceUtilization.t option;
    (*

    The EBS field that contains a list of EBS metrics that are associated with the current instance.

    *)
  5. diskResourceUtilization : DiskResourceUtilization.t option;
    (*

    The field that contains a list of disk (local storage) metrics that are associated with the current instance.

    *)
  6. networkResourceUtilization : NetworkResourceUtilization.t option;
    (*

    The network field that contains a list of network metrics that are associated with the current instance.

    *)
}
Sourceval make : ?maxCpuUtilizationPercentage:??? -> ?maxMemoryUtilizationPercentage:??? -> ?maxStorageUtilizationPercentage:??? -> ?eBSResourceUtilization:??? -> ?diskResourceUtilization:??? -> ?networkResourceUtilization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.t | `Structure of (string * [> `String of GenericString.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