Module Values.FlowValidationSource

Contains information about validation of the flow. This data type is used in the following API operations: GetFlow response GetFlowVersion response

Sourcetype nonrec t = {
  1. message : NonBlankString.t option;
    (*

    A message describing the validation error.

    *)
  2. severity : FlowValidationSeverity.t option;
    (*

    The severity of the issue described in the message.

    *)
  3. details : FlowValidationDetails.t option;
    (*

    Specific details about the validation issue encountered in the flow.

    *)
  4. type_ : FlowValidationType.t option;
    (*

    The type of validation issue encountered in the flow.

    *)
}
Sourceval make : ?message:??? -> ?severity:??? -> ?details:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonBlankString.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of FlowConnectionName.t ]) list ]) 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