Module Values.EBSResourceUtilizationSource

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

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

    The maximum number of read operations per second.

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

    The maximum number of write operations per second.

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

    The maximum size of read operations per second

    *)
  4. ebsWriteBytesPerSecond : GenericString.t option;
    (*

    The maximum size of write operations per second.

    *)
}
Sourceval make : ?ebsReadOpsPerSecond:??? -> ?ebsWriteOpsPerSecond:??? -> ?ebsReadBytesPerSecond:??? -> ?ebsWriteBytesPerSecond:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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