Module Values.GetSamplingTargetsResultSource

Requests a sampling quota for rules that the service is using to sample requests.

Sourcetype nonrec t = {
  1. samplingTargetDocuments : SamplingTargetDocumentList.t option;
    (*

    Updated rules that the service should use to sample requests.

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

    The last time a user changed the sampling rule configuration. If the sampling rule configuration changed since the service last retrieved it, the service should call GetSamplingRules to get the latest version.

    *)
  3. unprocessedStatistics : UnprocessedStatisticsList.t option;
    (*

    Information about SamplingStatisticsDocument that X-Ray could not process.

    *)
  4. unprocessedBoostStatistics : UnprocessedStatisticsList.t option;
    (*

    Information about SamplingBoostStatisticsDocument that X-Ray could not process.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidRequestException of InvalidRequestException.t
  2. | `ThrottledException of ThrottledException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?samplingTargetDocuments:??? -> ?lastRuleModification:??? -> ?unprocessedStatistics:??? -> ?unprocessedBoostStatistics:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidRequestException of InvalidRequestException.t | `ThrottledException of ThrottledException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidRequestException of InvalidRequestException.t | `ThrottledException of ThrottledException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of NullableInteger.t | `String of String_.t | `Structure of (string * [> `Double of Double.t | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.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