Module Values.ValidationExceptionSource

The request isn't valid. Examples Your request contains malformed JSON or unsupported characters. The scheduler version isn't supported. There are networking related errors, such as network validation failure. AMI type is CUSTOM and the launch template doesn't define the AMI ID, or the AMI type is AL2 and the launch template defines the AMI.

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

    The specific reason or cause of the validation error.

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

    A list of fields or properties that failed validation.

    *)
}
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