Module Values.BatchDeleteRumMetricDefinitionsErrorSource

A structure that defines one error caused by a BatchCreateRumMetricsDefinitions operation.

Sourcetype nonrec t = {
  1. metricDefinitionId : MetricDefinitionId.t option;
    (*

    The ID of the metric definition that caused this error.

    *)
  2. errorCode : String_.t option;
    (*

    The error code.

    *)
  3. errorMessage : String_.t option;
    (*

    The error message for this metric definition.

    *)
}
Sourceval make : ?metricDefinitionId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MetricDefinitionId.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