Module Values.SelectionCriteriaSource

Sourcetype nonrec t = {
  1. delimiter : StorageLensPrefixLevelDelimiter.t option;
    (*

    A container for the delimiter of the selection criteria being used.

    *)
  2. maxDepth : StorageLensPrefixLevelMaxDepth.t option;
    (*

    The max depth of the selection criteria

    *)
  3. minStorageBytesPercentage : MinStorageBytesPercentage.t option;
    (*

    The minimum number of storage bytes percentage whose metrics will be selected. You must choose a value greater than or equal to 1.0.

    *)
}
Sourceval make : ?delimiter:??? -> ?maxDepth:??? -> ?minStorageBytesPercentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of MinStorageBytesPercentage.t | `Integer of StorageLensPrefixLevelMaxDepth.t | `String of StorageLensPrefixLevelDelimiter.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