Module Values.BatchCreateRumMetricDefinitionsErrorSource

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

Sourcetype nonrec t = {
  1. metricDefinition : MetricDefinitionRequest.t option;
    (*

    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 : ?metricDefinition:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Map of ([> `String of DimensionKey.t ] * [> `String of DimensionName.t ]) list | `String of MetricName.t ]) list ]) 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