Module Values.InvalidConfigurationDetailSource

Detailed information about the bad request exception error when creating a hosted configuration version.

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

    The invalid or out-of-range validation constraint in your JSON schema that failed validation.

    *)
  2. location : String_.t option;
    (*

    Location of the validation constraint in the configuration JSON schema that failed validation.

    *)
  3. reason : String_.t option;
    (*

    The reason for an invalid configuration error.

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

    The type of error for an invalid configuration.

    *)
  5. value : String_.t option;
    (*

    Details about an error with Lambda when a synchronous extension experiences an error during an invocation.

    *)
}
Sourceval make : ?constraint_:??? -> ?location:??? -> ?reason:??? -> ?type_:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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