Module Values.ValidationExceptionSource

The input fails to satisfy the specified constraints. You will see this exception if invalid inputs are provided for any of the Amazon EVS environment operations, or if a list operation is performed on an environment resource that is still initializing.

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

    Describes the error encountered.

    *)
  2. reason : ValidationExceptionReason.t option;
    (*

    The reason for the exception.

    *)
  3. fieldList : ValidationExceptionFieldList.t option;
    (*

    A list of fields that didn't validate.

    *)
}
Sourceval make : ?message:??? -> ?reason:??? -> ?fieldList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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