Module Values.SelectionConfigSource

Defines how operations are selected for a service-level SLO.

Sourcetype nonrec t = {
  1. type_ : SelectionType.t;
  2. pattern : SelectionPattern.t option;
    (*

    A prefix string or regular expression that specifies which operations to include in a service-level SLO. When SelectionType is PREFIX, this value is a prefix string that matches the beginning of operation names. When SelectionType is REGEX, this value is a regular expression that matches operation names.

    *)
}
Sourceval context_ : string
Sourceval make : ?pattern:??? -> type_:SelectionType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SelectionPattern.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