Module Values.IndexingRuleSource

Rule used to determine the server-side sampling rate for spans ingested through the CloudWatchLogs destination and indexed by X-Ray.

Sourcetype nonrec t = {
  1. name : RuleName.t option;
    (*

    The name of the indexing rule.

    *)
  2. modifiedAt : Timestamp.t option;
    (*

    Displays when the rule was last modified, in Unix time seconds.

    *)
  3. rule : IndexingRuleValue.t option;
    (*

    The indexing rule.

    *)
}
Sourceval make : ?name:??? -> ?modifiedAt:??? -> ?rule:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RuleName.t | `Structure of (string * [> `Structure of (string * [> `Double of NullableDouble.t ]) list ]) list | `Timestamp of Timestamp.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