Module Values.ValidationWarningSource

Defines a validation warning. Validation warnings do not prevent pipeline activation. The set of validation warnings that can be returned are defined by AWS Data Pipeline.

Sourcetype nonrec t = {
  1. id : Id.t option;
    (*

    The identifier of the object that contains the validation warning.

    *)
  2. warnings : ValidationMessages.t option;
    (*

    A description of the validation warning.

    *)
}
Sourceval make : ?id:??? -> ?warnings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ValidationMessage.t ] list | `String of Id.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